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
2
votes
1 answer

ImageMagick example to convert multiple JPEG files to multi-page TIFF in JAVA

My requirement is to convert multiple jpeg files to a multi-page Tiff file. Initially, I've gone through this post and I was able to create tiff files in java using jai_imageio libraries but unfortunately these libraries are not open source. Later,…
chaitanya89
  • 827
  • 3
  • 20
  • 26
2
votes
1 answer

JVM crashes during JMagick readImage

While trying to use Jmagick to convert image to jpg format, the JVM crashed and this is the report. any suggestions how to figure out how we can fix the issue with Jmagick or anything to resolve this. JVM crash report # # A fatal error has been…
Gaurav Kohli
  • 326
  • 3
  • 6
2
votes
1 answer

Resampling Image using JMagick

How to do below using JMagick API: Resampling Image (ImageMagick Command) Convert -units pixelsperinch -resample 300x300 ` in API I could not find anything related to change dpi per pixels. Flatten Image Layers: (ImageMagick…
Ramu Pasupuleti
  • 888
  • 2
  • 15
  • 35
2
votes
0 answers

jmagick text around circle slightly off

I’m relatively new to ImageMagick and java and working on a project to display text around the outside of a circle centered at 0 degrees on the circle using ImageMagick 6.3.9 Q16 and jmagick 6.3.9 Q16 on windows. We’re porting existing image magick…
1
vote
0 answers

JMagick Method setGeometry of MontageInfo class crashes JMV

Trying to montage multiple images into one. Wortks fine with default geometry. But if i try to set it, JVM crashes. MontageInfo montageInfo1 = new MontageInfo(new ImageInfo()); montageInfo1.setGeometry("+0+0"); # # A fatal error has been detected…
Kcmamu
  • 41
  • 1
  • 4
1
vote
0 answers

How can I call Imagemagick's compare command using java without using Runtime.exec() function

I am writing a java utility which will convert jbig images into png format. I am using jmagick api which is an open source Java interface of ImageMagick. I did't find any compare function api in jmagick so I am unable to call ImageMagick's…
1
vote
2 answers

magick.MagickException: Unable to retrieve handle

I am trying to use JMagick in my app for last one week but sm still unsuccesfull. I installed JMagick 6.4.0 and ImageMagick 6.4.0 from source itself using default installation directories. I can see shared libraries in /usr/local/lib. Now I try to…
RandomQuestion
  • 6,778
  • 17
  • 61
  • 97
1
vote
0 answers

Jmagick: configure: error: 'Unable to find ImageMagick header files' on MacOS

I am new to jmagick and image magick. I have image magick 7.0.8-14 installed on mac.when I try to configure Jmagick, I get below error. I referred many posts to resolve the error, but nothing helped. ./configure…
merla
  • 489
  • 1
  • 5
  • 12
1
vote
0 answers

jMagick on Windows giving error

C:\Users\E080978\Downloads\jmagick-master\src>nmake -f Makefile.all ALL Microsoft (R) Program Maintenance Utility Version 14.00.24234.1 Copyright (C) Microsoft Corporation. All rights reserved. Could Not Find…
Ayman Patel
  • 564
  • 2
  • 8
  • 23
1
vote
0 answers

jMagick use Eclipse By Windows 64 bit

Captures the jMagic in Eclipse, can you do to debug locally? I first, Download "jmagick-win-6.3.9-Q8.zip" and "ImageMagick-6.3.9-0-Q8-windows-dll.exe" from the following This URL. Than thawed "jmagick-win-6.3.9-Q8.zip", incorporating the…
bunji
  • 39
  • 1
  • 3
1
vote
2 answers

Remove metadata from an image using jmagick

I have removed the metadata from an image using the below imagemagick command. convert input.png -strip output.png It almost reduces 20% of the size for the 2MB file. I need to do the same using Jmagick java api. Is there any api available in…
Querier
  • 185
  • 1
  • 1
  • 10
1
vote
1 answer

Is there a better way to setup/run this Java program?

My file structure looks liked this: cse408 - lib - pics - App.java - ImageUtil.java - Menu.java And to compile/run I use the following commands: ***To…
Bobby
  • 18,217
  • 15
  • 74
  • 89
1
vote
1 answer

UnsatisfiedLinkError for libMagick.so.10 while using JMagick

I am trying to run a program which uses JMagick. I have added the native library libJMagick.so as well as libMagick.so.10 (64 bit, matching my system's architecture) to my java.library.path. But when I am trying to run the program I am getting…
Pranav Pal
  • 275
  • 6
  • 18
1
vote
1 answer

JMagick.dll for 64 bit processor

I am trying to run a program to call C++ libraries in ImageMagick using jmagick interface (JNI) from a java program. But I am getting following exception Exception in thread "main" java.lang.UnsatisfiedLinkError: C:\Program …
user1864555
  • 11
  • 1
  • 2
1
vote
1 answer

JMagick: Can't Find Dependent Libraries

I've recently installed ImageMagick 6.3.9 and JMagick 6.3.9. from here via ImageMagick-6.3.9-0-Q8-windows-dll.exe and jmagick-win-6.3.9-Q8.zip. I added jmagick.jar to my project's libraries in NetBeans, and set the classpath to include the folder…
Tetramputechture
  • 2,911
  • 2
  • 33
  • 48