On Thu, Feb 18, 2016 at 11:11:03AM -0800, Gary Roach wrote: > Hi all, > > Does anyone have experience with setting up High Dynamic Range > Imaging with ImageMagick. The instructions say to run ./configure > --enable-hdri at the command line. On Debian Stretch with KDE desktop > and bash konsole this returns command not found. This is the only > procedure that I have been able to find.
Running './configure' is almost always a step in building a package from source. Is that what you are trying to do? If so, the previous steps probably include: - apt-get install build-essential # if not previously installed - downloading the source code for ImageMagick - unpacking it in a work directory - and then running the configure command. All this is probably noted in a document called README or INSTALL or similar in the ImageMagick source package. -dsr-