[opendx-dev] Writing a JPEG with DX...

2000-10-19 Thread Randall Hopper
I'm trying to figure out how to write a JPEG with DX (or if it's possible). After rebuilding with CPPFLAGS=-I/usr/local/include, DX configure and build picks up ImageMagick. A make and install gives me a WriteImage that still doesn't know about format=jpg or format=jpeg. Should it?

Re: [opendx-dev] Writing a JPEG with DX...

2000-10-19 Thread David Thompson
Randall, I typically choose the ImageMagick format to write out to and then you have to give it the proper extension in the file name. ImageMagick uses filenames similar to Windows to determine the appropriate type (they call them delegates). What I would do is make sure your ImageMagick is

Re: [opendx-dev] Writing a JPEG with DX...

2000-10-19 Thread Peter Daniel Kirchner
This is extremely possible using just the Image Magick Supported Format mechanism you tried. It looks like you need jpeg 6.2 (which I am seeing from a RedHat 6.2 installation libjpeg-6b-10.rpm). Then set LD_LIBRARY_PATH accordingly (you didn't say what OS). Pete Randall Hopper wrote: I'm