API or plugin for imagemagick

Questions and postings pertaining to the development of ImageMagick, feature enhancements, and ImageMagick internals. ImageMagick source code and algorithms are discussed here. Usage questions which are too arcane for the normal user list should also be posted here.
Post Reply
paulohess
Posts: 8
Joined: 2011-11-09T12:10:04-07:00
Authentication code: 8675308

API or plugin for imagemagick

Post by paulohess »

Hi

I was wondering if someone can help me with this. I am trying to use some of the feature that imagemagick offers such as "convert -resize ..."
and etc from WITHIN my application.

Currently the way I do it is that I launch a process and the imagemagick command is passed to it and get executed.

for example :

Process p = Runtime.getRuntime().exec("convert -resize 300x250");

This works just fine except that it is very slow for obviouse reasons (launching and executing an external process ... )

Is there any way that I can impart only some functionalities from imagemagick (like an API or plugin ) to my program so that it
becomes part of my code to avoid making external calls.

Thanks
Paulo
User avatar
anthony
Posts: 8883
Joined: 2004-05-31T19:27:03-07:00
Authentication code: 8675308
Location: Brisbane, Australia

Re: API or plugin for imagemagick

Post by anthony »

What language?
Anthony Thyssen -- Webmaster for ImageMagick Example Pages
https://imagemagick.org/Usage/
paulohess
Posts: 8
Joined: 2011-11-09T12:10:04-07:00
Authentication code: 8675308

Re: API or plugin for imagemagick

Post by paulohess »

java
Post Reply