Questions tagged [jmagick]

JMagick is an open source Java interface of ImageMagick. It is implemented in the form of a thin Java Native Interface (JNI) layer into the ImageMagick API.

JMagick is an open source interface of . It is implemented in the form of Java Native Interface () into the ImageMagick API.

JMagick does not attempt to make the ImageMagick API object-oriented. It is merely a thin interface layer into the ImageMagick API.

JMagick currently only implements a subset of ImageMagick APIs.

JMagick has a LGPL (Lesser GNU Public License) license.

83 questions
0
votes
1 answer

Image Magick Java Support

Most of the time I get ImageInfo() init<> exception when I use Jmagick API. Does any one have an idea on the same. Does it happen generally or something needs to be resolved on the Image Info class? or there is any mistake on my side. Help…
Ranga
  • 1
0
votes
1 answer

native libraries configuration under tomcat

I am trying to get the JMagick library working under Tomcat to do some image translation following an upload. Magic comes as a semi-stub library.jar archive and a native library libJMagick.so . I have used System. LoadLibrary ("JMagick");, but I…
0
votes
1 answer

Not able to read PNG format Image using Jmagick library

I am able to read JPEG format image and can write JPEG format image. I want to do same for PNG format image but i am not getting how to do that.
Farrakh
  • 9
  • 1
0
votes
1 answer

jmagick failing on ubuntu, runs fine on OSX

I am getting an error running a jmagick app (in this case a test on ubuntu). I've installed the following, but still I get the error below when running the tests sudo apt-get install imagemagick libmagickcore-dev sudo apt-get install…
0
votes
1 answer

Jmagick rounding corners

I've a question concerning Jmagick, how can I round corners of an image, and does this make sense or would it be better to do this using CSS in HTML ? Thanks
SPC
  • 1
0
votes
1 answer

How to call JMagick from a web application

I have a servlet based application for serving stored documents and images. The images were all stored as jpg with standard sizes based on corporate standards at the time the system was designed. Now, the image sizes that users want to see have…
GregA100k
  • 1,385
  • 1
  • 11
  • 16
0
votes
1 answer

Jmagick error : magick.MagickException: No image to scale

I am trying to integrate jmagick over ImageMagick, so I have installed Image magick 6.4.0 and JMagick 6.4.0 Q16 on my Ubuntu 11.10 I tried the following piece of code on Eclipse to test jmagick integration : try{ ImageInfo info = new…
Karim L.
  • 43
  • 1
  • 1
  • 8
-1
votes
1 answer

JMagick add some text to image

I've tried to add text to image: ImageInfo newImageiInfo=new ImageInfo(); newImageiInfo.setSize("500x500"); newImageiInfo.setUnits(ResolutionType.PixelsPerInchResolution); …
1 2 3 4 5
6