Development of an extension for ImageMagick
Posted: 2018-03-01T15:08:23-07:00
Hello,
I use ImageMagick a lot in my command line scripts (lots of Linux shell) for automatic processing and format conversion. I would like to develop a filter extension for ImageMagick. What is the best method?
My goal is to add a custom filter just before converting to the output format.
Ex: convert -resize 50x80 -colorspace 'sRGB' -background white -alpha remove -alpha off -trim ... -customfilter "myfilter, myparam1, myparam2" file.eps file.jpg
The filter is an image processing (before conversion to the output format) that is really specific to my job. I would prefer C ++ language but I can adapt another language.
Thank you for your help.
I use ImageMagick a lot in my command line scripts (lots of Linux shell) for automatic processing and format conversion. I would like to develop a filter extension for ImageMagick. What is the best method?
My goal is to add a custom filter just before converting to the output format.
Ex: convert -resize 50x80 -colorspace 'sRGB' -background white -alpha remove -alpha off -trim ... -customfilter "myfilter, myparam1, myparam2" file.eps file.jpg
The filter is an image processing (before conversion to the output format) that is really specific to my job. I would prefer C ++ language but I can adapt another language.
Thank you for your help.