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
15
votes
7 answers

How can I find dominant color of an image?

Can we find which color is dominant in an image using Java, ImageMagick, or JMagick?
Erçin Akçay
  • 1,383
  • 4
  • 18
  • 34
7
votes
2 answers

JMagick Error when trying to load a file - UnsatisfiedLink

java.lang.UnsatisfiedLinkError: no JMagick in java.library.path at java.lang.ClassLoader.loadLibrary(ClassLoader.java:1754) at java.lang.Runtime.loadLibrary0(Runtime.java:823) at java.lang.System.loadLibrary(System.java:1045) when trying…
James
  • 15,085
  • 25
  • 83
  • 120
7
votes
3 answers

How to find hidden files inside image files (Jpg/Gif/Png)

I came across a link that shows how to hide number of files inside an image file: http://lifehacker.com/282119/hide-files-inside-of-jpeg-images more discussion on detection here:…
Jayson
  • 167
  • 1
  • 3
  • 7
5
votes
0 answers

How to convert colorspace using JMagick?

How do I convert colorspace using JMagick API? For example CMYK --> RGB and RGB --> CMYK.
user43685
  • 1,456
  • 3
  • 17
  • 21
4
votes
1 answer

Cannot got JMagick working

I have strange problem with JMagick library. I use Debian, so I have installed libjmagick6-java and libjmagick6-jni, and here are steps I have done: I have copied jmagick-6.6.9.jar from /usr/share/java/ to $JAVA_HOME/jre/lib/ext/. I have set…
Firzen
  • 1,909
  • 9
  • 28
  • 42
4
votes
2 answers

Convert RGB PNG to CMYK JPEG (using ICC Color Profiles)

I need to convert a PNG-File into a CMYK JPEG. During my research i've found multiple articles on SO decribing that problem. I've copied this answer using BufferedImage and ColorConvertOp. I came up with this little example: public static void…
d0x
  • 11,040
  • 17
  • 69
  • 104
4
votes
1 answer

Is anyone using JMagick on Windows

For deploy I'll be using Linux, but dev is done on Windows. Has anyone used it lately on Windows? Have you had any problems? Do you have an updated Makefile for VC++ that you can share? It seems the directory structure for the latest Magick is…
Andrew
  • 2,355
  • 4
  • 29
  • 42
4
votes
1 answer

Using Jmagick into an Android project

I would use Jmagick into an Android Project. Is it possible? I have to recompile source code with ndk? Are there some tutorial/guide for that?
Lele
  • 148
  • 2
  • 9
3
votes
1 answer

JMagick setup problems with Eclipse in OS X - UnsatisfiedLinkError: no JMagick in java.library.path

I am having some trouble setting up my environment in Eclipse for ImageMagick via JMagick in OS X. I have no problems using the ImageMagick command line tools (display, convert, etc.) after installing, but am unable to set up JMagick with a Java…
3
votes
2 answers

What java library should I use for image cropping/ letterboxing?

I'm looking for a Java library to do image cropping / resizing. I had planned to use jmagick, but it doesn't seem to have been maintained since 2009. Is this the best library to use? Any recommendations?! Edit One thing I want to do is to be…
laura
  • 2,951
  • 9
  • 44
  • 61
3
votes
3 answers

How to work with ImageMagick from ColdFusion

ColdFusion has a great cfimage tag that works perfectly. However, it doesn't allows vector formats to be manipulated. This caused me to continue searching for 3rd party tools to do some "image magic". I decided to try ImageMagick with ColdFusion.…
Rodion Bykov
  • 614
  • 1
  • 7
  • 14
3
votes
1 answer

How to set icc color profile in Java and change colorspace

First, I would like to say I'm not an image processing specialist. I would like to convert image colorspace from one to another, and change icc color profile at the same time. I managed to do it using JMagick (the ImageMagick Java port), but no way…
Patriarch24
  • 281
  • 1
  • 4
  • 7
3
votes
1 answer

How use lot of parameters in ImageMagick via Java (JMagick)?

I'm coding an application using Java and I need to resize some images, so I've been learning about ImageMagick. The command I need to use for my purposes is: convert -resize 500x500\> -quality 85% -strip -interlace Plane -define…
Ommadawn
  • 2,450
  • 3
  • 24
  • 48
3
votes
1 answer

Converting MagickImage to SWT.ImageData

I am trying to convert MagickImage to SWT.ImageDate because former library provides API that scale images much better with smooth edges, better interpolation and preserving transparency. This is my test image (2x2 pixel PNG file): Blue pixel has…
Kuba
  • 517
  • 4
  • 16
3
votes
0 answers

where can i get jmagick.jar and jmagik.dll for 64 bit windows os download

I have Windows 64 bit version and I have installed Java jdk. I followed these steps. I installed ImageMagick-6.8.7-10-Q16-x64-dll.exe Downloaded jmagick-win-6.3.9-Q16.zip and extracted to get jmagick.jar & jmagick.dll Copied jmagick.jar &…
Developer Desk
  • 2,294
  • 8
  • 36
  • 77
1
2 3 4 5 6