質問

I would like to convert a jpg image to a pdf file using ImageMagick convert. I can successfully do so using the following:

convert image.jpg image.pdf

How could I convert the image if the original file name was "image" and not "image.jpg", and the target file name is "image" and not "image.pdf"?

役に立ちましたか?

解決

You can use Explicit Image Format to force convert to use a specific format, regardless of filename.

convert jpg:image_source pdf:image_out
ライセンス: CC-BY-SA帰属
所属していません StackOverflow
scroll top