【发布时间】:2017-03-27 16:09:38
【问题描述】:
我正在尝试使用 imagemagick 将图像文件转换为 .pes 格式(和刺绣格式)。
convert example.jpg test.pes
返回
convert: no encode delegate for this image format `PES'
我已经从源代码安装了 Imagemagick,我的代表被列为
DELEGATES mpeg fontconfig freetype png ps x xml zlib
如何找到 .pes 文件类型的委托?
this exists,但我不知道我应该用它做什么
这是delegates page 这些对我有帮助吗?
【问题讨论】:
-
链接的 PES 编码器文件允许 ImageMagick 读取 PES 格式,但不能写入 PES 文件。您可以通过运行
identify -list Format | grep PES进行验证 -
谢谢。 PES 编码器确实声明“读/写 Brother PES 图像格式”。仍然不确定如何转换为 PES
-
imagemagick.org/script/formats.php 的 imagemagick 格式页面列表 只读 PES 格式。 `PES* PES r--刺绣刺绣格式`。 r-- 表示只读(不写不执行)
标签: imagemagick imagemagick-convert