Questions tagged «convert-command»


3
如何通过命令行镜像图像文件?
我想做的很简单。我有一个file.png要镜像的,即结果应该是原始图像的“反射”。 我知道像GIMP和InkScape这样的大型工具可以做到这一点,但是我希望有一个命令行实用程序,诸如convert(不幸的是它似乎没有这种选择,或者至少在man页面中没有提及)之类的东西。

2
ImageMagick的“转换”命令不能使用字体!
convert -size 300x50 xc:none -font Arial -pointsize 20 -gravity center -draw "fill white text 1,1 \"$1\" text 0,0 \"$1\" fill black text -1,-1 \"$1\"" $WATERMARK_FILE 上面的命令导致以下错误: convert.im6: unable to read font `Arial' @ warning/annotate.c/RenderType/853. 我在网上搜索,发现许多用户看到此错误,但没有找到任何解决方案。有人可以帮忙吗? 注意1: Arial字体已安装在我的系统上: $ fc-list | grep -i arial /usr/share/fonts/truetype/msttcorefonts/Arial_Italic.ttf: Arial:style=Italic,Cursiva,kurzíva,kursiv,Πλάγια,Kursivoitu,Italique,Dőlt,Corsivo,Cursief,Kursywa,Itálico,Курсив,İtalik,Poševno,nghiêng,Etzana /usr/share/fonts/truetype/msttcorefonts/ariblk.ttf: Arial Black:style=Regular,Normal,obyčejné,Standard,Κανονικά,Normaali,Normál,Normale,Standaard,Normalny,Обычный,Normálne,Navadno,Arrunta /usr/share/fonts/truetype/msttcorefonts/Arial.ttf: Arial:style=Regular,Normal,obyčejné,Standard,Κανονικά,Normaali,Normál,Normale,Standaard,Normalny,Обычный,Normálne,Navadno,thường,Arrunta …

2
如何将图像批量转换为PDF?
我想将图像(jpg,png等)批量转换为PDF。将它们直接转换为PDF很容易: convert in.jpg out.pdf 但是,我需要更多选项,例如设置输出页面大小,边距以及横向和纵向格式之间的旋转。经过反复试验,我想出了: convert -rotate "90>" -page A4+0+0 -gravity center in.jpg out.pdf 这会将图像放在A4页面上居中,并在横向和纵向之间自动旋转,但是仅适用于595x842以下的小图像。较大的图像会中断,因为595x842似乎是分配给A4页面的像素分辨率。在网上阅读时,-density选项可能是增加A4页面上像素数量的潜在解决方案,但我无法使其正常工作。 当然也欢迎Imagemagick之外的解决方案。
By using our site, you acknowledge that you have read and understand our Cookie Policy and Privacy Policy.
Licensed under cc by-sa 3.0 with attribution required.