Reputation: 65
I am trying to use convert from imageMagick to run this command on aws lambda convert -scene 1 test.tiff output.jpg
to convert a tiff to image .
But I am getting this errors always
NoDecodeDelegateForThisImageFormat `TIFF\"
Upvotes: 2
Views: 219
Reputation: 186
I had a similar problem - in my case, TIFF\"
was failing because of a trailing quote ("
)
Upvotes: 2