Install
openclaw skills install @wangqianqianjun/epsInspect EPS/PS/EPSF metadata and convert to PNG/JPG/SVG/PDF via API / 解析 EPS 元数据并通过 API 转换为 PNG/JPG/SVG/PDF
openclaw skills install @wangqianqianjun/epsInspect EPS / PS / EPSF file metadata and convert to PNG/JPG/SVG/PDF via API. 通过 API 解析 EPS / PS / EPSF 文件元数据,并转换为 PNG/JPG/SVG/PDF。
Server: https://eps.futrixdev.com
curl -X POST https://eps.futrixdev.com/api/convert \
-F "file=@<file.eps>" \
-F "format=png" \
-F "dpi=300" \
-o output.png
file (required): EPS/PS/EPSF file (max 20MB) / 要转换的文件(最大 20MB)format (optional): png (default), jpg, svg, pdf / 输出格式dpi (optional): 36–1200, default 300 (for png/jpg) / 分辨率curl -X POST https://eps.futrixdev.com/api/info \
-F "file=@<file.eps>"
file (required): EPS/PS/EPSF file (max 20MB) / 要解析的文件(最大 20MB)curl https://eps.futrixdev.com/api/health
https://eps.futrixdev.com — upload, preview, and export to PNG/JPG/SVG/PDF 打开网页工具上传文件,可预览并导出
Convert EPS to PNG:
curl -X POST https://eps.futrixdev.com/api/convert -F "file=@logo.eps" -F "format=png" -o logo.png
Convert EPS to PDF:
curl -X POST https://eps.futrixdev.com/api/convert -F "file=@logo.eps" -F "format=pdf" -o logo.pdf
Get metadata:
curl -X POST https://eps.futrixdev.com/api/info -F "file=@logo.eps"
Example response:
{
"signature": "%!PS-Adobe-3.0 EPSF-3.0",
"psVersion": "3.0",
"epsfVersion": "EPSF-3.0",
"title": "Logo Design",
"creator": "Adobe Illustrator",
"boundingBox": { "llx": 0, "lly": 0, "urx": 400, "ury": 300 },
"widthPt": 400, "heightPt": 300,
"widthMm": 141.12, "heightMm": 105.84
}
/api/convert for format conversion (PNG/JPG/SVG/PDF) / 使用 API 进行格式转换/api/info to inspect file metadata / 使用 /api/info 查看文件元数据.eps, .ps, .epsf files / 支持的输入格式