Hello all!
I'm developing a program with java that uses imagemagick in command-line directly (not with jmagick).
I need to get the image blob as a result of convert, and after search and search i have not found anything.
With jmagick is very easy to get/output the blob using the methods "blobToImage" and "imageToBlob", but i can't use jmagick because it lacks stability in some operations.
With command line, how can i get the image blob directly instead of writing to file and then reading it again?
Thank you!
(Sorry for my english!)
java: get image blob from command line
- GreenKoopa
- Posts: 457
- Joined: 2010-11-04T17:24:08-07:00
- Authentication code: 8675308
Re: java: get image blob from command line
You could write the image to standard output in ImageMagick's file format using miff:- Can you capture this in java?