Questions and postings pertaining to the development of ImageMagick, feature enhancements, and ImageMagick internals. ImageMagick source code and algorithms are discussed here. Usage questions which are too arcane for the normal user list should also be posted here.
I am having trouble compiling Q32 with HDRI under Mac OS X 10.4 on an Intel iMac. As I am relatively new to compiling in the Terminal, it seems that I was wrong in thinking I could just ignore errors. After doing some reading I think I have a general idea of what is going on, and I am using these commands to compile:
cd /Users/USERNAME/Desktop/ImageMagick-6.3.5/
make uninstall
make distclean
make clean
export CFLAGS="-O -g -isysroot /Developer/SDKs/MacOSX10.4u.sdk/ -arch i386 -I/sw/include/"
export LDFLAGS="-Wl,-syslibroot,/Developer/SDKs/MacOSX10.4u.sdk/,-L/sw/lib/"
./configure --with-tiff=yes --with-jpeg=yes --with-quantum-depth=32 --enable-hdri=yes --disable-dependency-tracking --without-magick-plus-plus --without-x --without-perl
make -j2
sudo make install
And during make I get an error about could not load library libdl.dylib because it is PPC.
Any help you could offer on this matter would be greatly appreciated.
Set your quantum depth to 16, not 32 for HDRI. HDRI is floating point so a quantum depth of 1 is all that is necessary but we set it at 16 because ImageMagick has a number of mapping algorithms which never exceeds 65536 elements making Q32 unnecessary.