No Q32 when compiling with --enable-hdri

Questions and postings pertaining to the usage of ImageMagick regardless of the interface. This includes the command-line utilities, as well as the C and C++ APIs. Usage questions are like "How do I use ImageMagick to create drop shadows?".
Post Reply
mikjsmith
Posts: 8
Joined: 2016-04-02T23:46:59-07:00
Authentication code: 1151

No Q32 when compiling with --enable-hdri

Post by mikjsmith »

Hi

I have downloaded the latest IM sources and compiled under CentOS 7 using

make clean
./configure --enable-hdri
make
make install

After the configure command this is reported
CPPFLAGS -DMAGICKCORE_HDRI_ENABLE=1 -DMAGICKCORE_QUANTUM_DEPTH=16

The version is reported as

Version: ImageMagick 6.9.3-7 Q16 x86_64 2016-04-04

How do I switch to Q32 or Q64?

thanks

mike
snibgo
Posts: 12159
Joined: 2010-01-23T23:01:33-07:00
Authentication code: 1151
Location: England, UK

Re: No Q32 when compiling with --enable-hdri

Post by snibgo »

HDRI is available for any Q-number. I set them with:

Code: Select all

./configure ... --with-quantum-depth=32 --enable-hdri ...
snibgo's IM pages: im.snibgo.com
Post Reply