Document Tools
Expérimentez avec les paramètres de typographie : interligne, espacement, alignement et retrait
Appelez cet outil depuis votre code en trois langages.
curl -X POST 'https://api.elysiatools.com/fr/api/tools/pdf-typography-playground' \
-H 'Content-Type: application/json' \
-d '{"content":"Typography is the art and technique of arranging type to make written language legible, readable, and appealing when displayed.\n\nThe arrangement of type involves selecting typefaces, point sizes, line lengths, line-spacing (leading), and letter-spacing (tracking), and adjusting the space between pairs of letters (kerning).\n\nGood typography creates a visual hierarchy that guides the reader through the content. It establishes tone and mood, enhances readability, and communicates the intended message effectively.","fontSize":12,"fontWeight":"normal","lineHeight":1.5,"paragraphSpacingBefore":0,"paragraphSpacingAfter":12,"textAlign":"left","firstLineIndent":0,"leftIndent":0,"rightIndent":0,"letterSpacing":0,"wordSpacing":0,"showBaseline":false,"showGrid":false,"showBorder":false,"showHeader":false,"headerText":"Document Header","headerAlignment":"center","showFooter":false,"footerText":"Page {page} of {total}","footerAlignment":"center"}'Envoyez une requête POST avec vos entrées en JSON. Les paramètres de type fichier nécessitent un upload préalable.
POST https://api.elysiatools.com/fr/api/tools/pdf-typography-playground| Nom | Type | Requis | Description |
|---|---|---|---|
| content | textarea | Oui | — |
| fontSize | number | Non | — |
| fontWeight | select | Non | — |
| lineHeight | number | Non | — |
| paragraphSpacingBefore | number | Non | — |
| paragraphSpacingAfter | number | Non | — |
| textAlign | select | Non | — |
| firstLineIndent | number | Non | — |
| leftIndent | number | Non | — |
| rightIndent | number | Non | — |
| letterSpacing | number | Non | — |
| wordSpacing | number | Non | — |
| showBaseline | checkbox | Non | — |
| showGrid | checkbox | Non | — |
| showBorder | checkbox | Non | — |
| showHeader | checkbox | Non | — |
| headerText | text | Non | — |
| headerAlignment | select | Non | — |
| showFooter | checkbox | Non | — |
| footerText | text | Non | — |
| footerAlignment | select | Non | — |
Résultat fichier
{
"filePath": "/public/processing/randomid.ext",
"fileName": "output.ext",
"contentType": "application/octet-stream",
"size": 1024,
"metadata": {
"key": "value"
},
"error": "Error message (optional)",
"message": "Notification message (optional)"
}Ajoutez cet outil à votre serveur Model Context Protocol pour que les agents IA puissent le lister et l'appeler.
Ajoutez ce bloc à la configuration de votre client MCP :
{
"mcpServers": {
"elysiatools-pdf-typography-playground": {
"name": "pdf-typography-playground",
"description": "Expérimentez avec les paramètres de typographie : interligne, espacement, alignement et retrait",
"baseUrl": "https://api.elysiatools.com/mcp/sse?toolId=pdf-typography-playground",
"command": "",
"args": [],
"env": {},
"isActive": true,
"type": "sse"
}
}
}Après connexion au point d'accès SSE, listez les outils exposés :
{
"jsonrpc": "2.0",
"id": 1,
"method": "tools/list"
}Appelez l'outil par son id ; les arguments sont construits à partir de ses paramètres :
{
"jsonrpc": "2.0",
"id": 2,
"method": "tools/call",
"params": {
"name": "pdf-typography-playground",
"arguments": {
"content": "Typography is the art and technique of arranging type to make written language legible, readable, and appealing when displayed.\n\nThe arrangement of type involves selecting typefaces, point sizes, line lengths, line-spacing (leading), and letter-spacing (tracking), and adjusting the space between pairs of letters (kerning).\n\nGood typography creates a visual hierarchy that guides the reader through the content. It establishes tone and mood, enhances readability, and communicates the intended message effectively.",
"fontSize": 12,
"fontWeight": "normal",
"lineHeight": 1.5,
"paragraphSpacingBefore": 0,
"paragraphSpacingAfter": 12,
"textAlign": "left",
"firstLineIndent": 0,
"leftIndent": 0,
"rightIndent": 0,
"letterSpacing": 0,
"wordSpacing": 0,
"showBaseline": false,
"showGrid": false,
"showBorder": false,
"showHeader": false,
"headerText": "Document Header",
"headerAlignment": "center",
"showFooter": false,
"footerText": "Page {page} of {total}",
"footerAlignment": "center"
}
}
}Des questions ou un problème ? Contactez [email protected]