]> git.imager.perl.org - imager.git/commit - lib/Imager/ImageTypes.pod
Various changes:
authorTony Cook <tony@develop=help.com>
Sat, 30 Dec 2006 21:44:33 +0000 (21:44 +0000)
committerTony Cook <tony@develop=help.com>
Sat, 30 Dec 2006 21:44:33 +0000 (21:44 +0000)
commit9c106321e22c5a74d0e5d946b452db24e1c9d6f7
tree4df5d44dfd36b6bf7f215703c22243a41db2aad1
parent31d007ebfc3a42a2b17c1671707212bc261a530f
Various changes:
 - fix drawing text on 2/4 channel images for FT2
 - reading ASCII PBMs was broken, it assumed there was whitespace
   between samples but there doesn't need to be
 - add makemap type of mono/monochrome for producing monochrome images
 - roughly tripled speed of reading any sort of PNM
 - reading a pnm can now return a partial image if you set allow_partial
 - reading a bmp can now return a partial image if you set allow_partial
 - we can now read 16-bit/sample binary PGM/PPM images
 - we can now write 16-bit/sample binary PGM/PPM files if explicitly
   requested (since GIMP can't read them)
 - reading a tiff will now only return an incomplete image if you set
   allow_partial
 - some documentation reformatting
36 files changed:
Imager.pm
Imager.xs
MANIFEST
Makefile.PL
TODO
bmp.c
freetyp2.c
image.c
imager.h
imdatatypes.h
imrender.h [new file with mode: 0644]
lib/Imager/Files.pod
lib/Imager/ImageTypes.pod
lib/Imager/Test.pm
pnm.c
quant.c
render.im [new file with mode: 0644]
rendert.h [new file with mode: 0644]
t/t104ppm.t
t/t106tiff.t
t/t15color.t
testimg/bad_asc.pbm [new file with mode: 0644]
testimg/bad_asc.pgm [new file with mode: 0644]
testimg/bad_asc.ppm [new file with mode: 0644]
testimg/maxval_256.ppm
testimg/pbm_base.pgm [new file with mode: 0644]
testimg/pgm.pgm [new file with mode: 0644]
testimg/short_asc.pbm [new file with mode: 0644]
testimg/short_asc.pgm [new file with mode: 0644]
testimg/short_asc.ppm [new file with mode: 0644]
testimg/short_bin.pbm [new file with mode: 0644]
testimg/short_bin.pgm [new file with mode: 0644]
testimg/short_bin.ppm [new file with mode: 0644]
testimg/short_bin16.pgm [new file with mode: 0644]
testimg/short_bin16.ppm [new file with mode: 0644]
tiff.c