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
1
vote
0 answers

Cant convert .png to .tiff in intellij IDE using jmagick

So I'm trying to write a simple program that will change the type of an image from a .png to a .tiff using jmagick in java. I followed a tutorial that i found online for different image formats located Here. The program compiles successfully but…
user4623821
1
vote
1 answer

How to get im4java working with BufferedImage

I am using im4java version 1.4.0 to access ImageMagick functionality from Java. It is working well for processing images to and from files. The Developers Guide has a section on using Buffered Images instead of writing output to a file, and there is…
Glennn
  • 467
  • 1
  • 7
  • 18
1
vote
2 answers

Converting Bitmap to TIFF in Android

I am working on a project that has an external API that I need to submit an image through, and the requirement of that API is that the image be a TIFF with Group 4 Compression. I have tried several different approaches to convert my Bitmap to a…
Nicholas Hall
  • 161
  • 13
1
vote
1 answer

How to convert an indexed image to a RGB image in Java?

I have a color indexed TIFF image (8-bits) and I want to convert it to a RGB 24-bits image (not indexed). What would be the way to do that? I'm using JMagick. In a weird way, it works fine for indexed 8-bits images that are grayscale when i…
Erwann
  • 95
  • 2
  • 11
1
vote
1 answer

Getting Image information using JMagick APIs

Using Jmagick Java APIs, How do I get the image information such as: Codec, Color scheme, Color depth, Width, Height, Resize directive, Image Size etc. I tried executing the below code, but it did not give any useful details. public static void…
AnilJ
  • 1,951
  • 2
  • 33
  • 60
1
vote
2 answers

Resize Image using JMagick

I want to resize image using JMagick. import magick.ImageInfo; import magick.MagickImage; public class JMagicInfoa { public static void main(String args[]){ try{ ImageInfo origInfo = new ImageInfo(args[0]); //load image info …
Ramu Pasupuleti
  • 888
  • 2
  • 15
  • 35
1
vote
0 answers

jmagick: new ImageInfo fails on exported jar

Im using JMagick 6.3.9 for resizing and cropping images. When I run the program from within Eclipse it runs fine no problem. However, when I export into a jar file and try running the jar file the program just does not continue when it reaches …
1
vote
1 answer

JMagick: Program terminates unexpectedly and returns -1073740940

I am trying to do some image manipulations via JMagick interface to ImageMagick. The test program I tried compiles without a problem but during execution it gets stuck at the constructor of MagickImage and after some seconds of waiting the program…
VoidStar
  • 936
  • 1
  • 7
  • 17
1
vote
0 answers

How can extract sub-components using JMagick

In one of the my project i need to process the image(Consider any ad banner displayed on most of the websites) and need to extract sub-components like logo, buttons and all from that image banner. So i am using java wrapper "JMagick" over…
santosh kore
  • 976
  • 1
  • 12
  • 21
1
vote
1 answer

jmagick make error

I am working to install an existing Java application on OSX 10.7 (Lion) that depends on Jmagick (and ImageMagick) and I try to install jmagick. when I use the command ./configure…
1
vote
1 answer

Installing Jmagick-6.6.9 on Mac no .dylib generated

I am working to install an existing Java application on OSX 10.8 (Mountain Lion) that depends on Jmagick (and ImageMagick). When I build Jmagick 6.6.9, it successfully generates .so, but does not generate .dylib files. Any idea of why this is…
Matt
  • 11
  • 2
1
vote
0 answers

Does jMagick have compare method?

I am trying to compare screenshots using the jmagick java api for ImageMagick. I could not find any compare method here http://downloads.jmagick.org/jmagick-doc/ Could someone let me know, if jMagick has a compare or equivalent method or else what…
1
vote
1 answer

Can we use imagemagick Library in android?

But there is only Jmagick JAVA interface Provided in imagemagick website? Can we make that java library to include in android ? Using NDK is not preferred as Memory leaks may occur.And the code in github using ndk is not fully completed. If there is…
user960872
  • 21
  • 3
1
vote
1 answer

How to get RGB values using JMagick?

How to get RGB values using JMagick(a wrapper of imagemagick) ?
ygnhzeus
  • 367
  • 1
  • 2
  • 14
1
vote
1 answer

Using Image Magick with Junit and Selenium

Can somebody guide as to how can I use image magick or jmagick in designing automation visualization testing. Basically I want to automate comparison of screenshots(new with old) of web applications. I have configured Selenium to run with junit core…
Kevin
  • 217
  • 6
  • 19