Configuration porblem while installation on linux

Magick++ is an object-oriented C++ interface to ImageMagick. Use this forum to discuss, make suggestions about, or report bugs concerning Magick++.
Post Reply
wizards
Posts: 46
Joined: 2008-12-05T06:31:55-07:00

Configuration porblem while installation on linux

Post by wizards »

Hello all,

I am new to ImageMagick on Linux. I already build IM from source in VC++.
In VC+ + i build IM to support all image formates.

when i build IM in linux i am not able to build to support all image formates.

I gave the configure as follows

./configure CXX=g++ CFLAGS=-O2 --with-magick-plus-plus=yes --with-jpeg=yes

after i build I got libMagick++.so file but I did not get any jpeg related shared objects.

I want to build my application to load any image.

Can you please help me what to do to build ImageMagick from source to support all formated images.

Thanks in advance
wizards
User avatar
magick
Site Admin
Posts: 11064
Joined: 2003-05-31T11:32:55-07:00

Re: Configuration porblem while installation on linux

Post by magick »

ImageMagick picks up delegate libraries if they are available as binary libraries with header files. Install the JPEG and JPEG development libraries and when you rebuild ImageMagick it should automatically discover JPEG and include support for it. You can install JPEG as a local library but generally its installed with RPM's. Under CentOS, for example, you would type somthing like 'yum install jpeg jpeg-devel'.
Post Reply