openjpeg/applications/codec
mayeut f0dd842b11 Fix warning
applications\codec\convertpng.c(465) : warning C4018: '<' :
signed/unsigned mismatch
2015-11-07 01:29:43 +01:00
..
CMakeLists.txt PNG support enhancement 2015-11-05 22:44:58 +01:00
Makefile.am [1.5] Import patch from bug tracker 2014-03-25 16:42:49 +00:00
README re-organization of openjpeg directories hierarchy : step 1 2011-04-13 21:01:39 +00:00
convert.c PNG support enhancement 2015-11-05 22:44:58 +01:00
convert.h Update TIFF conversion to support more bit depth. 2015-11-03 22:34:43 +01:00
convertbmp.c BMP support enhancement 2015-11-05 00:29:37 +01:00
convertpng.c Fix warning 2015-11-07 01:29:43 +01:00
converttif.c BMP support enhancement 2015-11-05 00:29:37 +01:00
image_to_j2k.c preventde seg fault when unknown long options and fixed ability to use USE_SYSTEM_GETOPT 2015-09-15 18:00:52 +02:00
index.c [1.5] Convert from DOS eol to UNIX eol 2012-03-02 09:50:30 +00:00
index.h [1.5] Convert from DOS eol to UNIX eol 2012-03-02 09:50:30 +00:00
j2k_dump.c Makes j2k_dump focus on parsing j2k codestreams, nothing else. 2015-09-23 17:48:30 +02:00
j2k_to_image.c Add "-p", "-force-rgb" and "-upsample" options to j2k_to_image 2015-10-18 16:07:40 +02:00
windirent.h [1.5] Convert from DOS eol to UNIX eol 2012-03-02 09:50:30 +00:00

README

Simple codec compilation
------------------------
Once you've built the library, you might want to test it with a basic codec. To do this, go to the codec directory and either use the provided Makefile or use one of the following commands to build an encoder and decoder respectively:

gcc index.c convert.c image_to_j2k.c -o image_to_j2k -lopenjpeg -I ../libopenjpeg/ -lm -ltiff
gcc index.c convert.c j2k_to_image.c -o j2k_to_image -lopenjpeg -I ../libopenjpeg/ -lm -ltiff

You should add '-L..' to those lines if you did not use the 'install' target when building the library.