Search found 3 matches
- 2019-09-03T07:10:59-07:00
- Forum: Magick++
- Topic: convert: no images defined `temp3.tiff' @ error/convert.c/ConvertImageCommand/3273
- Replies: 5
- Views: 91443
Re: convert: no images defined `temp3.tiff' @ error/convert.c/ConvertImageCommand/3273
This command works for me from my mac terminal(gs -sDEVICE=pngalpha -sOutputFile=gs_out.png -r144 git.pdf). I tried to run the same command through python program. I am not getting any error, however I am not seeing output file anywhere. Below is my python code. What I am missing. import sys import ...
- 2019-09-03T05:23:44-07:00
- Forum: Magick++
- Topic: convert: no images defined `temp3.tiff' @ error/convert.c/ConvertImageCommand/3273
- Replies: 5
- Views: 91443
Re: convert: no images defined `temp3.tiff' @ error/convert.c/ConvertImageCommand/3273
Thanks for your response! ImageMagick 7.0.8-59 and gs --> 9.27. Below is my python code. I am able to convert tiff image to PDF using the same code. I think I have problem converting PDF images convert_exe_name = '/usr/local/bin/convert' args = [convert_exe_name, 'File3.pdf', 'temp3.tiff'] proc ...
- 2019-09-03T04:49:31-07:00
- Forum: Magick++
- Topic: convert: no images defined `temp3.tiff' @ error/convert.c/ConvertImageCommand/3273
- Replies: 5
- Views: 91443
convert: no images defined `temp3.tiff' @ error/convert.c/ConvertImageCommand/3273
I am able to convert PDF image to tiff image from terminal. But I am not able to execute the same command through python or java program. I am getting "convert: no images defined `temp3.tiff' @ error/convert.c/ConvertImageCommand/3273." . Any suggestions on how to resolve it?