← 返回
未分类

Eps

Inspect EPS/PS/EPSF metadata and convert to PNG/JPG/SVG/PDF via API / 解析 EPS 元数据并通过 API 转换为 PNG/JPG/SVG/PDF
检查 EPS/PS/EPSF 元数据,并通过 API 转换为 PNG/JPG/SVG/PDF
wangqianqianjun wangqianqianjun 来源
未分类 clawhub v2.1.0 1 版本 100000 Key: 无需
★ 1
Stars
📥 363
下载
💾 0
安装
1
版本
#latest

概述

EPS Tool

Inspect 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

API Reference

Convert EPS to PNG/JPG/SVG/PDF / 格式转换

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) / 分辨率
  • Response: converted file binary / 返回转换后的文件

Inspect EPS metadata / 查看元数据

curl -X POST https://eps.futrixdev.com/api/info \
  -F "file=@<file.eps>"
  • file (required): EPS/PS/EPSF file (max 20MB) / 要解析的文件(最大 20MB)
  • Response: JSON with title, creator, BoundingBox, dimensions (pt/mm), PS version, fonts
  • 返回 JSON,包含标题、创建者、BoundingBox、尺寸、PS 版本、字体等

Health check / 健康检查

curl https://eps.futrixdev.com/api/health

Web Viewer / 在线工具

https://eps.futrixdev.com — upload, preview, and export to PNG/JPG/SVG/PDF

打开网页工具上传文件,可预览并导出

Examples

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
}

Usage Guidelines / 使用建议

  • Use /api/convert for format conversion (PNG/JPG/SVG/PDF) / 使用 API 进行格式转换
  • Use /api/info to inspect file metadata / 使用 /api/info 查看文件元数据
  • Supported input: .eps, .ps, .epsf files / 支持的输入格式

版本历史

共 1 个版本

  • v2.1.0 当前
    2026-05-03 09:41 安全 安全

安全检测

腾讯云安全 (Keen)

安全,无风险
查看报告

腾讯云安全 (Sanbu)

安全,无风险
查看报告

🔗 相关推荐

design-media

Video Frames

steipete
使用 ffmpeg 从视频中提取帧或短片。
★ 136 📥 53,218
design-media

Openai Whisper

steipete
使用 Whisper CLI 进行本地语音转文字(无需 API 密钥)
★ 335 📥 94,728
design-media

UI/UX Pro Max

xobi667
提供 UI/UX 设计智能与实现指导,帮助打造精美界面。适用于 UI 设计、UX 流程、信息架构、视觉风格、设计系统/标记、组件规格、文案/微文案、无障碍及前端 UI(HTML/CSS/JS、React、Next.js、Vue、Svelte
★ 227 📥 48,899