Is there a way programmatically to do the same thing as the command line "convert -define jpeg:optimize-coding=false ..." ? I would like to save a Jpeg file using the default Huffman tables within code.
thanks,
dan
Can jpeg:optimize-coding be set in code?
Re: Can jpeg:optimize-coding be set in code?
Which API are you using? For MagickCore, use
- SetImageOption(image_info,"jpeg:optimize-coding","false");
Re: Can jpeg:optimize-coding be set in code?
That's it. I am using MagickCore indirectly through MagickNet. Thank you for the quick reply.