Media
Преобразование изображений PNG в формат PDF для обмена документами и печати
Вызовите этот инструмент из своего кода на трёх языках.
# 1) Upload each file first → returns { filePath }
curl -X POST 'https://api.elysiatools.com/upload/png-to-pdf' \
-F 'file=@/path/to/imageFile.ext'
# 2) Call the tool with the returned filePath values
curl -X POST 'https://api.elysiatools.com/ru/api/tools/png-to-pdf' \
-F 'imageFile=/path/to/file.ext' \
-F 'pageSize=A4' \
-F 'fit=fit' \
-F 'margin=20' \
-F 'title=Enter optional PDF title'Отправьте POST-запрос с входными данными в JSON. Параметры типа «файл» требуют предварительной загрузки.
POST https://api.elysiatools.com/ru/api/tools/png-to-pdf| Имя | Тип | Обязательный | Описание |
|---|---|---|---|
| imageFile | fileнужна загрузка | Да | — |
| pageSize | select | Нет | — |
| fit | select | Нет | — |
| margin | number | Нет | — |
| title | text | Нет | — |
Добавьте этот инструмент на свой сервер Model Context Protocol, чтобы ИИ-агенты могли перечислять и вызывать его.
Добавьте этот блок в конфигурацию вашего MCP-клиента:
{
"mcpServers": {
"elysiatools-png-to-pdf": {
"name": "png-to-pdf",
"description": "Преобразование изображений PNG в формат PDF для обмена документами и печати",
"baseUrl": "https://api.elysiatools.com/mcp/sse?toolId=png-to-pdf",
"command": "",
"args": [],
"env": {},
"isActive": true,
"type": "sse"
}
}
}После подключения к SSE-endpoint выведите список доступных инструментов:
{
"jsonrpc": "2.0",
"id": 1,
"method": "tools/list"
}Вызовите инструмент по его id; аргументы формируются из его параметров:
{
"jsonrpc": "2.0",
"id": 2,
"method": "tools/call",
"params": {
"name": "png-to-pdf",
"arguments": {
"imageFile": "https://example.com/file.ext",
"pageSize": "A4",
"fit": "fit",
"margin": 20,
"title": "Enter optional PDF title"
}
}
}Файловый результат
{
"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)"
}Вопросы или проблемы? Свяжитесь с [email protected]