Document Tools
Experimentieren Sie mit Typografie-Einstellungen: Zeilenabstand, Abstände, Ausrichtung und Einrückung
Rufen Sie dieses Werkzeug aus Ihrem Code in drei Sprachen auf.
curl -X POST 'https://api.elysiatools.com/de/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"}'Senden Sie eine POST-Anfrage mit Ihren Eingaben als JSON. Dateiparameter erfordern einen vorherigen Upload.
POST https://api.elysiatools.com/de/api/tools/pdf-typography-playground| Name | Typ | Erforderlich | Beschreibung |
|---|---|---|---|
| content | textarea | Ja | — |
| fontSize | number | Nein | — |
| fontWeight | select | Nein | — |
| lineHeight | number | Nein | — |
| paragraphSpacingBefore | number | Nein | — |
| paragraphSpacingAfter | number | Nein | — |
| textAlign | select | Nein | — |
| firstLineIndent | number | Nein | — |
| leftIndent | number | Nein | — |
| rightIndent | number | Nein | — |
| letterSpacing | number | Nein | — |
| wordSpacing | number | Nein | — |
| showBaseline | checkbox | Nein | — |
| showGrid | checkbox | Nein | — |
| showBorder | checkbox | Nein | — |
| showHeader | checkbox | Nein | — |
| headerText | text | Nein | — |
| headerAlignment | select | Nein | — |
| showFooter | checkbox | Nein | — |
| footerText | text | Nein | — |
| footerAlignment | select | Nein | — |
Dateiergebnis
{
"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)"
}Fügen Sie dieses Werkzeug Ihrem Model-Context-Protocol-Server hinzu, damit KI-Agenten es auflisten und aufrufen können.
Fügen Sie diesen Block Ihrer MCP-Client-Konfiguration hinzu:
{
"mcpServers": {
"elysiatools-pdf-typography-playground": {
"name": "pdf-typography-playground",
"description": "Experimentieren Sie mit Typografie-Einstellungen: Zeilenabstand, Abstände, Ausrichtung und Einrückung",
"baseUrl": "https://api.elysiatools.com/mcp/sse?toolId=pdf-typography-playground",
"command": "",
"args": [],
"env": {},
"isActive": true,
"type": "sse"
}
}
}Nach dem Verbinden mit dem SSE-Endpunkt listen Sie die bereitgestellten Werkzeuge auf:
{
"jsonrpc": "2.0",
"id": 1,
"method": "tools/list"
}Rufen Sie das Werkzeug über seine ID auf; Argumente werden aus seiner Parameterliste gebildet:
{
"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"
}
}
}Fragen oder Probleme? Kontakt: [email protected]