sh 将svg转换为eps
Posted
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了sh 将svg转换为eps相关的知识,希望对你有一定的参考价值。
#!/bin/bash
if [ "$1" == "" ]; then
echo Usage: $0 pngfile
exit 0;
fi
FILE=`basename $1 .png`
if [ ! -e $FILE.png ]; then
echo $FILE.png does not exist
exit 1;
fi
convert $FILE.png $FILE.pnm
# convert jpg file
# convert input.jpg output.ppm
# convert PNG to PNM -- inversed, remove alpha channel (black on white)
# convert -negate image.png -alpha Remove image.pnm
potrace -s -o $FILE.svg $FILE.pnm
rm $FILE.pnm
#!/bin/bash
# extract gif image to multiple png/jpg images
convert img.gif -coalesce img/xx_%05d.png
# Install inkscape in osx
# brew update
# brew cask install xquartz
# brew cask install inkscape
inkscape in.svg -E out.eps --export-ignore-filters --export-ps-level=3
以上是关于sh 将svg转换为eps的主要内容,如果未能解决你的问题,请参考以下文章
如何从此SVG中删除背景
sh 使用ImageMagick将SVG转换为favicon.ico
如何解析 EPS 以获得网格类数据?
sh 将给定文件夹内的所有图像从彩色转换为灰度,调整它的黑白抖动级别并将其追踪到SVG矢量f
如何将带有“pdftocairo -eps”的“横向”PDF转换为正确的EPS?
求助VB6高手 ,我想用vb读取一段svg代码,将其转化为另一种eps代码