Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我正在使用此命令将 PDF 转换为标准输出上的 TIF 图像:
convert -density 300 -depth 8 -compress lzw my.pdf tif:-
如果PDF有多页,如何只转换第一页?
找到了。使用类似数组的语法将页码附加到输入文件名:
convert -density 300 -depth 8 -compress lzw my.pdf[0] tif:-