• Home
  • History
  • Annotate
Name Date Size #Lines LOC

..03-May-2022-

_win/H03-May-2022-1,149903

basics/H03-May-2022-9,9286,316

config/H06-Oct-2017-16,29312,165

doc/H07-May-2022-

fpx/H03-May-2022-19,73513,416

jpeg/H03-May-2022-12,2288,747

m4/H06-Oct-2017-9,0608,188

macdeps/H03-May-2022-

ole/H03-May-2022-11,6107,324

oless/H03-May-2022-74,59237,703

ri_image/H06-Oct-2017-13,1468,080

AUTHORSH A D02-Sep-20131.4 KiB2922

ChangeLogH A D06-Oct-20176.1 KiB173120

INSTALLH A D02-Sep-20139.2 KiB232177

Makefile.amH A D25-Apr-20172.4 KiB11590

Makefile.inH A D06-Oct-201735.2 KiB1,105976

NEWSH A D02-Sep-2013165 116

READMEH A D02-Sep-2013801 1712

README.gccH A D02-Sep-20132.2 KiB3820

aclocal.m4H A D06-Oct-201742.9 KiB1,1941,085

commk.gccH A D02-Sep-20131 KiB3629

compileH A D02-Sep-20133.6 KiB14379

configureH A D06-Oct-2017589.3 KiB19,37416,334

configure.acH A D06-Oct-20172 KiB9377

depend.gccH A D02-Sep-201317 31

flashpix.hH A D02-Sep-20133.9 KiB810

fpx.hH A D02-Sep-2013240 115

fpxlib-config.h.inH A D06-Oct-20173.5 KiB136100

fpxlib.hH A D03-May-202261.4 KiB2,1671,235

makefile.gccH A D02-Sep-20134.9 KiB221181

mkinstalldirsH A D02-Sep-20133.3 KiB151102

README

1This package is currently maintained by the ImageMagick Studio LLC,
2http:://www.imagemagick.org/. It is available from
3ftp://ftp.imagemagick.org/pub/ImageMagick/delegates/ as well as via
4the 'fpx' module from ImageMagick CVS. All change history, starting
5with the original distribution is available in ImageMagick CVS.
6
7This package is the Flashpix OpenSource Toolkit and is based on source code
8obtained from the Digital Imaging Group Inc and the Eastman Kodak Company.
9
10The package currently compiles under Windows using Visual C++, and should
11compile under many different Unix versions.
12
13See the file AUTHORS for the origin of this package, the file COPYING for
14usage limitations, the file INSTALL for Unix installation instructions, and
15the file README.gcc for GNU make based build instructions.
16
17

README.gcc

1These are instructions for building the static and shared flashpix library that image magick will link to on Solaris 2.7.  If you follow these instructions exactly, you should not have any problems putting flashpix support into Image Magick.  This codebase was tested with gnu gcc 2.95.2 and ImageMagick 5.2.4.
2
3You must have libtool, gnumake, gcc installed on your system.  It is probably a good idea to have gdb for debugging.
4
51) cd to /oless run 'make -f makefile.gcc'
6
72) cd to /fpx/jpeg run 'make -f makefile.gcc'
8
93) cd to /fpx
10-  to build the static library run make -f makefile.gcc obj/libfpx.a
11-  to build the dynamic library run make -f makefile.gcc obj/libfpx.so
12-  to build both, run make -f makefile.gcc
13
14After this, you should have one static library obj/libfpx.a or one dynamic library obj/libfpx.so that can be linked to Image Magick.  Image Magick will look for this library when configure is run by checking the LD_LIBRARY_PATH environment variable.  If it determines that this library is present and it can call the function FPX_OpenImageByFilename from it and it can find the needed header file fpx.h, then it will try to link in the flashpix stuff when you build it.  The path to fpx.h needs to be specified in the environment variable CPPFLAGS as so:
15export CPPFLAGS="-I/export/whatever"
16
17and the environment variable LD_LIBRARY_PATH should be specified as:
18
19export LD_LIBRARY_PATH=/export/whatever:$LD_LIBRARY_PATH
20
21Even though configure looks for the file fpx.h, the file ImageMagick/coders/fpx.c tries to include the file fpxlib.h so both files should be present in a directory pointed to by CPPFLAGS.  fpx.h simply includes fpxlib.h and also includes another file flashpix.h which just has some legal mumbo jumbo in it.
22
23To test that you have done this all correctly, after building and installing image magick run the convert utility to convert a file to flashpix like so -->
24
25convert examples.jpg examples.fpx
26
27and then verify that examples.fpx is a flashpix file.  examples.jpg is included in the images subdirectory of the Image Magick distribution.
28
29To verify that you can generate jpeg compressed flashpix files run -->
30
31convert -compress JPEG examples.jpg examples.fpx
32
33That should be it.  Any questions?  Contact: gurupix@hotmail.com.
34
35November 12th, 2000
36
37
38