├── .cvsignore ├── .gitattributes ├── .github ├── valgrind.supp └── workflows │ ├── codeql.yml │ ├── coverage.yml │ ├── libtiff.yml │ ├── raw-probe.yml │ ├── reverse-deps.yml │ ├── rocky.yml │ ├── test-cygwin.yml │ ├── test-linux-i386.yml │ ├── test-linux-nothr.yml │ ├── test-linux.yml │ ├── test-macosx.yml │ ├── test-win32-mingw64.yml │ └── valgrind.yml ├── .gitignore ├── Changes ├── Changes.old ├── CountColor ├── .gitignore ├── CountColor.pm ├── CountColor.xs ├── Makefile.PL └── t │ └── t00countcolor.t ├── DynTest ├── .gitignore ├── DynTest.pm ├── DynTest.xs ├── Makefile.PL ├── linstretch.c └── t │ └── t00dyntest.t ├── FT2 ├── .gitignore ├── Changes ├── FT2.pm ├── FT2.xs ├── MANIFEST ├── MANIFEST.SKIP ├── Makefile.PL ├── README ├── fontfiles │ ├── ExistenceTest.afm │ ├── ExistenceTest.pfb │ ├── ExistenceTest.ttf │ ├── ImUgly.ttf │ ├── MMOne.pfb │ ├── NameTest.ttf │ └── dodge.ttf ├── freetyp2.c ├── imft2.h ├── inc │ └── Devel │ │ └── CheckLib.pm ├── t │ ├── t10ft2.t │ ├── t20thread.t │ └── t90std.t └── typemap ├── Flines ├── .gitignore ├── Flines.pm ├── Flines.xs ├── Makefile.PL └── t │ └── t00flines.t ├── GIF ├── .gitignore ├── Changes ├── GIF.pm ├── GIF.xs ├── MANIFEST ├── MANIFEST.SKIP ├── Makefile.PL ├── README ├── imgif.c ├── imgif.h ├── inc │ └── Devel │ │ └── CheckLib.pm ├── t │ ├── t10gif.t │ ├── t20new.t │ ├── t30fixed.t │ ├── t40limit.t │ └── t50header.t └── testimg │ ├── badindex.gif │ ├── bandw.gif │ ├── expected.gif │ ├── loccmap.gif │ ├── nocmap.gif │ ├── scale.gif │ ├── scalei.gif │ ├── screen2.gif │ ├── screen3.gif │ ├── trimgdesc.gif │ ├── trmiddesc.gif │ └── zerocomm.gif ├── ICO ├── .gitignore ├── ICO.pm ├── ICO.xs ├── Makefile.PL ├── imicon.c ├── imicon.h ├── lib │ └── Imager │ │ └── File │ │ └── CUR.pm ├── msicon.c ├── msicon.h ├── t │ ├── t10icon.t │ ├── t20readone.t │ ├── t21readmult.t │ ├── t30cursor.t │ ├── t40readcurone.t │ ├── t41curmultread.t │ ├── t50readfail.t │ ├── t60writefail.t │ ├── t70icosing.t │ ├── t71icomult.t │ ├── t72cursing.t │ └── t73curmult.t └── testimg │ ├── combo.ico │ ├── pal13232.ico │ ├── pal256.ico │ ├── pal43232.cur │ ├── pal43232.ico │ ├── pal43232.ppm │ ├── pal83232.ico │ ├── pal83232.ppm │ ├── rgb1616.ico │ ├── rgba3232.ico │ └── rgba3232.ppm ├── Imager.pm ├── Imager.xs ├── JPEG ├── .gitignore ├── Changes ├── JPEG.pm ├── JPEG.xs ├── MANIFEST ├── MANIFEST.SKIP ├── Makefile.PL ├── README ├── imjpeg.c ├── imjpeg.h ├── inc │ └── Devel │ │ └── CheckLib.pm ├── t │ ├── t00load.t │ ├── t10jpeg.t │ └── t20limit.t └── testimg │ ├── 209_yonge.jpg │ ├── exiftest.jpg │ ├── scmyk.jpg │ └── zerotype.jpg ├── MANIFEST ├── MANIFEST.SKIP ├── Makefile.PL ├── Mandelbrot ├── .gitignore ├── Makefile.PL ├── Mandelbrot.pm ├── Mandelbrot.xs ├── mandel.c └── t │ └── t00mandel.t ├── PNG ├── .gitignore ├── Changes ├── MANIFEST ├── MANIFEST.SKIP ├── Makefile.PL ├── PNG.pm ├── PNG.xs ├── README ├── impng.c ├── impng.h ├── inc │ └── Devel │ │ └── CheckLib.pm ├── t │ ├── 00load.t │ └── 10png.t └── testimg │ ├── badcrc.png │ ├── bilevel.png │ ├── bipalette.png │ ├── comment.png │ ├── cover.png │ ├── cover16.png │ ├── cover16i.png │ ├── coveri.png │ ├── coverpal.png │ ├── coverpali.png │ ├── gray.png │ ├── graya.png │ ├── pal.png │ ├── palette.png │ ├── palette_out.png │ ├── paltrans.png │ ├── rgb16.png │ ├── rgb8.png │ └── rgb8i.png ├── README ├── SECURITY.md ├── SGI ├── .gitignore ├── Makefile.PL ├── SGI.pm ├── SGI.xs ├── imsgi.c ├── imsgi.h ├── t │ ├── 00load.t │ ├── 10read.t │ ├── 20write.t │ └── 30limit.t └── testimg │ ├── rle.rgb │ ├── rle12.rgb │ ├── rle16.rgb │ ├── rle6.rgb │ ├── rleagr.rgb │ ├── verb.rgb │ ├── verb12.rgb │ ├── verb16.rgb │ └── verb6.rgb ├── STATUS ├── T1 ├── .gitignore ├── Changes ├── MANIFEST ├── MANIFEST.SKIP ├── Makefile.PL ├── README ├── T1.pm ├── T1.xs ├── fontfiles │ ├── ExistenceTest.afm │ ├── ExistenceTest.pfb │ ├── SpaceTest.afm │ ├── SpaceTest.pfb │ ├── dcr10.afm │ └── dcr10.pfb ├── imt1.c ├── imt1.h ├── inc │ └── Devel │ │ └── CheckLib.pm ├── t │ ├── t10type1.t │ ├── t20oo.t │ ├── t30thread.t │ └── t90std.t └── typemap ├── TIFF ├── .gitignore ├── Changes ├── MANIFEST ├── MANIFEST.SKIP ├── Makefile.PL ├── README ├── TIFF.pm ├── TIFF.xs ├── imtiff.c ├── imtiff.h ├── inc │ └── Devel │ │ └── CheckLib.pm ├── t │ └── 10tiff.t └── testimg │ ├── alpha.tif │ ├── comp4.bmp │ ├── comp4.tif │ ├── comp4bad.tif │ ├── comp4t.tif │ ├── comp8.bmp │ ├── comp8.tif │ ├── gralpha.tif │ ├── grey16.tif │ ├── grey16sg.tif │ ├── grey32.tif │ ├── imager.pbm │ ├── imager.tif │ ├── pengtile.tif │ ├── penguin-base.ppm │ ├── rgb16.tif │ ├── rgb16t.tif │ ├── rgbatsep.tif │ ├── scmyk.tif │ ├── scmyka.tif │ ├── scmyka16.tif │ ├── scmykaa.tif │ ├── slab.tif │ ├── srgb.tif │ ├── srgba.tif │ ├── srgba16.tif │ ├── srgba32.tif │ ├── srgba32f.tif │ ├── srgbaa.tif │ └── tiffwarn.tif ├── TODO ├── W32 ├── .gitignore ├── Changes ├── MANIFEST ├── MANIFEST.SKIP ├── Makefile.PL ├── README ├── W32.pm ├── W32.xs ├── fontfiles │ └── ExistenceTest.ttf ├── imw32.h ├── inc │ └── Devel │ │ └── CheckLib.pm ├── lib │ └── Imager │ │ └── Font │ │ └── Win32.pm ├── t │ ├── t10win32.t │ └── t90std.t └── win32.c ├── adobe.txt ├── announce ├── 0.44.txt ├── 0.45.txt ├── 0.52.txt ├── 0.54.txt ├── 0.55.txt └── 0.57.txt ├── apidocs.perl ├── bench ├── .cvsignore ├── .gitignore ├── benchform.perl ├── box.pl ├── circlef.pl ├── convert.pl ├── copy.bench ├── gifthread.pl ├── kscdisplay.png ├── largish.jpg ├── makegrad.perl ├── quantbench.perl ├── quantone.perl ├── scale.perl ├── scale.sh.perl ├── scalebench ├── tifthread.pl └── transbench.perl ├── bigtest.perl ├── bmp.c ├── color.c ├── combine.im ├── compose.im ├── context.c ├── conv.im ├── convert.im ├── datatypes.c ├── design ├── aascan.ps ├── cmyktorgb.txt ├── colmatrix.txt ├── doclayout.txt ├── draw.pod ├── fax.diff ├── fontlayout.txt ├── incomplete.txt ├── linevsfill.txt ├── represent.txt ├── tags.txt └── unsharp_mask.txt ├── doco.perl ├── draw.c ├── draw.h ├── dynaload.c ├── dynaload.h ├── dynfilt ├── .cvsignore ├── .gitignore ├── Makefile.PL ├── compile.txt ├── dt2.c ├── dt2.exp ├── dyntest.c ├── dyntest.exp ├── flines.c ├── flines.exp ├── mandelbrot.c ├── mandelbrot.exp ├── pluginst.h └── t │ └── t60dyntest.t ├── errep.perl ├── error.c ├── ext.h ├── extraimages └── slide0005_image006.gif ├── feat.c ├── feat.h ├── fileformatdocs ├── SGIIMAGESPEC.txt ├── bmp.txt ├── bmpdump.pl ├── itu-t81.pdf ├── jfif3.pdf ├── jpegdump.pl ├── other.txt ├── pngdump.pl ├── sgiimage-1.00.html ├── spec-gif89a.txt ├── tga_specs.pdf ├── tgaffs.pdf └── tiffsigned.pl ├── fills.c ├── filterlist.perl ├── filters.im ├── flip.im ├── fontfiles ├── ExistenceTest.sfd ├── ExistenceTest.ttf ├── ImUgly.ttf ├── NameTest.sfd ├── NameTest.ttf ├── SpaceTest.sfd └── dodge.ttf ├── fontft1.c ├── fuzz └── fuzz.pl ├── gaussian.im ├── hlines.c ├── image.c ├── imager.h ├── imageri.h ├── imcover.perl ├── imdatatypes.h ├── imerror.h ├── imexif.c ├── imexif.h ├── imext.c ├── imext.h ├── imextdef.h ├── imextpl.h ├── imextpltypes.h ├── imexttypes.h ├── img16.c ├── img8.c ├── imgdouble.c ├── imio.h ├── immacros.h ├── imperl.h ├── imperlio.h ├── imrender.h ├── inc └── Devel │ └── CheckLib.pm ├── io.c ├── iolayer.c ├── iolayer.h ├── iolayert.h ├── lib └── Imager │ ├── API.pod │ ├── APIRef.pod │ ├── Color.pm │ ├── Color │ ├── Float.pm │ └── Table.pm │ ├── Cookbook.pod │ ├── Draw.pod │ ├── Engines.pod │ ├── Expr.pm │ ├── Expr │ └── Assem.pm │ ├── ExtUtils.pm │ ├── Files.pod │ ├── Fill.pm │ ├── Filters.pod │ ├── Font.pm │ ├── Font │ ├── BBox.pm │ ├── FreeType2.pm │ ├── Image.pm │ ├── Test.pm │ ├── Truetype.pm │ ├── Type1.pm │ └── Wrap.pm │ ├── Fountain.pm │ ├── Handy.pod │ ├── IO.pod │ ├── ImageTypes.pod │ ├── Inline.pod │ ├── Install.pod │ ├── LargeSamples.pod │ ├── Matrix2d.pm │ ├── Preprocess.pm │ ├── Probe.pm │ ├── Regops.pm │ ├── Security.pod │ ├── Test.pm │ ├── Threads.pod │ ├── Transform.pm │ ├── Transformations.pod │ ├── TrimColorList.pm │ ├── Tutorial.pod │ ├── interface.pod │ └── regmach.pod ├── limits.c ├── log.c ├── log.h ├── map.c ├── maskimg.c ├── mutexnull.c ├── mutexpthr.c ├── mutexwin.c ├── palimg.c ├── paste.im ├── perlio.c ├── plug.h ├── pnm.c ├── polygon.c ├── ppport.h ├── quant.c ├── raw.c ├── regmach.c ├── regmach.h ├── regops.perl ├── render.im ├── rendert.h ├── rotate.im ├── rubthru.im ├── samples ├── README ├── align-string.pl ├── anaglyph.pl ├── border.pl ├── combines.pl ├── drop_shadow.pl ├── flasher.pl ├── gifscale.pl ├── hatches.pl ├── inline_capture2image.pl ├── inline_replace_color.pl ├── interleave.pl ├── logo ├── quad_to_square.pl ├── replace_color.pl ├── samp-form.cgi ├── samp-image.cgi ├── samp-scale.cgi ├── samp-scale.html ├── samp-tags.cgi ├── samp-tags.html ├── slant_text.pl ├── tk-photo.pl ├── transform.pl ├── transform1.ppm └── wiggle.pl ├── scale.im ├── spot.perl ├── stackmach.c ├── stackmach.h ├── t ├── 000-load.t ├── 100-base │ ├── 010-introvert.t │ ├── 020-color.t │ ├── 030-countc.t │ ├── 800-tr18561.t │ └── 801-tr18561b.t ├── 150-type │ ├── 020-sixteen.t │ ├── 030-double.t │ ├── 040-palette.t │ └── 100-masked.t ├── 200-file │ ├── 010-iolayer.t │ ├── 100-files.t │ ├── 200-nosuch.t │ ├── 300-raw.t │ ├── 310-pnm.t │ ├── 320-bmp.t │ ├── 330-tga.t │ ├── 400-basic.t │ └── 450-preload.t ├── 250-draw │ ├── 010-draw.t │ ├── 020-flood.t │ ├── 030-paste.t │ ├── 040-rubthru.t │ ├── 050-polyaa.t │ ├── 060-polypoly.t │ ├── 100-fill.t │ └── 200-compose.t ├── 300-transform │ ├── 010-scale.t │ ├── 020-combine.t │ ├── 030-copyflip.t │ ├── 040-crop.t │ ├── 050-convert.t │ ├── 060-map.t │ ├── 200-trimcolorlist.t │ ├── 210-trim.t │ ├── 500-trans.t │ ├── 600-trans2.t │ ├── 610-postfix.t │ ├── 620-infix.t │ └── 630-assem.t ├── 350-font │ ├── 010-font.t │ ├── 020-tt.t │ ├── 030-ttoo.t │ ├── 040-ttstd.t │ └── 100-texttools.t ├── 400-filter │ ├── 010-filters.t │ └── 020-autolevels.t ├── 450-api │ ├── 100-inline.t │ ├── 110-inlinectx.t │ └── 130-cpp.t ├── 850-thread │ ├── 010-base.t │ ├── 100-error.t │ └── 110-log.t ├── 900-util │ ├── 010-test.t │ ├── 020-error.t │ ├── 030-log.t │ ├── 040-limit.t │ ├── 050-matrix.t │ ├── 060-extutil.t │ └── 060-hlines.t ├── 950-kwalitee │ ├── 010-pod.t │ ├── 020-samples.t │ ├── 030-podcover.t │ ├── 040-strict.t │ ├── 050-meta.t │ ├── 060-podstruct.t │ ├── 070-mymeta.t │ └── 080-nousevars.t ├── GoodTestFont.pm ├── Pod │ └── Coverage │ │ └── Imager.pm └── t1000lib │ └── Imager │ └── File │ └── BAD.pm ├── tags.c ├── testimg ├── alpha16.tga ├── bad1oflow.bmp ├── bad1wid0.bmp ├── bad24comp.bmp ├── bad24oflow.bmp ├── bad24wid0.bmp ├── bad4oflow.bmp ├── bad4wid0.bmp ├── bad4widbig.bmp ├── bad8comp.bmp ├── bad8oflow.bmp ├── bad8useda.bmp ├── bad8wid0.bmp ├── bad_asc.pbm ├── bad_asc.pgm ├── bad_asc.ppm ├── badbits.bmp ├── badcomp1.bmp ├── badcomp4.bmp ├── badplanes.bmp ├── badused1.bmp ├── badused4a.bmp ├── badused4b.bmp ├── base.jpg ├── base.tga ├── comp4.bmp ├── comp8.bmp ├── filltest.ppm ├── gimpgrad ├── gradbad.ggr ├── gradbad2.ggr ├── imager.pbm ├── junk.ppm ├── longid.tga ├── maxval.ppm ├── maxval_0.ppm ├── maxval_256.ppm ├── maxval_4095_asc.ppm ├── maxval_65536.ppm ├── maxval_asc.ppm ├── multiple.ppm ├── newgimpgrad.ggr ├── os2rgb8.bmp ├── os2rle.bmp ├── os2rle8.bmp ├── pbm_base.pgm ├── penguin-base.ppm ├── pgm.pgm ├── scale.ppm ├── short1.bmp ├── short24.bmp ├── short4.bmp ├── short4rle.bmp ├── short8.bmp ├── short8rle.bmp ├── short_asc.pbm ├── short_asc.pgm ├── short_asc.ppm ├── short_bin.pbm ├── short_bin.pgm ├── short_bin.ppm ├── short_bin16.pgm ├── short_bin16.ppm ├── simple.pbm ├── test.png ├── test.raw ├── test.tga ├── test_gimp_pal ├── tootall.ppm ├── toowide.ppm ├── winrgb2.bmp ├── winrgb24.bmp ├── winrgb24off.bmp ├── winrgb2off.bmp ├── winrgb4.bmp ├── winrgb4off.bmp ├── winrgb8.bmp ├── winrgb8off.bmp ├── winrgboff.bmp ├── winrle.bmp └── winrle8.bmp ├── tga.c ├── tools ├── cover-clang └── imager ├── trans2.c ├── transform.perl ├── trim.im ├── typemap ├── typemap.local ├── typemap.oldperl ├── xt ├── x107bmp.t ├── x11rubthru.t ├── x20spell.t ├── x30podlinkcheck.t ├── x40checklib.t ├── x50cpod.t ├── x60threadgrind.t ├── x90cmpversion.t └── x91manifest.t └── xtestimg └── bmp ├── README.imager ├── bmpsuite-ref.zip ├── g01bg.bmp ├── g01bg.sgi ├── g01bw.bmp ├── g01bw.sgi ├── g01p1.bmp ├── g01p1.sgi ├── g01wb.bmp ├── g01wb.sgi ├── g04.bmp ├── g04.sgi ├── g04p4.bmp ├── g04p4.sgi ├── g04rle.bmp ├── g04rle.sgi ├── g08.bmp ├── g08.sgi ├── g08offs.bmp ├── g08offs.sgi ├── g08os2.bmp ├── g08os2.sgi ├── g08p256.bmp ├── g08p256.sgi ├── g08p64.bmp ├── g08p64.sgi ├── g08pi256.bmp ├── g08pi256.sgi ├── g08pi64.bmp ├── g08pi64.sgi ├── g08res11.bmp ├── g08res11.sgi ├── g08res21.bmp ├── g08res21.sgi ├── g08res22.bmp ├── g08res22.sgi ├── g08rle.bmp ├── g08rle.sgi ├── g08s0.bmp ├── g08s0.sgi ├── g08w124.bmp ├── g08w124.sgi ├── g08w125.bmp ├── g08w125.sgi ├── g08w126.bmp ├── g08w126.sgi ├── g16bf555.bmp ├── g16bf555.sgi ├── g16bf565.bmp ├── g16bf565.sgi ├── g16def555.bmp ├── g16def555.sgi ├── g24.bmp ├── g24.sgi ├── g32bf.bmp ├── g32bf.sgi ├── g32def.bmp ├── g32def.sgi ├── readme.txt ├── test32bfv4.bmp ├── test32bfv4.sgi ├── test32v5.bmp ├── test32v5.sgi ├── test4os2v2.bmp ├── test4os2v2.sgi ├── trans.bmp ├── trans.sgi ├── unalign4rle.bmp ├── unalign4rle2.bmp ├── width.bmp └── width.sgi /.cvsignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonycoz/imager/HEAD/.cvsignore -------------------------------------------------------------------------------- /.gitattributes: -------------------------------------------------------------------------------- 1 | testimg/* binary 2 | -------------------------------------------------------------------------------- /.github/valgrind.supp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonycoz/imager/HEAD/.github/valgrind.supp -------------------------------------------------------------------------------- /.github/workflows/codeql.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonycoz/imager/HEAD/.github/workflows/codeql.yml -------------------------------------------------------------------------------- /.github/workflows/coverage.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonycoz/imager/HEAD/.github/workflows/coverage.yml -------------------------------------------------------------------------------- /.github/workflows/libtiff.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonycoz/imager/HEAD/.github/workflows/libtiff.yml -------------------------------------------------------------------------------- /.github/workflows/raw-probe.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonycoz/imager/HEAD/.github/workflows/raw-probe.yml -------------------------------------------------------------------------------- /.github/workflows/reverse-deps.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonycoz/imager/HEAD/.github/workflows/reverse-deps.yml -------------------------------------------------------------------------------- /.github/workflows/rocky.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonycoz/imager/HEAD/.github/workflows/rocky.yml -------------------------------------------------------------------------------- /.github/workflows/test-cygwin.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonycoz/imager/HEAD/.github/workflows/test-cygwin.yml -------------------------------------------------------------------------------- /.github/workflows/test-linux-i386.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonycoz/imager/HEAD/.github/workflows/test-linux-i386.yml -------------------------------------------------------------------------------- /.github/workflows/test-linux-nothr.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonycoz/imager/HEAD/.github/workflows/test-linux-nothr.yml -------------------------------------------------------------------------------- /.github/workflows/test-linux.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonycoz/imager/HEAD/.github/workflows/test-linux.yml -------------------------------------------------------------------------------- /.github/workflows/test-macosx.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonycoz/imager/HEAD/.github/workflows/test-macosx.yml -------------------------------------------------------------------------------- /.github/workflows/test-win32-mingw64.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonycoz/imager/HEAD/.github/workflows/test-win32-mingw64.yml -------------------------------------------------------------------------------- /.github/workflows/valgrind.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonycoz/imager/HEAD/.github/workflows/valgrind.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonycoz/imager/HEAD/.gitignore -------------------------------------------------------------------------------- /Changes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonycoz/imager/HEAD/Changes -------------------------------------------------------------------------------- /Changes.old: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonycoz/imager/HEAD/Changes.old -------------------------------------------------------------------------------- /CountColor/.gitignore: -------------------------------------------------------------------------------- 1 | CountColor.c 2 | -------------------------------------------------------------------------------- /CountColor/CountColor.pm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonycoz/imager/HEAD/CountColor/CountColor.pm -------------------------------------------------------------------------------- /CountColor/CountColor.xs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonycoz/imager/HEAD/CountColor/CountColor.xs -------------------------------------------------------------------------------- /CountColor/Makefile.PL: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonycoz/imager/HEAD/CountColor/Makefile.PL -------------------------------------------------------------------------------- /CountColor/t/t00countcolor.t: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonycoz/imager/HEAD/CountColor/t/t00countcolor.t -------------------------------------------------------------------------------- /DynTest/.gitignore: -------------------------------------------------------------------------------- 1 | DynTest.c 2 | -------------------------------------------------------------------------------- /DynTest/DynTest.pm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonycoz/imager/HEAD/DynTest/DynTest.pm -------------------------------------------------------------------------------- /DynTest/DynTest.xs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonycoz/imager/HEAD/DynTest/DynTest.xs -------------------------------------------------------------------------------- /DynTest/Makefile.PL: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonycoz/imager/HEAD/DynTest/Makefile.PL -------------------------------------------------------------------------------- /DynTest/linstretch.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonycoz/imager/HEAD/DynTest/linstretch.c -------------------------------------------------------------------------------- /DynTest/t/t00dyntest.t: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonycoz/imager/HEAD/DynTest/t/t00dyntest.t -------------------------------------------------------------------------------- /FT2/.gitignore: -------------------------------------------------------------------------------- 1 | FT2.c 2 | -------------------------------------------------------------------------------- /FT2/Changes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonycoz/imager/HEAD/FT2/Changes -------------------------------------------------------------------------------- /FT2/FT2.pm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonycoz/imager/HEAD/FT2/FT2.pm -------------------------------------------------------------------------------- /FT2/FT2.xs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonycoz/imager/HEAD/FT2/FT2.xs -------------------------------------------------------------------------------- /FT2/MANIFEST: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonycoz/imager/HEAD/FT2/MANIFEST -------------------------------------------------------------------------------- /FT2/MANIFEST.SKIP: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonycoz/imager/HEAD/FT2/MANIFEST.SKIP -------------------------------------------------------------------------------- /FT2/Makefile.PL: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonycoz/imager/HEAD/FT2/Makefile.PL -------------------------------------------------------------------------------- /FT2/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonycoz/imager/HEAD/FT2/README -------------------------------------------------------------------------------- /FT2/fontfiles/ExistenceTest.afm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonycoz/imager/HEAD/FT2/fontfiles/ExistenceTest.afm -------------------------------------------------------------------------------- /FT2/fontfiles/ExistenceTest.pfb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonycoz/imager/HEAD/FT2/fontfiles/ExistenceTest.pfb -------------------------------------------------------------------------------- /FT2/fontfiles/ExistenceTest.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonycoz/imager/HEAD/FT2/fontfiles/ExistenceTest.ttf -------------------------------------------------------------------------------- /FT2/fontfiles/ImUgly.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonycoz/imager/HEAD/FT2/fontfiles/ImUgly.ttf -------------------------------------------------------------------------------- /FT2/fontfiles/MMOne.pfb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonycoz/imager/HEAD/FT2/fontfiles/MMOne.pfb -------------------------------------------------------------------------------- /FT2/fontfiles/NameTest.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonycoz/imager/HEAD/FT2/fontfiles/NameTest.ttf -------------------------------------------------------------------------------- /FT2/fontfiles/dodge.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonycoz/imager/HEAD/FT2/fontfiles/dodge.ttf -------------------------------------------------------------------------------- /FT2/freetyp2.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonycoz/imager/HEAD/FT2/freetyp2.c -------------------------------------------------------------------------------- /FT2/imft2.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonycoz/imager/HEAD/FT2/imft2.h -------------------------------------------------------------------------------- /FT2/inc/Devel/CheckLib.pm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonycoz/imager/HEAD/FT2/inc/Devel/CheckLib.pm -------------------------------------------------------------------------------- /FT2/t/t10ft2.t: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonycoz/imager/HEAD/FT2/t/t10ft2.t -------------------------------------------------------------------------------- /FT2/t/t20thread.t: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonycoz/imager/HEAD/FT2/t/t20thread.t -------------------------------------------------------------------------------- /FT2/t/t90std.t: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonycoz/imager/HEAD/FT2/t/t90std.t -------------------------------------------------------------------------------- /FT2/typemap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonycoz/imager/HEAD/FT2/typemap -------------------------------------------------------------------------------- /Flines/.gitignore: -------------------------------------------------------------------------------- 1 | Flines.c 2 | -------------------------------------------------------------------------------- /Flines/Flines.pm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonycoz/imager/HEAD/Flines/Flines.pm -------------------------------------------------------------------------------- /Flines/Flines.xs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonycoz/imager/HEAD/Flines/Flines.xs -------------------------------------------------------------------------------- /Flines/Makefile.PL: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonycoz/imager/HEAD/Flines/Makefile.PL -------------------------------------------------------------------------------- /Flines/t/t00flines.t: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonycoz/imager/HEAD/Flines/t/t00flines.t -------------------------------------------------------------------------------- /GIF/.gitignore: -------------------------------------------------------------------------------- 1 | GIF.c 2 | -------------------------------------------------------------------------------- /GIF/Changes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonycoz/imager/HEAD/GIF/Changes -------------------------------------------------------------------------------- /GIF/GIF.pm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonycoz/imager/HEAD/GIF/GIF.pm -------------------------------------------------------------------------------- /GIF/GIF.xs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonycoz/imager/HEAD/GIF/GIF.xs -------------------------------------------------------------------------------- /GIF/MANIFEST: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonycoz/imager/HEAD/GIF/MANIFEST -------------------------------------------------------------------------------- /GIF/MANIFEST.SKIP: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonycoz/imager/HEAD/GIF/MANIFEST.SKIP -------------------------------------------------------------------------------- /GIF/Makefile.PL: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonycoz/imager/HEAD/GIF/Makefile.PL -------------------------------------------------------------------------------- /GIF/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonycoz/imager/HEAD/GIF/README -------------------------------------------------------------------------------- /GIF/imgif.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonycoz/imager/HEAD/GIF/imgif.c -------------------------------------------------------------------------------- /GIF/imgif.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonycoz/imager/HEAD/GIF/imgif.h -------------------------------------------------------------------------------- /GIF/inc/Devel/CheckLib.pm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonycoz/imager/HEAD/GIF/inc/Devel/CheckLib.pm -------------------------------------------------------------------------------- /GIF/t/t10gif.t: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonycoz/imager/HEAD/GIF/t/t10gif.t -------------------------------------------------------------------------------- /GIF/t/t20new.t: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonycoz/imager/HEAD/GIF/t/t20new.t -------------------------------------------------------------------------------- /GIF/t/t30fixed.t: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonycoz/imager/HEAD/GIF/t/t30fixed.t -------------------------------------------------------------------------------- /GIF/t/t40limit.t: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonycoz/imager/HEAD/GIF/t/t40limit.t -------------------------------------------------------------------------------- /GIF/t/t50header.t: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonycoz/imager/HEAD/GIF/t/t50header.t -------------------------------------------------------------------------------- /GIF/testimg/badindex.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonycoz/imager/HEAD/GIF/testimg/badindex.gif -------------------------------------------------------------------------------- /GIF/testimg/bandw.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonycoz/imager/HEAD/GIF/testimg/bandw.gif -------------------------------------------------------------------------------- /GIF/testimg/expected.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonycoz/imager/HEAD/GIF/testimg/expected.gif -------------------------------------------------------------------------------- /GIF/testimg/loccmap.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonycoz/imager/HEAD/GIF/testimg/loccmap.gif -------------------------------------------------------------------------------- /GIF/testimg/nocmap.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonycoz/imager/HEAD/GIF/testimg/nocmap.gif -------------------------------------------------------------------------------- /GIF/testimg/scale.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonycoz/imager/HEAD/GIF/testimg/scale.gif -------------------------------------------------------------------------------- /GIF/testimg/scalei.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonycoz/imager/HEAD/GIF/testimg/scalei.gif -------------------------------------------------------------------------------- /GIF/testimg/screen2.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonycoz/imager/HEAD/GIF/testimg/screen2.gif -------------------------------------------------------------------------------- /GIF/testimg/screen3.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonycoz/imager/HEAD/GIF/testimg/screen3.gif -------------------------------------------------------------------------------- /GIF/testimg/trimgdesc.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonycoz/imager/HEAD/GIF/testimg/trimgdesc.gif -------------------------------------------------------------------------------- /GIF/testimg/trmiddesc.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonycoz/imager/HEAD/GIF/testimg/trmiddesc.gif -------------------------------------------------------------------------------- /GIF/testimg/zerocomm.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonycoz/imager/HEAD/GIF/testimg/zerocomm.gif -------------------------------------------------------------------------------- /ICO/.gitignore: -------------------------------------------------------------------------------- 1 | ICO.c 2 | -------------------------------------------------------------------------------- /ICO/ICO.pm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonycoz/imager/HEAD/ICO/ICO.pm -------------------------------------------------------------------------------- /ICO/ICO.xs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonycoz/imager/HEAD/ICO/ICO.xs -------------------------------------------------------------------------------- /ICO/Makefile.PL: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonycoz/imager/HEAD/ICO/Makefile.PL -------------------------------------------------------------------------------- /ICO/imicon.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonycoz/imager/HEAD/ICO/imicon.c -------------------------------------------------------------------------------- /ICO/imicon.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonycoz/imager/HEAD/ICO/imicon.h -------------------------------------------------------------------------------- /ICO/lib/Imager/File/CUR.pm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonycoz/imager/HEAD/ICO/lib/Imager/File/CUR.pm -------------------------------------------------------------------------------- /ICO/msicon.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonycoz/imager/HEAD/ICO/msicon.c -------------------------------------------------------------------------------- /ICO/msicon.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonycoz/imager/HEAD/ICO/msicon.h -------------------------------------------------------------------------------- /ICO/t/t10icon.t: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonycoz/imager/HEAD/ICO/t/t10icon.t -------------------------------------------------------------------------------- /ICO/t/t20readone.t: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonycoz/imager/HEAD/ICO/t/t20readone.t -------------------------------------------------------------------------------- /ICO/t/t21readmult.t: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonycoz/imager/HEAD/ICO/t/t21readmult.t -------------------------------------------------------------------------------- /ICO/t/t30cursor.t: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonycoz/imager/HEAD/ICO/t/t30cursor.t -------------------------------------------------------------------------------- /ICO/t/t40readcurone.t: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonycoz/imager/HEAD/ICO/t/t40readcurone.t -------------------------------------------------------------------------------- /ICO/t/t41curmultread.t: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonycoz/imager/HEAD/ICO/t/t41curmultread.t -------------------------------------------------------------------------------- /ICO/t/t50readfail.t: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonycoz/imager/HEAD/ICO/t/t50readfail.t -------------------------------------------------------------------------------- /ICO/t/t60writefail.t: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonycoz/imager/HEAD/ICO/t/t60writefail.t -------------------------------------------------------------------------------- /ICO/t/t70icosing.t: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonycoz/imager/HEAD/ICO/t/t70icosing.t -------------------------------------------------------------------------------- /ICO/t/t71icomult.t: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonycoz/imager/HEAD/ICO/t/t71icomult.t -------------------------------------------------------------------------------- /ICO/t/t72cursing.t: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonycoz/imager/HEAD/ICO/t/t72cursing.t -------------------------------------------------------------------------------- /ICO/t/t73curmult.t: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonycoz/imager/HEAD/ICO/t/t73curmult.t -------------------------------------------------------------------------------- /ICO/testimg/combo.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonycoz/imager/HEAD/ICO/testimg/combo.ico -------------------------------------------------------------------------------- /ICO/testimg/pal13232.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonycoz/imager/HEAD/ICO/testimg/pal13232.ico -------------------------------------------------------------------------------- /ICO/testimg/pal256.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonycoz/imager/HEAD/ICO/testimg/pal256.ico -------------------------------------------------------------------------------- /ICO/testimg/pal43232.cur: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonycoz/imager/HEAD/ICO/testimg/pal43232.cur -------------------------------------------------------------------------------- /ICO/testimg/pal43232.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonycoz/imager/HEAD/ICO/testimg/pal43232.ico -------------------------------------------------------------------------------- /ICO/testimg/pal43232.ppm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonycoz/imager/HEAD/ICO/testimg/pal43232.ppm -------------------------------------------------------------------------------- /ICO/testimg/pal83232.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonycoz/imager/HEAD/ICO/testimg/pal83232.ico -------------------------------------------------------------------------------- /ICO/testimg/pal83232.ppm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonycoz/imager/HEAD/ICO/testimg/pal83232.ppm -------------------------------------------------------------------------------- /ICO/testimg/rgb1616.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonycoz/imager/HEAD/ICO/testimg/rgb1616.ico -------------------------------------------------------------------------------- /ICO/testimg/rgba3232.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonycoz/imager/HEAD/ICO/testimg/rgba3232.ico -------------------------------------------------------------------------------- /ICO/testimg/rgba3232.ppm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonycoz/imager/HEAD/ICO/testimg/rgba3232.ppm -------------------------------------------------------------------------------- /Imager.pm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonycoz/imager/HEAD/Imager.pm -------------------------------------------------------------------------------- /Imager.xs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonycoz/imager/HEAD/Imager.xs -------------------------------------------------------------------------------- /JPEG/.gitignore: -------------------------------------------------------------------------------- 1 | JPEG.c 2 | -------------------------------------------------------------------------------- /JPEG/Changes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonycoz/imager/HEAD/JPEG/Changes -------------------------------------------------------------------------------- /JPEG/JPEG.pm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonycoz/imager/HEAD/JPEG/JPEG.pm -------------------------------------------------------------------------------- /JPEG/JPEG.xs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonycoz/imager/HEAD/JPEG/JPEG.xs -------------------------------------------------------------------------------- /JPEG/MANIFEST: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonycoz/imager/HEAD/JPEG/MANIFEST -------------------------------------------------------------------------------- /JPEG/MANIFEST.SKIP: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonycoz/imager/HEAD/JPEG/MANIFEST.SKIP -------------------------------------------------------------------------------- /JPEG/Makefile.PL: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonycoz/imager/HEAD/JPEG/Makefile.PL -------------------------------------------------------------------------------- /JPEG/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonycoz/imager/HEAD/JPEG/README -------------------------------------------------------------------------------- /JPEG/imjpeg.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonycoz/imager/HEAD/JPEG/imjpeg.c -------------------------------------------------------------------------------- /JPEG/imjpeg.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonycoz/imager/HEAD/JPEG/imjpeg.h -------------------------------------------------------------------------------- /JPEG/inc/Devel/CheckLib.pm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonycoz/imager/HEAD/JPEG/inc/Devel/CheckLib.pm -------------------------------------------------------------------------------- /JPEG/t/t00load.t: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonycoz/imager/HEAD/JPEG/t/t00load.t -------------------------------------------------------------------------------- /JPEG/t/t10jpeg.t: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonycoz/imager/HEAD/JPEG/t/t10jpeg.t -------------------------------------------------------------------------------- /JPEG/t/t20limit.t: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonycoz/imager/HEAD/JPEG/t/t20limit.t -------------------------------------------------------------------------------- /JPEG/testimg/209_yonge.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonycoz/imager/HEAD/JPEG/testimg/209_yonge.jpg -------------------------------------------------------------------------------- /JPEG/testimg/exiftest.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonycoz/imager/HEAD/JPEG/testimg/exiftest.jpg -------------------------------------------------------------------------------- /JPEG/testimg/scmyk.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonycoz/imager/HEAD/JPEG/testimg/scmyk.jpg -------------------------------------------------------------------------------- /JPEG/testimg/zerotype.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonycoz/imager/HEAD/JPEG/testimg/zerotype.jpg -------------------------------------------------------------------------------- /MANIFEST: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonycoz/imager/HEAD/MANIFEST -------------------------------------------------------------------------------- /MANIFEST.SKIP: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonycoz/imager/HEAD/MANIFEST.SKIP -------------------------------------------------------------------------------- /Makefile.PL: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonycoz/imager/HEAD/Makefile.PL -------------------------------------------------------------------------------- /Mandelbrot/.gitignore: -------------------------------------------------------------------------------- 1 | Mandelbrot.c -------------------------------------------------------------------------------- /Mandelbrot/Makefile.PL: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonycoz/imager/HEAD/Mandelbrot/Makefile.PL -------------------------------------------------------------------------------- /Mandelbrot/Mandelbrot.pm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonycoz/imager/HEAD/Mandelbrot/Mandelbrot.pm -------------------------------------------------------------------------------- /Mandelbrot/Mandelbrot.xs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonycoz/imager/HEAD/Mandelbrot/Mandelbrot.xs -------------------------------------------------------------------------------- /Mandelbrot/mandel.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonycoz/imager/HEAD/Mandelbrot/mandel.c -------------------------------------------------------------------------------- /Mandelbrot/t/t00mandel.t: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonycoz/imager/HEAD/Mandelbrot/t/t00mandel.t -------------------------------------------------------------------------------- /PNG/.gitignore: -------------------------------------------------------------------------------- 1 | PNG.c 2 | -------------------------------------------------------------------------------- /PNG/Changes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonycoz/imager/HEAD/PNG/Changes -------------------------------------------------------------------------------- /PNG/MANIFEST: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonycoz/imager/HEAD/PNG/MANIFEST -------------------------------------------------------------------------------- /PNG/MANIFEST.SKIP: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonycoz/imager/HEAD/PNG/MANIFEST.SKIP -------------------------------------------------------------------------------- /PNG/Makefile.PL: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonycoz/imager/HEAD/PNG/Makefile.PL -------------------------------------------------------------------------------- /PNG/PNG.pm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonycoz/imager/HEAD/PNG/PNG.pm -------------------------------------------------------------------------------- /PNG/PNG.xs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonycoz/imager/HEAD/PNG/PNG.xs -------------------------------------------------------------------------------- /PNG/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonycoz/imager/HEAD/PNG/README -------------------------------------------------------------------------------- /PNG/impng.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonycoz/imager/HEAD/PNG/impng.c -------------------------------------------------------------------------------- /PNG/impng.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonycoz/imager/HEAD/PNG/impng.h -------------------------------------------------------------------------------- /PNG/inc/Devel/CheckLib.pm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonycoz/imager/HEAD/PNG/inc/Devel/CheckLib.pm -------------------------------------------------------------------------------- /PNG/t/00load.t: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonycoz/imager/HEAD/PNG/t/00load.t -------------------------------------------------------------------------------- /PNG/t/10png.t: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonycoz/imager/HEAD/PNG/t/10png.t -------------------------------------------------------------------------------- /PNG/testimg/badcrc.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonycoz/imager/HEAD/PNG/testimg/badcrc.png -------------------------------------------------------------------------------- /PNG/testimg/bilevel.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonycoz/imager/HEAD/PNG/testimg/bilevel.png -------------------------------------------------------------------------------- /PNG/testimg/bipalette.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonycoz/imager/HEAD/PNG/testimg/bipalette.png -------------------------------------------------------------------------------- /PNG/testimg/comment.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonycoz/imager/HEAD/PNG/testimg/comment.png -------------------------------------------------------------------------------- /PNG/testimg/cover.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonycoz/imager/HEAD/PNG/testimg/cover.png -------------------------------------------------------------------------------- /PNG/testimg/cover16.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonycoz/imager/HEAD/PNG/testimg/cover16.png -------------------------------------------------------------------------------- /PNG/testimg/cover16i.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonycoz/imager/HEAD/PNG/testimg/cover16i.png -------------------------------------------------------------------------------- /PNG/testimg/coveri.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonycoz/imager/HEAD/PNG/testimg/coveri.png -------------------------------------------------------------------------------- /PNG/testimg/coverpal.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonycoz/imager/HEAD/PNG/testimg/coverpal.png -------------------------------------------------------------------------------- /PNG/testimg/coverpali.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonycoz/imager/HEAD/PNG/testimg/coverpali.png -------------------------------------------------------------------------------- /PNG/testimg/gray.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonycoz/imager/HEAD/PNG/testimg/gray.png -------------------------------------------------------------------------------- /PNG/testimg/graya.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonycoz/imager/HEAD/PNG/testimg/graya.png -------------------------------------------------------------------------------- /PNG/testimg/pal.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonycoz/imager/HEAD/PNG/testimg/pal.png -------------------------------------------------------------------------------- /PNG/testimg/palette.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonycoz/imager/HEAD/PNG/testimg/palette.png -------------------------------------------------------------------------------- /PNG/testimg/palette_out.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonycoz/imager/HEAD/PNG/testimg/palette_out.png -------------------------------------------------------------------------------- /PNG/testimg/paltrans.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonycoz/imager/HEAD/PNG/testimg/paltrans.png -------------------------------------------------------------------------------- /PNG/testimg/rgb16.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonycoz/imager/HEAD/PNG/testimg/rgb16.png -------------------------------------------------------------------------------- /PNG/testimg/rgb8.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonycoz/imager/HEAD/PNG/testimg/rgb8.png -------------------------------------------------------------------------------- /PNG/testimg/rgb8i.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonycoz/imager/HEAD/PNG/testimg/rgb8i.png -------------------------------------------------------------------------------- /README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonycoz/imager/HEAD/README -------------------------------------------------------------------------------- /SECURITY.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonycoz/imager/HEAD/SECURITY.md -------------------------------------------------------------------------------- /SGI/.gitignore: -------------------------------------------------------------------------------- 1 | SGI.c 2 | -------------------------------------------------------------------------------- /SGI/Makefile.PL: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonycoz/imager/HEAD/SGI/Makefile.PL -------------------------------------------------------------------------------- /SGI/SGI.pm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonycoz/imager/HEAD/SGI/SGI.pm -------------------------------------------------------------------------------- /SGI/SGI.xs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonycoz/imager/HEAD/SGI/SGI.xs -------------------------------------------------------------------------------- /SGI/imsgi.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonycoz/imager/HEAD/SGI/imsgi.c -------------------------------------------------------------------------------- /SGI/imsgi.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonycoz/imager/HEAD/SGI/imsgi.h -------------------------------------------------------------------------------- /SGI/t/00load.t: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonycoz/imager/HEAD/SGI/t/00load.t -------------------------------------------------------------------------------- /SGI/t/10read.t: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonycoz/imager/HEAD/SGI/t/10read.t -------------------------------------------------------------------------------- /SGI/t/20write.t: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonycoz/imager/HEAD/SGI/t/20write.t -------------------------------------------------------------------------------- /SGI/t/30limit.t: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonycoz/imager/HEAD/SGI/t/30limit.t -------------------------------------------------------------------------------- /SGI/testimg/rle.rgb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonycoz/imager/HEAD/SGI/testimg/rle.rgb -------------------------------------------------------------------------------- /SGI/testimg/rle12.rgb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonycoz/imager/HEAD/SGI/testimg/rle12.rgb -------------------------------------------------------------------------------- /SGI/testimg/rle16.rgb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonycoz/imager/HEAD/SGI/testimg/rle16.rgb -------------------------------------------------------------------------------- /SGI/testimg/rle6.rgb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonycoz/imager/HEAD/SGI/testimg/rle6.rgb -------------------------------------------------------------------------------- /SGI/testimg/rleagr.rgb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonycoz/imager/HEAD/SGI/testimg/rleagr.rgb -------------------------------------------------------------------------------- /SGI/testimg/verb.rgb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonycoz/imager/HEAD/SGI/testimg/verb.rgb -------------------------------------------------------------------------------- /SGI/testimg/verb12.rgb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonycoz/imager/HEAD/SGI/testimg/verb12.rgb -------------------------------------------------------------------------------- /SGI/testimg/verb16.rgb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonycoz/imager/HEAD/SGI/testimg/verb16.rgb -------------------------------------------------------------------------------- /SGI/testimg/verb6.rgb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonycoz/imager/HEAD/SGI/testimg/verb6.rgb -------------------------------------------------------------------------------- /STATUS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonycoz/imager/HEAD/STATUS -------------------------------------------------------------------------------- /T1/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonycoz/imager/HEAD/T1/.gitignore -------------------------------------------------------------------------------- /T1/Changes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonycoz/imager/HEAD/T1/Changes -------------------------------------------------------------------------------- /T1/MANIFEST: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonycoz/imager/HEAD/T1/MANIFEST -------------------------------------------------------------------------------- /T1/MANIFEST.SKIP: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonycoz/imager/HEAD/T1/MANIFEST.SKIP -------------------------------------------------------------------------------- /T1/Makefile.PL: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonycoz/imager/HEAD/T1/Makefile.PL -------------------------------------------------------------------------------- /T1/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonycoz/imager/HEAD/T1/README -------------------------------------------------------------------------------- /T1/T1.pm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonycoz/imager/HEAD/T1/T1.pm -------------------------------------------------------------------------------- /T1/T1.xs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonycoz/imager/HEAD/T1/T1.xs -------------------------------------------------------------------------------- /T1/fontfiles/ExistenceTest.afm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonycoz/imager/HEAD/T1/fontfiles/ExistenceTest.afm -------------------------------------------------------------------------------- /T1/fontfiles/ExistenceTest.pfb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonycoz/imager/HEAD/T1/fontfiles/ExistenceTest.pfb -------------------------------------------------------------------------------- /T1/fontfiles/SpaceTest.afm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonycoz/imager/HEAD/T1/fontfiles/SpaceTest.afm -------------------------------------------------------------------------------- /T1/fontfiles/SpaceTest.pfb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonycoz/imager/HEAD/T1/fontfiles/SpaceTest.pfb -------------------------------------------------------------------------------- /T1/fontfiles/dcr10.afm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonycoz/imager/HEAD/T1/fontfiles/dcr10.afm -------------------------------------------------------------------------------- /T1/fontfiles/dcr10.pfb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonycoz/imager/HEAD/T1/fontfiles/dcr10.pfb -------------------------------------------------------------------------------- /T1/imt1.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonycoz/imager/HEAD/T1/imt1.c -------------------------------------------------------------------------------- /T1/imt1.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonycoz/imager/HEAD/T1/imt1.h -------------------------------------------------------------------------------- /T1/inc/Devel/CheckLib.pm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonycoz/imager/HEAD/T1/inc/Devel/CheckLib.pm -------------------------------------------------------------------------------- /T1/t/t10type1.t: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonycoz/imager/HEAD/T1/t/t10type1.t -------------------------------------------------------------------------------- /T1/t/t20oo.t: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonycoz/imager/HEAD/T1/t/t20oo.t -------------------------------------------------------------------------------- /T1/t/t30thread.t: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonycoz/imager/HEAD/T1/t/t30thread.t -------------------------------------------------------------------------------- /T1/t/t90std.t: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonycoz/imager/HEAD/T1/t/t90std.t -------------------------------------------------------------------------------- /T1/typemap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonycoz/imager/HEAD/T1/typemap -------------------------------------------------------------------------------- /TIFF/.gitignore: -------------------------------------------------------------------------------- 1 | TIFF.c 2 | -------------------------------------------------------------------------------- /TIFF/Changes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonycoz/imager/HEAD/TIFF/Changes -------------------------------------------------------------------------------- /TIFF/MANIFEST: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonycoz/imager/HEAD/TIFF/MANIFEST -------------------------------------------------------------------------------- /TIFF/MANIFEST.SKIP: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonycoz/imager/HEAD/TIFF/MANIFEST.SKIP -------------------------------------------------------------------------------- /TIFF/Makefile.PL: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonycoz/imager/HEAD/TIFF/Makefile.PL -------------------------------------------------------------------------------- /TIFF/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonycoz/imager/HEAD/TIFF/README -------------------------------------------------------------------------------- /TIFF/TIFF.pm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonycoz/imager/HEAD/TIFF/TIFF.pm -------------------------------------------------------------------------------- /TIFF/TIFF.xs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonycoz/imager/HEAD/TIFF/TIFF.xs -------------------------------------------------------------------------------- /TIFF/imtiff.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonycoz/imager/HEAD/TIFF/imtiff.c -------------------------------------------------------------------------------- /TIFF/imtiff.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonycoz/imager/HEAD/TIFF/imtiff.h -------------------------------------------------------------------------------- /TIFF/inc/Devel/CheckLib.pm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonycoz/imager/HEAD/TIFF/inc/Devel/CheckLib.pm -------------------------------------------------------------------------------- /TIFF/t/10tiff.t: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonycoz/imager/HEAD/TIFF/t/10tiff.t -------------------------------------------------------------------------------- /TIFF/testimg/alpha.tif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonycoz/imager/HEAD/TIFF/testimg/alpha.tif -------------------------------------------------------------------------------- /TIFF/testimg/comp4.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonycoz/imager/HEAD/TIFF/testimg/comp4.bmp -------------------------------------------------------------------------------- /TIFF/testimg/comp4.tif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonycoz/imager/HEAD/TIFF/testimg/comp4.tif -------------------------------------------------------------------------------- /TIFF/testimg/comp4bad.tif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonycoz/imager/HEAD/TIFF/testimg/comp4bad.tif -------------------------------------------------------------------------------- /TIFF/testimg/comp4t.tif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonycoz/imager/HEAD/TIFF/testimg/comp4t.tif -------------------------------------------------------------------------------- /TIFF/testimg/comp8.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonycoz/imager/HEAD/TIFF/testimg/comp8.bmp -------------------------------------------------------------------------------- /TIFF/testimg/comp8.tif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonycoz/imager/HEAD/TIFF/testimg/comp8.tif -------------------------------------------------------------------------------- /TIFF/testimg/gralpha.tif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonycoz/imager/HEAD/TIFF/testimg/gralpha.tif -------------------------------------------------------------------------------- /TIFF/testimg/grey16.tif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonycoz/imager/HEAD/TIFF/testimg/grey16.tif -------------------------------------------------------------------------------- /TIFF/testimg/grey16sg.tif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonycoz/imager/HEAD/TIFF/testimg/grey16sg.tif -------------------------------------------------------------------------------- /TIFF/testimg/grey32.tif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonycoz/imager/HEAD/TIFF/testimg/grey32.tif -------------------------------------------------------------------------------- /TIFF/testimg/imager.pbm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonycoz/imager/HEAD/TIFF/testimg/imager.pbm -------------------------------------------------------------------------------- /TIFF/testimg/imager.tif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonycoz/imager/HEAD/TIFF/testimg/imager.tif -------------------------------------------------------------------------------- /TIFF/testimg/pengtile.tif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonycoz/imager/HEAD/TIFF/testimg/pengtile.tif -------------------------------------------------------------------------------- /TIFF/testimg/penguin-base.ppm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonycoz/imager/HEAD/TIFF/testimg/penguin-base.ppm -------------------------------------------------------------------------------- /TIFF/testimg/rgb16.tif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonycoz/imager/HEAD/TIFF/testimg/rgb16.tif -------------------------------------------------------------------------------- /TIFF/testimg/rgb16t.tif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonycoz/imager/HEAD/TIFF/testimg/rgb16t.tif -------------------------------------------------------------------------------- /TIFF/testimg/rgbatsep.tif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonycoz/imager/HEAD/TIFF/testimg/rgbatsep.tif -------------------------------------------------------------------------------- /TIFF/testimg/scmyk.tif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonycoz/imager/HEAD/TIFF/testimg/scmyk.tif -------------------------------------------------------------------------------- /TIFF/testimg/scmyka.tif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonycoz/imager/HEAD/TIFF/testimg/scmyka.tif -------------------------------------------------------------------------------- /TIFF/testimg/scmyka16.tif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonycoz/imager/HEAD/TIFF/testimg/scmyka16.tif -------------------------------------------------------------------------------- /TIFF/testimg/scmykaa.tif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonycoz/imager/HEAD/TIFF/testimg/scmykaa.tif -------------------------------------------------------------------------------- /TIFF/testimg/slab.tif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonycoz/imager/HEAD/TIFF/testimg/slab.tif -------------------------------------------------------------------------------- /TIFF/testimg/srgb.tif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonycoz/imager/HEAD/TIFF/testimg/srgb.tif -------------------------------------------------------------------------------- /TIFF/testimg/srgba.tif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonycoz/imager/HEAD/TIFF/testimg/srgba.tif -------------------------------------------------------------------------------- /TIFF/testimg/srgba16.tif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonycoz/imager/HEAD/TIFF/testimg/srgba16.tif -------------------------------------------------------------------------------- /TIFF/testimg/srgba32.tif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonycoz/imager/HEAD/TIFF/testimg/srgba32.tif -------------------------------------------------------------------------------- /TIFF/testimg/srgba32f.tif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonycoz/imager/HEAD/TIFF/testimg/srgba32f.tif -------------------------------------------------------------------------------- /TIFF/testimg/srgbaa.tif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonycoz/imager/HEAD/TIFF/testimg/srgbaa.tif -------------------------------------------------------------------------------- /TIFF/testimg/tiffwarn.tif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonycoz/imager/HEAD/TIFF/testimg/tiffwarn.tif -------------------------------------------------------------------------------- /TODO: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonycoz/imager/HEAD/TODO -------------------------------------------------------------------------------- /W32/.gitignore: -------------------------------------------------------------------------------- 1 | W32.c 2 | -------------------------------------------------------------------------------- /W32/Changes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonycoz/imager/HEAD/W32/Changes -------------------------------------------------------------------------------- /W32/MANIFEST: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonycoz/imager/HEAD/W32/MANIFEST -------------------------------------------------------------------------------- /W32/MANIFEST.SKIP: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonycoz/imager/HEAD/W32/MANIFEST.SKIP -------------------------------------------------------------------------------- /W32/Makefile.PL: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonycoz/imager/HEAD/W32/Makefile.PL -------------------------------------------------------------------------------- /W32/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonycoz/imager/HEAD/W32/README -------------------------------------------------------------------------------- /W32/W32.pm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonycoz/imager/HEAD/W32/W32.pm -------------------------------------------------------------------------------- /W32/W32.xs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonycoz/imager/HEAD/W32/W32.xs -------------------------------------------------------------------------------- /W32/fontfiles/ExistenceTest.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonycoz/imager/HEAD/W32/fontfiles/ExistenceTest.ttf -------------------------------------------------------------------------------- /W32/imw32.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonycoz/imager/HEAD/W32/imw32.h -------------------------------------------------------------------------------- /W32/inc/Devel/CheckLib.pm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonycoz/imager/HEAD/W32/inc/Devel/CheckLib.pm -------------------------------------------------------------------------------- /W32/lib/Imager/Font/Win32.pm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonycoz/imager/HEAD/W32/lib/Imager/Font/Win32.pm -------------------------------------------------------------------------------- /W32/t/t10win32.t: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonycoz/imager/HEAD/W32/t/t10win32.t -------------------------------------------------------------------------------- /W32/t/t90std.t: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonycoz/imager/HEAD/W32/t/t90std.t -------------------------------------------------------------------------------- /W32/win32.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonycoz/imager/HEAD/W32/win32.c -------------------------------------------------------------------------------- /adobe.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonycoz/imager/HEAD/adobe.txt -------------------------------------------------------------------------------- /announce/0.44.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonycoz/imager/HEAD/announce/0.44.txt -------------------------------------------------------------------------------- /announce/0.45.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonycoz/imager/HEAD/announce/0.45.txt -------------------------------------------------------------------------------- /announce/0.52.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonycoz/imager/HEAD/announce/0.52.txt -------------------------------------------------------------------------------- /announce/0.54.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonycoz/imager/HEAD/announce/0.54.txt -------------------------------------------------------------------------------- /announce/0.55.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonycoz/imager/HEAD/announce/0.55.txt -------------------------------------------------------------------------------- /announce/0.57.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonycoz/imager/HEAD/announce/0.57.txt -------------------------------------------------------------------------------- /apidocs.perl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonycoz/imager/HEAD/apidocs.perl -------------------------------------------------------------------------------- /bench/.cvsignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonycoz/imager/HEAD/bench/.cvsignore -------------------------------------------------------------------------------- /bench/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonycoz/imager/HEAD/bench/.gitignore -------------------------------------------------------------------------------- /bench/benchform.perl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonycoz/imager/HEAD/bench/benchform.perl -------------------------------------------------------------------------------- /bench/box.pl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonycoz/imager/HEAD/bench/box.pl -------------------------------------------------------------------------------- /bench/circlef.pl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonycoz/imager/HEAD/bench/circlef.pl -------------------------------------------------------------------------------- /bench/convert.pl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonycoz/imager/HEAD/bench/convert.pl -------------------------------------------------------------------------------- /bench/copy.bench: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonycoz/imager/HEAD/bench/copy.bench -------------------------------------------------------------------------------- /bench/gifthread.pl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonycoz/imager/HEAD/bench/gifthread.pl -------------------------------------------------------------------------------- /bench/kscdisplay.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonycoz/imager/HEAD/bench/kscdisplay.png -------------------------------------------------------------------------------- /bench/largish.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonycoz/imager/HEAD/bench/largish.jpg -------------------------------------------------------------------------------- /bench/makegrad.perl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonycoz/imager/HEAD/bench/makegrad.perl -------------------------------------------------------------------------------- /bench/quantbench.perl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonycoz/imager/HEAD/bench/quantbench.perl -------------------------------------------------------------------------------- /bench/quantone.perl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonycoz/imager/HEAD/bench/quantone.perl -------------------------------------------------------------------------------- /bench/scale.perl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonycoz/imager/HEAD/bench/scale.perl -------------------------------------------------------------------------------- /bench/scale.sh.perl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonycoz/imager/HEAD/bench/scale.sh.perl -------------------------------------------------------------------------------- /bench/scalebench: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonycoz/imager/HEAD/bench/scalebench -------------------------------------------------------------------------------- /bench/tifthread.pl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonycoz/imager/HEAD/bench/tifthread.pl -------------------------------------------------------------------------------- /bench/transbench.perl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonycoz/imager/HEAD/bench/transbench.perl -------------------------------------------------------------------------------- /bigtest.perl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonycoz/imager/HEAD/bigtest.perl -------------------------------------------------------------------------------- /bmp.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonycoz/imager/HEAD/bmp.c -------------------------------------------------------------------------------- /color.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonycoz/imager/HEAD/color.c -------------------------------------------------------------------------------- /combine.im: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonycoz/imager/HEAD/combine.im -------------------------------------------------------------------------------- /compose.im: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonycoz/imager/HEAD/compose.im -------------------------------------------------------------------------------- /context.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonycoz/imager/HEAD/context.c -------------------------------------------------------------------------------- /conv.im: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonycoz/imager/HEAD/conv.im -------------------------------------------------------------------------------- /convert.im: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonycoz/imager/HEAD/convert.im -------------------------------------------------------------------------------- /datatypes.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonycoz/imager/HEAD/datatypes.c -------------------------------------------------------------------------------- /design/aascan.ps: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonycoz/imager/HEAD/design/aascan.ps -------------------------------------------------------------------------------- /design/cmyktorgb.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonycoz/imager/HEAD/design/cmyktorgb.txt -------------------------------------------------------------------------------- /design/colmatrix.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonycoz/imager/HEAD/design/colmatrix.txt -------------------------------------------------------------------------------- /design/doclayout.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonycoz/imager/HEAD/design/doclayout.txt -------------------------------------------------------------------------------- /design/draw.pod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonycoz/imager/HEAD/design/draw.pod -------------------------------------------------------------------------------- /design/fax.diff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonycoz/imager/HEAD/design/fax.diff -------------------------------------------------------------------------------- /design/fontlayout.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonycoz/imager/HEAD/design/fontlayout.txt -------------------------------------------------------------------------------- /design/incomplete.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonycoz/imager/HEAD/design/incomplete.txt -------------------------------------------------------------------------------- /design/linevsfill.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonycoz/imager/HEAD/design/linevsfill.txt -------------------------------------------------------------------------------- /design/represent.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonycoz/imager/HEAD/design/represent.txt -------------------------------------------------------------------------------- /design/tags.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonycoz/imager/HEAD/design/tags.txt -------------------------------------------------------------------------------- /design/unsharp_mask.txt: -------------------------------------------------------------------------------- 1 | Just a URL: 2 | 3 | http://www.photo.net/bboard/q-and-a-fetch-msg?msg_id=000Qi5 4 | -------------------------------------------------------------------------------- /doco.perl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonycoz/imager/HEAD/doco.perl -------------------------------------------------------------------------------- /draw.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonycoz/imager/HEAD/draw.c -------------------------------------------------------------------------------- /draw.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonycoz/imager/HEAD/draw.h -------------------------------------------------------------------------------- /dynaload.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonycoz/imager/HEAD/dynaload.c -------------------------------------------------------------------------------- /dynaload.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonycoz/imager/HEAD/dynaload.h -------------------------------------------------------------------------------- /dynfilt/.cvsignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonycoz/imager/HEAD/dynfilt/.cvsignore -------------------------------------------------------------------------------- /dynfilt/.gitignore: -------------------------------------------------------------------------------- 1 | *.so 2 | *.dylib 3 | -------------------------------------------------------------------------------- /dynfilt/Makefile.PL: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonycoz/imager/HEAD/dynfilt/Makefile.PL -------------------------------------------------------------------------------- /dynfilt/compile.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonycoz/imager/HEAD/dynfilt/compile.txt -------------------------------------------------------------------------------- /dynfilt/dt2.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonycoz/imager/HEAD/dynfilt/dt2.c -------------------------------------------------------------------------------- /dynfilt/dt2.exp: -------------------------------------------------------------------------------- 1 | function_list 2 | evalstr 3 | install_tables 4 | 5 | -------------------------------------------------------------------------------- /dynfilt/dyntest.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonycoz/imager/HEAD/dynfilt/dyntest.c -------------------------------------------------------------------------------- /dynfilt/dyntest.exp: -------------------------------------------------------------------------------- 1 | function_list 2 | evalstr 3 | install_tables 4 | 5 | -------------------------------------------------------------------------------- /dynfilt/flines.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonycoz/imager/HEAD/dynfilt/flines.c -------------------------------------------------------------------------------- /dynfilt/flines.exp: -------------------------------------------------------------------------------- 1 | function_list 2 | evalstr 3 | install_tables 4 | 5 | -------------------------------------------------------------------------------- /dynfilt/mandelbrot.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonycoz/imager/HEAD/dynfilt/mandelbrot.c -------------------------------------------------------------------------------- /dynfilt/mandelbrot.exp: -------------------------------------------------------------------------------- 1 | function_list 2 | evalstr 3 | install_tables 4 | 5 | -------------------------------------------------------------------------------- /dynfilt/pluginst.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonycoz/imager/HEAD/dynfilt/pluginst.h -------------------------------------------------------------------------------- /dynfilt/t/t60dyntest.t: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonycoz/imager/HEAD/dynfilt/t/t60dyntest.t -------------------------------------------------------------------------------- /errep.perl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonycoz/imager/HEAD/errep.perl -------------------------------------------------------------------------------- /error.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonycoz/imager/HEAD/error.c -------------------------------------------------------------------------------- /ext.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonycoz/imager/HEAD/ext.h -------------------------------------------------------------------------------- /extraimages/slide0005_image006.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonycoz/imager/HEAD/extraimages/slide0005_image006.gif -------------------------------------------------------------------------------- /feat.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonycoz/imager/HEAD/feat.c -------------------------------------------------------------------------------- /feat.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonycoz/imager/HEAD/feat.h -------------------------------------------------------------------------------- /fileformatdocs/SGIIMAGESPEC.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonycoz/imager/HEAD/fileformatdocs/SGIIMAGESPEC.txt -------------------------------------------------------------------------------- /fileformatdocs/bmp.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonycoz/imager/HEAD/fileformatdocs/bmp.txt -------------------------------------------------------------------------------- /fileformatdocs/bmpdump.pl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonycoz/imager/HEAD/fileformatdocs/bmpdump.pl -------------------------------------------------------------------------------- /fileformatdocs/itu-t81.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonycoz/imager/HEAD/fileformatdocs/itu-t81.pdf -------------------------------------------------------------------------------- /fileformatdocs/jfif3.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonycoz/imager/HEAD/fileformatdocs/jfif3.pdf -------------------------------------------------------------------------------- /fileformatdocs/jpegdump.pl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonycoz/imager/HEAD/fileformatdocs/jpegdump.pl -------------------------------------------------------------------------------- /fileformatdocs/other.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonycoz/imager/HEAD/fileformatdocs/other.txt -------------------------------------------------------------------------------- /fileformatdocs/pngdump.pl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonycoz/imager/HEAD/fileformatdocs/pngdump.pl -------------------------------------------------------------------------------- /fileformatdocs/sgiimage-1.00.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonycoz/imager/HEAD/fileformatdocs/sgiimage-1.00.html -------------------------------------------------------------------------------- /fileformatdocs/spec-gif89a.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonycoz/imager/HEAD/fileformatdocs/spec-gif89a.txt -------------------------------------------------------------------------------- /fileformatdocs/tga_specs.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonycoz/imager/HEAD/fileformatdocs/tga_specs.pdf -------------------------------------------------------------------------------- /fileformatdocs/tgaffs.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonycoz/imager/HEAD/fileformatdocs/tgaffs.pdf -------------------------------------------------------------------------------- /fileformatdocs/tiffsigned.pl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonycoz/imager/HEAD/fileformatdocs/tiffsigned.pl -------------------------------------------------------------------------------- /fills.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonycoz/imager/HEAD/fills.c -------------------------------------------------------------------------------- /filterlist.perl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonycoz/imager/HEAD/filterlist.perl -------------------------------------------------------------------------------- /filters.im: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonycoz/imager/HEAD/filters.im -------------------------------------------------------------------------------- /flip.im: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonycoz/imager/HEAD/flip.im -------------------------------------------------------------------------------- /fontfiles/ExistenceTest.sfd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonycoz/imager/HEAD/fontfiles/ExistenceTest.sfd -------------------------------------------------------------------------------- /fontfiles/ExistenceTest.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonycoz/imager/HEAD/fontfiles/ExistenceTest.ttf -------------------------------------------------------------------------------- /fontfiles/ImUgly.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonycoz/imager/HEAD/fontfiles/ImUgly.ttf -------------------------------------------------------------------------------- /fontfiles/NameTest.sfd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonycoz/imager/HEAD/fontfiles/NameTest.sfd -------------------------------------------------------------------------------- /fontfiles/NameTest.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonycoz/imager/HEAD/fontfiles/NameTest.ttf -------------------------------------------------------------------------------- /fontfiles/SpaceTest.sfd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonycoz/imager/HEAD/fontfiles/SpaceTest.sfd -------------------------------------------------------------------------------- /fontfiles/dodge.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonycoz/imager/HEAD/fontfiles/dodge.ttf -------------------------------------------------------------------------------- /fontft1.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonycoz/imager/HEAD/fontft1.c -------------------------------------------------------------------------------- /fuzz/fuzz.pl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonycoz/imager/HEAD/fuzz/fuzz.pl -------------------------------------------------------------------------------- /gaussian.im: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonycoz/imager/HEAD/gaussian.im -------------------------------------------------------------------------------- /hlines.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonycoz/imager/HEAD/hlines.c -------------------------------------------------------------------------------- /image.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonycoz/imager/HEAD/image.c -------------------------------------------------------------------------------- /imager.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonycoz/imager/HEAD/imager.h -------------------------------------------------------------------------------- /imageri.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonycoz/imager/HEAD/imageri.h -------------------------------------------------------------------------------- /imcover.perl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonycoz/imager/HEAD/imcover.perl -------------------------------------------------------------------------------- /imdatatypes.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonycoz/imager/HEAD/imdatatypes.h -------------------------------------------------------------------------------- /imerror.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonycoz/imager/HEAD/imerror.h -------------------------------------------------------------------------------- /imexif.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonycoz/imager/HEAD/imexif.c -------------------------------------------------------------------------------- /imexif.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonycoz/imager/HEAD/imexif.h -------------------------------------------------------------------------------- /imext.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonycoz/imager/HEAD/imext.c -------------------------------------------------------------------------------- /imext.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonycoz/imager/HEAD/imext.h -------------------------------------------------------------------------------- /imextdef.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonycoz/imager/HEAD/imextdef.h -------------------------------------------------------------------------------- /imextpl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonycoz/imager/HEAD/imextpl.h -------------------------------------------------------------------------------- /imextpltypes.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonycoz/imager/HEAD/imextpltypes.h -------------------------------------------------------------------------------- /imexttypes.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonycoz/imager/HEAD/imexttypes.h -------------------------------------------------------------------------------- /img16.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonycoz/imager/HEAD/img16.c -------------------------------------------------------------------------------- /img8.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonycoz/imager/HEAD/img8.c -------------------------------------------------------------------------------- /imgdouble.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonycoz/imager/HEAD/imgdouble.c -------------------------------------------------------------------------------- /imio.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonycoz/imager/HEAD/imio.h -------------------------------------------------------------------------------- /immacros.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonycoz/imager/HEAD/immacros.h -------------------------------------------------------------------------------- /imperl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonycoz/imager/HEAD/imperl.h -------------------------------------------------------------------------------- /imperlio.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonycoz/imager/HEAD/imperlio.h -------------------------------------------------------------------------------- /imrender.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonycoz/imager/HEAD/imrender.h -------------------------------------------------------------------------------- /inc/Devel/CheckLib.pm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonycoz/imager/HEAD/inc/Devel/CheckLib.pm -------------------------------------------------------------------------------- /io.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonycoz/imager/HEAD/io.c -------------------------------------------------------------------------------- /iolayer.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonycoz/imager/HEAD/iolayer.c -------------------------------------------------------------------------------- /iolayer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonycoz/imager/HEAD/iolayer.h -------------------------------------------------------------------------------- /iolayert.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonycoz/imager/HEAD/iolayert.h -------------------------------------------------------------------------------- /lib/Imager/API.pod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonycoz/imager/HEAD/lib/Imager/API.pod -------------------------------------------------------------------------------- /lib/Imager/APIRef.pod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonycoz/imager/HEAD/lib/Imager/APIRef.pod -------------------------------------------------------------------------------- /lib/Imager/Color.pm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonycoz/imager/HEAD/lib/Imager/Color.pm -------------------------------------------------------------------------------- /lib/Imager/Color/Float.pm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonycoz/imager/HEAD/lib/Imager/Color/Float.pm -------------------------------------------------------------------------------- /lib/Imager/Color/Table.pm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonycoz/imager/HEAD/lib/Imager/Color/Table.pm -------------------------------------------------------------------------------- /lib/Imager/Cookbook.pod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonycoz/imager/HEAD/lib/Imager/Cookbook.pod -------------------------------------------------------------------------------- /lib/Imager/Draw.pod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonycoz/imager/HEAD/lib/Imager/Draw.pod -------------------------------------------------------------------------------- /lib/Imager/Engines.pod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonycoz/imager/HEAD/lib/Imager/Engines.pod -------------------------------------------------------------------------------- /lib/Imager/Expr.pm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonycoz/imager/HEAD/lib/Imager/Expr.pm -------------------------------------------------------------------------------- /lib/Imager/Expr/Assem.pm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonycoz/imager/HEAD/lib/Imager/Expr/Assem.pm -------------------------------------------------------------------------------- /lib/Imager/ExtUtils.pm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonycoz/imager/HEAD/lib/Imager/ExtUtils.pm -------------------------------------------------------------------------------- /lib/Imager/Files.pod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonycoz/imager/HEAD/lib/Imager/Files.pod -------------------------------------------------------------------------------- /lib/Imager/Fill.pm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonycoz/imager/HEAD/lib/Imager/Fill.pm -------------------------------------------------------------------------------- /lib/Imager/Filters.pod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonycoz/imager/HEAD/lib/Imager/Filters.pod -------------------------------------------------------------------------------- /lib/Imager/Font.pm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonycoz/imager/HEAD/lib/Imager/Font.pm -------------------------------------------------------------------------------- /lib/Imager/Font/BBox.pm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonycoz/imager/HEAD/lib/Imager/Font/BBox.pm -------------------------------------------------------------------------------- /lib/Imager/Font/FreeType2.pm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonycoz/imager/HEAD/lib/Imager/Font/FreeType2.pm -------------------------------------------------------------------------------- /lib/Imager/Font/Image.pm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonycoz/imager/HEAD/lib/Imager/Font/Image.pm -------------------------------------------------------------------------------- /lib/Imager/Font/Test.pm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonycoz/imager/HEAD/lib/Imager/Font/Test.pm -------------------------------------------------------------------------------- /lib/Imager/Font/Truetype.pm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonycoz/imager/HEAD/lib/Imager/Font/Truetype.pm -------------------------------------------------------------------------------- /lib/Imager/Font/Type1.pm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonycoz/imager/HEAD/lib/Imager/Font/Type1.pm -------------------------------------------------------------------------------- /lib/Imager/Font/Wrap.pm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonycoz/imager/HEAD/lib/Imager/Font/Wrap.pm -------------------------------------------------------------------------------- /lib/Imager/Fountain.pm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonycoz/imager/HEAD/lib/Imager/Fountain.pm -------------------------------------------------------------------------------- /lib/Imager/Handy.pod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonycoz/imager/HEAD/lib/Imager/Handy.pod -------------------------------------------------------------------------------- /lib/Imager/IO.pod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonycoz/imager/HEAD/lib/Imager/IO.pod -------------------------------------------------------------------------------- /lib/Imager/ImageTypes.pod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonycoz/imager/HEAD/lib/Imager/ImageTypes.pod -------------------------------------------------------------------------------- /lib/Imager/Inline.pod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonycoz/imager/HEAD/lib/Imager/Inline.pod -------------------------------------------------------------------------------- /lib/Imager/Install.pod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonycoz/imager/HEAD/lib/Imager/Install.pod -------------------------------------------------------------------------------- /lib/Imager/LargeSamples.pod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonycoz/imager/HEAD/lib/Imager/LargeSamples.pod -------------------------------------------------------------------------------- /lib/Imager/Matrix2d.pm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonycoz/imager/HEAD/lib/Imager/Matrix2d.pm -------------------------------------------------------------------------------- /lib/Imager/Preprocess.pm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonycoz/imager/HEAD/lib/Imager/Preprocess.pm -------------------------------------------------------------------------------- /lib/Imager/Probe.pm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonycoz/imager/HEAD/lib/Imager/Probe.pm -------------------------------------------------------------------------------- /lib/Imager/Regops.pm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonycoz/imager/HEAD/lib/Imager/Regops.pm -------------------------------------------------------------------------------- /lib/Imager/Security.pod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonycoz/imager/HEAD/lib/Imager/Security.pod -------------------------------------------------------------------------------- /lib/Imager/Test.pm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonycoz/imager/HEAD/lib/Imager/Test.pm -------------------------------------------------------------------------------- /lib/Imager/Threads.pod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonycoz/imager/HEAD/lib/Imager/Threads.pod -------------------------------------------------------------------------------- /lib/Imager/Transform.pm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonycoz/imager/HEAD/lib/Imager/Transform.pm -------------------------------------------------------------------------------- /lib/Imager/Transformations.pod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonycoz/imager/HEAD/lib/Imager/Transformations.pod -------------------------------------------------------------------------------- /lib/Imager/TrimColorList.pm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonycoz/imager/HEAD/lib/Imager/TrimColorList.pm -------------------------------------------------------------------------------- /lib/Imager/Tutorial.pod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonycoz/imager/HEAD/lib/Imager/Tutorial.pod -------------------------------------------------------------------------------- /lib/Imager/interface.pod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonycoz/imager/HEAD/lib/Imager/interface.pod -------------------------------------------------------------------------------- /lib/Imager/regmach.pod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonycoz/imager/HEAD/lib/Imager/regmach.pod -------------------------------------------------------------------------------- /limits.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonycoz/imager/HEAD/limits.c -------------------------------------------------------------------------------- /log.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonycoz/imager/HEAD/log.c -------------------------------------------------------------------------------- /log.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonycoz/imager/HEAD/log.h -------------------------------------------------------------------------------- /map.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonycoz/imager/HEAD/map.c -------------------------------------------------------------------------------- /maskimg.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonycoz/imager/HEAD/maskimg.c -------------------------------------------------------------------------------- /mutexnull.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonycoz/imager/HEAD/mutexnull.c -------------------------------------------------------------------------------- /mutexpthr.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonycoz/imager/HEAD/mutexpthr.c -------------------------------------------------------------------------------- /mutexwin.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonycoz/imager/HEAD/mutexwin.c -------------------------------------------------------------------------------- /palimg.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonycoz/imager/HEAD/palimg.c -------------------------------------------------------------------------------- /paste.im: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonycoz/imager/HEAD/paste.im -------------------------------------------------------------------------------- /perlio.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonycoz/imager/HEAD/perlio.c -------------------------------------------------------------------------------- /plug.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonycoz/imager/HEAD/plug.h -------------------------------------------------------------------------------- /pnm.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonycoz/imager/HEAD/pnm.c -------------------------------------------------------------------------------- /polygon.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonycoz/imager/HEAD/polygon.c -------------------------------------------------------------------------------- /ppport.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonycoz/imager/HEAD/ppport.h -------------------------------------------------------------------------------- /quant.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonycoz/imager/HEAD/quant.c -------------------------------------------------------------------------------- /raw.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonycoz/imager/HEAD/raw.c -------------------------------------------------------------------------------- /regmach.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonycoz/imager/HEAD/regmach.c -------------------------------------------------------------------------------- /regmach.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonycoz/imager/HEAD/regmach.h -------------------------------------------------------------------------------- /regops.perl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonycoz/imager/HEAD/regops.perl -------------------------------------------------------------------------------- /render.im: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonycoz/imager/HEAD/render.im -------------------------------------------------------------------------------- /rendert.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonycoz/imager/HEAD/rendert.h -------------------------------------------------------------------------------- /rotate.im: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonycoz/imager/HEAD/rotate.im -------------------------------------------------------------------------------- /rubthru.im: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonycoz/imager/HEAD/rubthru.im -------------------------------------------------------------------------------- /samples/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonycoz/imager/HEAD/samples/README -------------------------------------------------------------------------------- /samples/align-string.pl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonycoz/imager/HEAD/samples/align-string.pl -------------------------------------------------------------------------------- /samples/anaglyph.pl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonycoz/imager/HEAD/samples/anaglyph.pl -------------------------------------------------------------------------------- /samples/border.pl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonycoz/imager/HEAD/samples/border.pl -------------------------------------------------------------------------------- /samples/combines.pl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonycoz/imager/HEAD/samples/combines.pl -------------------------------------------------------------------------------- /samples/drop_shadow.pl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonycoz/imager/HEAD/samples/drop_shadow.pl -------------------------------------------------------------------------------- /samples/flasher.pl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonycoz/imager/HEAD/samples/flasher.pl -------------------------------------------------------------------------------- /samples/gifscale.pl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonycoz/imager/HEAD/samples/gifscale.pl -------------------------------------------------------------------------------- /samples/hatches.pl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonycoz/imager/HEAD/samples/hatches.pl -------------------------------------------------------------------------------- /samples/inline_capture2image.pl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonycoz/imager/HEAD/samples/inline_capture2image.pl -------------------------------------------------------------------------------- /samples/inline_replace_color.pl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonycoz/imager/HEAD/samples/inline_replace_color.pl -------------------------------------------------------------------------------- /samples/interleave.pl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonycoz/imager/HEAD/samples/interleave.pl -------------------------------------------------------------------------------- /samples/logo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonycoz/imager/HEAD/samples/logo -------------------------------------------------------------------------------- /samples/quad_to_square.pl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonycoz/imager/HEAD/samples/quad_to_square.pl -------------------------------------------------------------------------------- /samples/replace_color.pl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonycoz/imager/HEAD/samples/replace_color.pl -------------------------------------------------------------------------------- /samples/samp-form.cgi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonycoz/imager/HEAD/samples/samp-form.cgi -------------------------------------------------------------------------------- /samples/samp-image.cgi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonycoz/imager/HEAD/samples/samp-image.cgi -------------------------------------------------------------------------------- /samples/samp-scale.cgi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonycoz/imager/HEAD/samples/samp-scale.cgi -------------------------------------------------------------------------------- /samples/samp-scale.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonycoz/imager/HEAD/samples/samp-scale.html -------------------------------------------------------------------------------- /samples/samp-tags.cgi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonycoz/imager/HEAD/samples/samp-tags.cgi -------------------------------------------------------------------------------- /samples/samp-tags.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonycoz/imager/HEAD/samples/samp-tags.html -------------------------------------------------------------------------------- /samples/slant_text.pl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonycoz/imager/HEAD/samples/slant_text.pl -------------------------------------------------------------------------------- /samples/tk-photo.pl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonycoz/imager/HEAD/samples/tk-photo.pl -------------------------------------------------------------------------------- /samples/transform.pl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonycoz/imager/HEAD/samples/transform.pl -------------------------------------------------------------------------------- /samples/transform1.ppm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonycoz/imager/HEAD/samples/transform1.ppm -------------------------------------------------------------------------------- /samples/wiggle.pl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonycoz/imager/HEAD/samples/wiggle.pl -------------------------------------------------------------------------------- /scale.im: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonycoz/imager/HEAD/scale.im -------------------------------------------------------------------------------- /spot.perl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonycoz/imager/HEAD/spot.perl -------------------------------------------------------------------------------- /stackmach.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonycoz/imager/HEAD/stackmach.c -------------------------------------------------------------------------------- /stackmach.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonycoz/imager/HEAD/stackmach.h -------------------------------------------------------------------------------- /t/000-load.t: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonycoz/imager/HEAD/t/000-load.t -------------------------------------------------------------------------------- /t/100-base/010-introvert.t: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonycoz/imager/HEAD/t/100-base/010-introvert.t -------------------------------------------------------------------------------- /t/100-base/020-color.t: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonycoz/imager/HEAD/t/100-base/020-color.t -------------------------------------------------------------------------------- /t/100-base/030-countc.t: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonycoz/imager/HEAD/t/100-base/030-countc.t -------------------------------------------------------------------------------- /t/100-base/800-tr18561.t: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonycoz/imager/HEAD/t/100-base/800-tr18561.t -------------------------------------------------------------------------------- /t/100-base/801-tr18561b.t: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonycoz/imager/HEAD/t/100-base/801-tr18561b.t -------------------------------------------------------------------------------- /t/150-type/020-sixteen.t: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonycoz/imager/HEAD/t/150-type/020-sixteen.t -------------------------------------------------------------------------------- /t/150-type/030-double.t: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonycoz/imager/HEAD/t/150-type/030-double.t -------------------------------------------------------------------------------- /t/150-type/040-palette.t: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonycoz/imager/HEAD/t/150-type/040-palette.t -------------------------------------------------------------------------------- /t/150-type/100-masked.t: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonycoz/imager/HEAD/t/150-type/100-masked.t -------------------------------------------------------------------------------- /t/200-file/010-iolayer.t: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonycoz/imager/HEAD/t/200-file/010-iolayer.t -------------------------------------------------------------------------------- /t/200-file/100-files.t: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonycoz/imager/HEAD/t/200-file/100-files.t -------------------------------------------------------------------------------- /t/200-file/200-nosuch.t: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonycoz/imager/HEAD/t/200-file/200-nosuch.t -------------------------------------------------------------------------------- /t/200-file/300-raw.t: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonycoz/imager/HEAD/t/200-file/300-raw.t -------------------------------------------------------------------------------- /t/200-file/310-pnm.t: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonycoz/imager/HEAD/t/200-file/310-pnm.t -------------------------------------------------------------------------------- /t/200-file/320-bmp.t: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonycoz/imager/HEAD/t/200-file/320-bmp.t -------------------------------------------------------------------------------- /t/200-file/330-tga.t: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonycoz/imager/HEAD/t/200-file/330-tga.t -------------------------------------------------------------------------------- /t/200-file/400-basic.t: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonycoz/imager/HEAD/t/200-file/400-basic.t -------------------------------------------------------------------------------- /t/200-file/450-preload.t: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonycoz/imager/HEAD/t/200-file/450-preload.t -------------------------------------------------------------------------------- /t/250-draw/010-draw.t: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonycoz/imager/HEAD/t/250-draw/010-draw.t -------------------------------------------------------------------------------- /t/250-draw/020-flood.t: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonycoz/imager/HEAD/t/250-draw/020-flood.t -------------------------------------------------------------------------------- /t/250-draw/030-paste.t: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonycoz/imager/HEAD/t/250-draw/030-paste.t -------------------------------------------------------------------------------- /t/250-draw/040-rubthru.t: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonycoz/imager/HEAD/t/250-draw/040-rubthru.t -------------------------------------------------------------------------------- /t/250-draw/050-polyaa.t: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonycoz/imager/HEAD/t/250-draw/050-polyaa.t -------------------------------------------------------------------------------- /t/250-draw/060-polypoly.t: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonycoz/imager/HEAD/t/250-draw/060-polypoly.t -------------------------------------------------------------------------------- /t/250-draw/100-fill.t: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonycoz/imager/HEAD/t/250-draw/100-fill.t -------------------------------------------------------------------------------- /t/250-draw/200-compose.t: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonycoz/imager/HEAD/t/250-draw/200-compose.t -------------------------------------------------------------------------------- /t/300-transform/010-scale.t: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonycoz/imager/HEAD/t/300-transform/010-scale.t -------------------------------------------------------------------------------- /t/300-transform/020-combine.t: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonycoz/imager/HEAD/t/300-transform/020-combine.t -------------------------------------------------------------------------------- /t/300-transform/030-copyflip.t: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonycoz/imager/HEAD/t/300-transform/030-copyflip.t -------------------------------------------------------------------------------- /t/300-transform/040-crop.t: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonycoz/imager/HEAD/t/300-transform/040-crop.t -------------------------------------------------------------------------------- /t/300-transform/050-convert.t: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonycoz/imager/HEAD/t/300-transform/050-convert.t -------------------------------------------------------------------------------- /t/300-transform/060-map.t: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonycoz/imager/HEAD/t/300-transform/060-map.t -------------------------------------------------------------------------------- /t/300-transform/200-trimcolorlist.t: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonycoz/imager/HEAD/t/300-transform/200-trimcolorlist.t -------------------------------------------------------------------------------- /t/300-transform/210-trim.t: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonycoz/imager/HEAD/t/300-transform/210-trim.t -------------------------------------------------------------------------------- /t/300-transform/500-trans.t: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonycoz/imager/HEAD/t/300-transform/500-trans.t -------------------------------------------------------------------------------- /t/300-transform/600-trans2.t: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonycoz/imager/HEAD/t/300-transform/600-trans2.t -------------------------------------------------------------------------------- /t/300-transform/610-postfix.t: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonycoz/imager/HEAD/t/300-transform/610-postfix.t -------------------------------------------------------------------------------- /t/300-transform/620-infix.t: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonycoz/imager/HEAD/t/300-transform/620-infix.t -------------------------------------------------------------------------------- /t/300-transform/630-assem.t: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonycoz/imager/HEAD/t/300-transform/630-assem.t -------------------------------------------------------------------------------- /t/350-font/010-font.t: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonycoz/imager/HEAD/t/350-font/010-font.t -------------------------------------------------------------------------------- /t/350-font/020-tt.t: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonycoz/imager/HEAD/t/350-font/020-tt.t -------------------------------------------------------------------------------- /t/350-font/030-ttoo.t: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonycoz/imager/HEAD/t/350-font/030-ttoo.t -------------------------------------------------------------------------------- /t/350-font/040-ttstd.t: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonycoz/imager/HEAD/t/350-font/040-ttstd.t -------------------------------------------------------------------------------- /t/350-font/100-texttools.t: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonycoz/imager/HEAD/t/350-font/100-texttools.t -------------------------------------------------------------------------------- /t/400-filter/010-filters.t: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonycoz/imager/HEAD/t/400-filter/010-filters.t -------------------------------------------------------------------------------- /t/400-filter/020-autolevels.t: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonycoz/imager/HEAD/t/400-filter/020-autolevels.t -------------------------------------------------------------------------------- /t/450-api/100-inline.t: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonycoz/imager/HEAD/t/450-api/100-inline.t -------------------------------------------------------------------------------- /t/450-api/110-inlinectx.t: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonycoz/imager/HEAD/t/450-api/110-inlinectx.t -------------------------------------------------------------------------------- /t/450-api/130-cpp.t: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonycoz/imager/HEAD/t/450-api/130-cpp.t -------------------------------------------------------------------------------- /t/850-thread/010-base.t: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonycoz/imager/HEAD/t/850-thread/010-base.t -------------------------------------------------------------------------------- /t/850-thread/100-error.t: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonycoz/imager/HEAD/t/850-thread/100-error.t -------------------------------------------------------------------------------- /t/850-thread/110-log.t: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonycoz/imager/HEAD/t/850-thread/110-log.t -------------------------------------------------------------------------------- /t/900-util/010-test.t: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonycoz/imager/HEAD/t/900-util/010-test.t -------------------------------------------------------------------------------- /t/900-util/020-error.t: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonycoz/imager/HEAD/t/900-util/020-error.t -------------------------------------------------------------------------------- /t/900-util/030-log.t: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonycoz/imager/HEAD/t/900-util/030-log.t -------------------------------------------------------------------------------- /t/900-util/040-limit.t: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonycoz/imager/HEAD/t/900-util/040-limit.t -------------------------------------------------------------------------------- /t/900-util/050-matrix.t: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonycoz/imager/HEAD/t/900-util/050-matrix.t -------------------------------------------------------------------------------- /t/900-util/060-extutil.t: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonycoz/imager/HEAD/t/900-util/060-extutil.t -------------------------------------------------------------------------------- /t/900-util/060-hlines.t: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonycoz/imager/HEAD/t/900-util/060-hlines.t -------------------------------------------------------------------------------- /t/950-kwalitee/010-pod.t: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonycoz/imager/HEAD/t/950-kwalitee/010-pod.t -------------------------------------------------------------------------------- /t/950-kwalitee/020-samples.t: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonycoz/imager/HEAD/t/950-kwalitee/020-samples.t -------------------------------------------------------------------------------- /t/950-kwalitee/030-podcover.t: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonycoz/imager/HEAD/t/950-kwalitee/030-podcover.t -------------------------------------------------------------------------------- /t/950-kwalitee/040-strict.t: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonycoz/imager/HEAD/t/950-kwalitee/040-strict.t -------------------------------------------------------------------------------- /t/950-kwalitee/050-meta.t: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonycoz/imager/HEAD/t/950-kwalitee/050-meta.t -------------------------------------------------------------------------------- /t/950-kwalitee/060-podstruct.t: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonycoz/imager/HEAD/t/950-kwalitee/060-podstruct.t -------------------------------------------------------------------------------- /t/950-kwalitee/070-mymeta.t: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonycoz/imager/HEAD/t/950-kwalitee/070-mymeta.t -------------------------------------------------------------------------------- /t/950-kwalitee/080-nousevars.t: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonycoz/imager/HEAD/t/950-kwalitee/080-nousevars.t -------------------------------------------------------------------------------- /t/GoodTestFont.pm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonycoz/imager/HEAD/t/GoodTestFont.pm -------------------------------------------------------------------------------- /t/Pod/Coverage/Imager.pm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonycoz/imager/HEAD/t/Pod/Coverage/Imager.pm -------------------------------------------------------------------------------- /t/t1000lib/Imager/File/BAD.pm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonycoz/imager/HEAD/t/t1000lib/Imager/File/BAD.pm -------------------------------------------------------------------------------- /tags.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonycoz/imager/HEAD/tags.c -------------------------------------------------------------------------------- /testimg/alpha16.tga: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonycoz/imager/HEAD/testimg/alpha16.tga -------------------------------------------------------------------------------- /testimg/bad1oflow.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonycoz/imager/HEAD/testimg/bad1oflow.bmp -------------------------------------------------------------------------------- /testimg/bad1wid0.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonycoz/imager/HEAD/testimg/bad1wid0.bmp -------------------------------------------------------------------------------- /testimg/bad24comp.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonycoz/imager/HEAD/testimg/bad24comp.bmp -------------------------------------------------------------------------------- /testimg/bad24oflow.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonycoz/imager/HEAD/testimg/bad24oflow.bmp -------------------------------------------------------------------------------- /testimg/bad24wid0.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonycoz/imager/HEAD/testimg/bad24wid0.bmp -------------------------------------------------------------------------------- /testimg/bad4oflow.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonycoz/imager/HEAD/testimg/bad4oflow.bmp -------------------------------------------------------------------------------- /testimg/bad4wid0.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonycoz/imager/HEAD/testimg/bad4wid0.bmp -------------------------------------------------------------------------------- /testimg/bad4widbig.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonycoz/imager/HEAD/testimg/bad4widbig.bmp -------------------------------------------------------------------------------- /testimg/bad8comp.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonycoz/imager/HEAD/testimg/bad8comp.bmp -------------------------------------------------------------------------------- /testimg/bad8oflow.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonycoz/imager/HEAD/testimg/bad8oflow.bmp -------------------------------------------------------------------------------- /testimg/bad8useda.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonycoz/imager/HEAD/testimg/bad8useda.bmp -------------------------------------------------------------------------------- /testimg/bad8wid0.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonycoz/imager/HEAD/testimg/bad8wid0.bmp -------------------------------------------------------------------------------- /testimg/bad_asc.pbm: -------------------------------------------------------------------------------- 1 | P1 2 | 2 2 3 | 10 4 | 0x -------------------------------------------------------------------------------- /testimg/bad_asc.pgm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonycoz/imager/HEAD/testimg/bad_asc.pgm -------------------------------------------------------------------------------- /testimg/bad_asc.ppm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonycoz/imager/HEAD/testimg/bad_asc.ppm -------------------------------------------------------------------------------- /testimg/badbits.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonycoz/imager/HEAD/testimg/badbits.bmp -------------------------------------------------------------------------------- /testimg/badcomp1.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonycoz/imager/HEAD/testimg/badcomp1.bmp -------------------------------------------------------------------------------- /testimg/badcomp4.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonycoz/imager/HEAD/testimg/badcomp4.bmp -------------------------------------------------------------------------------- /testimg/badplanes.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonycoz/imager/HEAD/testimg/badplanes.bmp -------------------------------------------------------------------------------- /testimg/badused1.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonycoz/imager/HEAD/testimg/badused1.bmp -------------------------------------------------------------------------------- /testimg/badused4a.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonycoz/imager/HEAD/testimg/badused4a.bmp -------------------------------------------------------------------------------- /testimg/badused4b.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonycoz/imager/HEAD/testimg/badused4b.bmp -------------------------------------------------------------------------------- /testimg/base.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonycoz/imager/HEAD/testimg/base.jpg -------------------------------------------------------------------------------- /testimg/base.tga: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonycoz/imager/HEAD/testimg/base.tga -------------------------------------------------------------------------------- /testimg/comp4.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonycoz/imager/HEAD/testimg/comp4.bmp -------------------------------------------------------------------------------- /testimg/comp8.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonycoz/imager/HEAD/testimg/comp8.bmp -------------------------------------------------------------------------------- /testimg/filltest.ppm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonycoz/imager/HEAD/testimg/filltest.ppm -------------------------------------------------------------------------------- /testimg/gimpgrad: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonycoz/imager/HEAD/testimg/gimpgrad -------------------------------------------------------------------------------- /testimg/gradbad.ggr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonycoz/imager/HEAD/testimg/gradbad.ggr -------------------------------------------------------------------------------- /testimg/gradbad2.ggr: -------------------------------------------------------------------------------- 1 | GIMP Gradient 2 | 1 3 | 1 2 3 4 5 6 7 8 9 10 4 | Another invalid file 5 | -------------------------------------------------------------------------------- /testimg/imager.pbm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonycoz/imager/HEAD/testimg/imager.pbm -------------------------------------------------------------------------------- /testimg/junk.ppm: -------------------------------------------------------------------------------- 1 | P1 2 | 100 -------------------------------------------------------------------------------- /testimg/longid.tga: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonycoz/imager/HEAD/testimg/longid.tga -------------------------------------------------------------------------------- /testimg/maxval.ppm: -------------------------------------------------------------------------------- 1 | P6 2 | 3 1 3 | 63 4 | ???  -------------------------------------------------------------------------------- /testimg/maxval_0.ppm: -------------------------------------------------------------------------------- 1 | P6 2 | # test image - check we handle 0 maxval correctly 3 | 1 1 4 | 0 5 | -------------------------------------------------------------------------------- /testimg/maxval_256.ppm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonycoz/imager/HEAD/testimg/maxval_256.ppm -------------------------------------------------------------------------------- /testimg/maxval_4095_asc.ppm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonycoz/imager/HEAD/testimg/maxval_4095_asc.ppm -------------------------------------------------------------------------------- /testimg/maxval_65536.ppm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonycoz/imager/HEAD/testimg/maxval_65536.ppm -------------------------------------------------------------------------------- /testimg/maxval_asc.ppm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonycoz/imager/HEAD/testimg/maxval_asc.ppm -------------------------------------------------------------------------------- /testimg/multiple.ppm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonycoz/imager/HEAD/testimg/multiple.ppm -------------------------------------------------------------------------------- /testimg/newgimpgrad.ggr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonycoz/imager/HEAD/testimg/newgimpgrad.ggr -------------------------------------------------------------------------------- /testimg/os2rgb8.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonycoz/imager/HEAD/testimg/os2rgb8.bmp -------------------------------------------------------------------------------- /testimg/os2rle.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonycoz/imager/HEAD/testimg/os2rle.bmp -------------------------------------------------------------------------------- /testimg/os2rle8.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonycoz/imager/HEAD/testimg/os2rle8.bmp -------------------------------------------------------------------------------- /testimg/pbm_base.pgm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonycoz/imager/HEAD/testimg/pbm_base.pgm -------------------------------------------------------------------------------- /testimg/penguin-base.ppm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonycoz/imager/HEAD/testimg/penguin-base.ppm -------------------------------------------------------------------------------- /testimg/pgm.pgm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonycoz/imager/HEAD/testimg/pgm.pgm -------------------------------------------------------------------------------- /testimg/scale.ppm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonycoz/imager/HEAD/testimg/scale.ppm -------------------------------------------------------------------------------- /testimg/short1.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonycoz/imager/HEAD/testimg/short1.bmp -------------------------------------------------------------------------------- /testimg/short24.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonycoz/imager/HEAD/testimg/short24.bmp -------------------------------------------------------------------------------- /testimg/short4.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonycoz/imager/HEAD/testimg/short4.bmp -------------------------------------------------------------------------------- /testimg/short4rle.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonycoz/imager/HEAD/testimg/short4rle.bmp -------------------------------------------------------------------------------- /testimg/short8.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonycoz/imager/HEAD/testimg/short8.bmp -------------------------------------------------------------------------------- /testimg/short8rle.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonycoz/imager/HEAD/testimg/short8rle.bmp -------------------------------------------------------------------------------- /testimg/short_asc.pbm: -------------------------------------------------------------------------------- 1 | P1 2 | 2 2 3 | 01 4 | 1 -------------------------------------------------------------------------------- /testimg/short_asc.pgm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonycoz/imager/HEAD/testimg/short_asc.pgm -------------------------------------------------------------------------------- /testimg/short_asc.ppm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonycoz/imager/HEAD/testimg/short_asc.ppm -------------------------------------------------------------------------------- /testimg/short_bin.pbm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonycoz/imager/HEAD/testimg/short_bin.pbm -------------------------------------------------------------------------------- /testimg/short_bin.pgm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonycoz/imager/HEAD/testimg/short_bin.pgm -------------------------------------------------------------------------------- /testimg/short_bin.ppm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonycoz/imager/HEAD/testimg/short_bin.ppm -------------------------------------------------------------------------------- /testimg/short_bin16.pgm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonycoz/imager/HEAD/testimg/short_bin16.pgm -------------------------------------------------------------------------------- /testimg/short_bin16.ppm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonycoz/imager/HEAD/testimg/short_bin16.ppm -------------------------------------------------------------------------------- /testimg/simple.pbm: -------------------------------------------------------------------------------- 1 | P1 2 | # test image 3 | 2 2 4 | 1 0 5 | 0 1 6 | -------------------------------------------------------------------------------- /testimg/test.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonycoz/imager/HEAD/testimg/test.png -------------------------------------------------------------------------------- /testimg/test.raw: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonycoz/imager/HEAD/testimg/test.raw -------------------------------------------------------------------------------- /testimg/test.tga: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonycoz/imager/HEAD/testimg/test.tga -------------------------------------------------------------------------------- /testimg/test_gimp_pal: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonycoz/imager/HEAD/testimg/test_gimp_pal -------------------------------------------------------------------------------- /testimg/tootall.ppm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonycoz/imager/HEAD/testimg/tootall.ppm -------------------------------------------------------------------------------- /testimg/toowide.ppm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonycoz/imager/HEAD/testimg/toowide.ppm -------------------------------------------------------------------------------- /testimg/winrgb2.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonycoz/imager/HEAD/testimg/winrgb2.bmp -------------------------------------------------------------------------------- /testimg/winrgb24.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonycoz/imager/HEAD/testimg/winrgb24.bmp -------------------------------------------------------------------------------- /testimg/winrgb24off.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonycoz/imager/HEAD/testimg/winrgb24off.bmp -------------------------------------------------------------------------------- /testimg/winrgb2off.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonycoz/imager/HEAD/testimg/winrgb2off.bmp -------------------------------------------------------------------------------- /testimg/winrgb4.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonycoz/imager/HEAD/testimg/winrgb4.bmp -------------------------------------------------------------------------------- /testimg/winrgb4off.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonycoz/imager/HEAD/testimg/winrgb4off.bmp -------------------------------------------------------------------------------- /testimg/winrgb8.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonycoz/imager/HEAD/testimg/winrgb8.bmp -------------------------------------------------------------------------------- /testimg/winrgb8off.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonycoz/imager/HEAD/testimg/winrgb8off.bmp -------------------------------------------------------------------------------- /testimg/winrgboff.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonycoz/imager/HEAD/testimg/winrgboff.bmp -------------------------------------------------------------------------------- /testimg/winrle.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonycoz/imager/HEAD/testimg/winrle.bmp -------------------------------------------------------------------------------- /testimg/winrle8.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonycoz/imager/HEAD/testimg/winrle8.bmp -------------------------------------------------------------------------------- /tga.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonycoz/imager/HEAD/tga.c -------------------------------------------------------------------------------- /tools/cover-clang: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonycoz/imager/HEAD/tools/cover-clang -------------------------------------------------------------------------------- /tools/imager: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonycoz/imager/HEAD/tools/imager -------------------------------------------------------------------------------- /trans2.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonycoz/imager/HEAD/trans2.c -------------------------------------------------------------------------------- /transform.perl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonycoz/imager/HEAD/transform.perl -------------------------------------------------------------------------------- /trim.im: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonycoz/imager/HEAD/trim.im -------------------------------------------------------------------------------- /typemap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonycoz/imager/HEAD/typemap -------------------------------------------------------------------------------- /typemap.local: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonycoz/imager/HEAD/typemap.local -------------------------------------------------------------------------------- /typemap.oldperl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonycoz/imager/HEAD/typemap.oldperl -------------------------------------------------------------------------------- /xt/x107bmp.t: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonycoz/imager/HEAD/xt/x107bmp.t -------------------------------------------------------------------------------- /xt/x11rubthru.t: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonycoz/imager/HEAD/xt/x11rubthru.t -------------------------------------------------------------------------------- /xt/x20spell.t: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonycoz/imager/HEAD/xt/x20spell.t -------------------------------------------------------------------------------- /xt/x30podlinkcheck.t: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonycoz/imager/HEAD/xt/x30podlinkcheck.t -------------------------------------------------------------------------------- /xt/x40checklib.t: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonycoz/imager/HEAD/xt/x40checklib.t -------------------------------------------------------------------------------- /xt/x50cpod.t: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonycoz/imager/HEAD/xt/x50cpod.t -------------------------------------------------------------------------------- /xt/x60threadgrind.t: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonycoz/imager/HEAD/xt/x60threadgrind.t -------------------------------------------------------------------------------- /xt/x90cmpversion.t: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonycoz/imager/HEAD/xt/x90cmpversion.t -------------------------------------------------------------------------------- /xt/x91manifest.t: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonycoz/imager/HEAD/xt/x91manifest.t -------------------------------------------------------------------------------- /xtestimg/bmp/README.imager: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonycoz/imager/HEAD/xtestimg/bmp/README.imager -------------------------------------------------------------------------------- /xtestimg/bmp/bmpsuite-ref.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonycoz/imager/HEAD/xtestimg/bmp/bmpsuite-ref.zip -------------------------------------------------------------------------------- /xtestimg/bmp/g01bg.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonycoz/imager/HEAD/xtestimg/bmp/g01bg.bmp -------------------------------------------------------------------------------- /xtestimg/bmp/g01bg.sgi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonycoz/imager/HEAD/xtestimg/bmp/g01bg.sgi -------------------------------------------------------------------------------- /xtestimg/bmp/g01bw.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonycoz/imager/HEAD/xtestimg/bmp/g01bw.bmp -------------------------------------------------------------------------------- /xtestimg/bmp/g01bw.sgi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonycoz/imager/HEAD/xtestimg/bmp/g01bw.sgi -------------------------------------------------------------------------------- /xtestimg/bmp/g01p1.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonycoz/imager/HEAD/xtestimg/bmp/g01p1.bmp -------------------------------------------------------------------------------- /xtestimg/bmp/g01p1.sgi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonycoz/imager/HEAD/xtestimg/bmp/g01p1.sgi -------------------------------------------------------------------------------- /xtestimg/bmp/g01wb.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonycoz/imager/HEAD/xtestimg/bmp/g01wb.bmp -------------------------------------------------------------------------------- /xtestimg/bmp/g01wb.sgi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonycoz/imager/HEAD/xtestimg/bmp/g01wb.sgi -------------------------------------------------------------------------------- /xtestimg/bmp/g04.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonycoz/imager/HEAD/xtestimg/bmp/g04.bmp -------------------------------------------------------------------------------- /xtestimg/bmp/g04.sgi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonycoz/imager/HEAD/xtestimg/bmp/g04.sgi -------------------------------------------------------------------------------- /xtestimg/bmp/g04p4.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonycoz/imager/HEAD/xtestimg/bmp/g04p4.bmp -------------------------------------------------------------------------------- /xtestimg/bmp/g04p4.sgi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonycoz/imager/HEAD/xtestimg/bmp/g04p4.sgi -------------------------------------------------------------------------------- /xtestimg/bmp/g04rle.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonycoz/imager/HEAD/xtestimg/bmp/g04rle.bmp -------------------------------------------------------------------------------- /xtestimg/bmp/g04rle.sgi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonycoz/imager/HEAD/xtestimg/bmp/g04rle.sgi -------------------------------------------------------------------------------- /xtestimg/bmp/g08.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonycoz/imager/HEAD/xtestimg/bmp/g08.bmp -------------------------------------------------------------------------------- /xtestimg/bmp/g08.sgi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonycoz/imager/HEAD/xtestimg/bmp/g08.sgi -------------------------------------------------------------------------------- /xtestimg/bmp/g08offs.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonycoz/imager/HEAD/xtestimg/bmp/g08offs.bmp -------------------------------------------------------------------------------- /xtestimg/bmp/g08offs.sgi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonycoz/imager/HEAD/xtestimg/bmp/g08offs.sgi -------------------------------------------------------------------------------- /xtestimg/bmp/g08os2.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonycoz/imager/HEAD/xtestimg/bmp/g08os2.bmp -------------------------------------------------------------------------------- /xtestimg/bmp/g08os2.sgi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonycoz/imager/HEAD/xtestimg/bmp/g08os2.sgi -------------------------------------------------------------------------------- /xtestimg/bmp/g08p256.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonycoz/imager/HEAD/xtestimg/bmp/g08p256.bmp -------------------------------------------------------------------------------- /xtestimg/bmp/g08p256.sgi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonycoz/imager/HEAD/xtestimg/bmp/g08p256.sgi -------------------------------------------------------------------------------- /xtestimg/bmp/g08p64.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonycoz/imager/HEAD/xtestimg/bmp/g08p64.bmp -------------------------------------------------------------------------------- /xtestimg/bmp/g08p64.sgi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonycoz/imager/HEAD/xtestimg/bmp/g08p64.sgi -------------------------------------------------------------------------------- /xtestimg/bmp/g08pi256.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonycoz/imager/HEAD/xtestimg/bmp/g08pi256.bmp -------------------------------------------------------------------------------- /xtestimg/bmp/g08pi256.sgi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonycoz/imager/HEAD/xtestimg/bmp/g08pi256.sgi -------------------------------------------------------------------------------- /xtestimg/bmp/g08pi64.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonycoz/imager/HEAD/xtestimg/bmp/g08pi64.bmp -------------------------------------------------------------------------------- /xtestimg/bmp/g08pi64.sgi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonycoz/imager/HEAD/xtestimg/bmp/g08pi64.sgi -------------------------------------------------------------------------------- /xtestimg/bmp/g08res11.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonycoz/imager/HEAD/xtestimg/bmp/g08res11.bmp -------------------------------------------------------------------------------- /xtestimg/bmp/g08res11.sgi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonycoz/imager/HEAD/xtestimg/bmp/g08res11.sgi -------------------------------------------------------------------------------- /xtestimg/bmp/g08res21.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonycoz/imager/HEAD/xtestimg/bmp/g08res21.bmp -------------------------------------------------------------------------------- /xtestimg/bmp/g08res21.sgi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonycoz/imager/HEAD/xtestimg/bmp/g08res21.sgi -------------------------------------------------------------------------------- /xtestimg/bmp/g08res22.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonycoz/imager/HEAD/xtestimg/bmp/g08res22.bmp -------------------------------------------------------------------------------- /xtestimg/bmp/g08res22.sgi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonycoz/imager/HEAD/xtestimg/bmp/g08res22.sgi -------------------------------------------------------------------------------- /xtestimg/bmp/g08rle.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonycoz/imager/HEAD/xtestimg/bmp/g08rle.bmp -------------------------------------------------------------------------------- /xtestimg/bmp/g08rle.sgi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonycoz/imager/HEAD/xtestimg/bmp/g08rle.sgi -------------------------------------------------------------------------------- /xtestimg/bmp/g08s0.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonycoz/imager/HEAD/xtestimg/bmp/g08s0.bmp -------------------------------------------------------------------------------- /xtestimg/bmp/g08s0.sgi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonycoz/imager/HEAD/xtestimg/bmp/g08s0.sgi -------------------------------------------------------------------------------- /xtestimg/bmp/g08w124.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonycoz/imager/HEAD/xtestimg/bmp/g08w124.bmp -------------------------------------------------------------------------------- /xtestimg/bmp/g08w124.sgi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonycoz/imager/HEAD/xtestimg/bmp/g08w124.sgi -------------------------------------------------------------------------------- /xtestimg/bmp/g08w125.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonycoz/imager/HEAD/xtestimg/bmp/g08w125.bmp -------------------------------------------------------------------------------- /xtestimg/bmp/g08w125.sgi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonycoz/imager/HEAD/xtestimg/bmp/g08w125.sgi -------------------------------------------------------------------------------- /xtestimg/bmp/g08w126.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonycoz/imager/HEAD/xtestimg/bmp/g08w126.bmp -------------------------------------------------------------------------------- /xtestimg/bmp/g08w126.sgi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonycoz/imager/HEAD/xtestimg/bmp/g08w126.sgi -------------------------------------------------------------------------------- /xtestimg/bmp/g16bf555.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonycoz/imager/HEAD/xtestimg/bmp/g16bf555.bmp -------------------------------------------------------------------------------- /xtestimg/bmp/g16bf555.sgi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonycoz/imager/HEAD/xtestimg/bmp/g16bf555.sgi -------------------------------------------------------------------------------- /xtestimg/bmp/g16bf565.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonycoz/imager/HEAD/xtestimg/bmp/g16bf565.bmp -------------------------------------------------------------------------------- /xtestimg/bmp/g16bf565.sgi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonycoz/imager/HEAD/xtestimg/bmp/g16bf565.sgi -------------------------------------------------------------------------------- /xtestimg/bmp/g16def555.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonycoz/imager/HEAD/xtestimg/bmp/g16def555.bmp -------------------------------------------------------------------------------- /xtestimg/bmp/g16def555.sgi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonycoz/imager/HEAD/xtestimg/bmp/g16def555.sgi -------------------------------------------------------------------------------- /xtestimg/bmp/g24.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonycoz/imager/HEAD/xtestimg/bmp/g24.bmp -------------------------------------------------------------------------------- /xtestimg/bmp/g24.sgi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonycoz/imager/HEAD/xtestimg/bmp/g24.sgi -------------------------------------------------------------------------------- /xtestimg/bmp/g32bf.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonycoz/imager/HEAD/xtestimg/bmp/g32bf.bmp -------------------------------------------------------------------------------- /xtestimg/bmp/g32bf.sgi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonycoz/imager/HEAD/xtestimg/bmp/g32bf.sgi -------------------------------------------------------------------------------- /xtestimg/bmp/g32def.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonycoz/imager/HEAD/xtestimg/bmp/g32def.bmp -------------------------------------------------------------------------------- /xtestimg/bmp/g32def.sgi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonycoz/imager/HEAD/xtestimg/bmp/g32def.sgi -------------------------------------------------------------------------------- /xtestimg/bmp/readme.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonycoz/imager/HEAD/xtestimg/bmp/readme.txt -------------------------------------------------------------------------------- /xtestimg/bmp/test32bfv4.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonycoz/imager/HEAD/xtestimg/bmp/test32bfv4.bmp -------------------------------------------------------------------------------- /xtestimg/bmp/test32bfv4.sgi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonycoz/imager/HEAD/xtestimg/bmp/test32bfv4.sgi -------------------------------------------------------------------------------- /xtestimg/bmp/test32v5.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonycoz/imager/HEAD/xtestimg/bmp/test32v5.bmp -------------------------------------------------------------------------------- /xtestimg/bmp/test32v5.sgi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonycoz/imager/HEAD/xtestimg/bmp/test32v5.sgi -------------------------------------------------------------------------------- /xtestimg/bmp/test4os2v2.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonycoz/imager/HEAD/xtestimg/bmp/test4os2v2.bmp -------------------------------------------------------------------------------- /xtestimg/bmp/test4os2v2.sgi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonycoz/imager/HEAD/xtestimg/bmp/test4os2v2.sgi -------------------------------------------------------------------------------- /xtestimg/bmp/trans.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonycoz/imager/HEAD/xtestimg/bmp/trans.bmp -------------------------------------------------------------------------------- /xtestimg/bmp/trans.sgi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonycoz/imager/HEAD/xtestimg/bmp/trans.sgi -------------------------------------------------------------------------------- /xtestimg/bmp/unalign4rle.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonycoz/imager/HEAD/xtestimg/bmp/unalign4rle.bmp -------------------------------------------------------------------------------- /xtestimg/bmp/unalign4rle2.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonycoz/imager/HEAD/xtestimg/bmp/unalign4rle2.bmp -------------------------------------------------------------------------------- /xtestimg/bmp/width.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonycoz/imager/HEAD/xtestimg/bmp/width.bmp -------------------------------------------------------------------------------- /xtestimg/bmp/width.sgi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonycoz/imager/HEAD/xtestimg/bmp/width.sgi --------------------------------------------------------------------------------