The Perl Toolchain Summit needs more sponsors. If your company depends on Perl, please support this very important event.
------------------------------------------------------------------------
r1064 | tony | 2006-07-25 14:43:38 +1000 (Tue, 25 Jul 2006) | 42 lines
Changed paths:
   M /trunk/Imager/Imager.pm
   M /trunk/Imager/META.yml
   A /trunk/Imager/announce/0.52.txt

bump to 0.52

This is primarily a feature release, but contains a fair few bug
fixes, new features:

- ability to read and write MS Windows ICO and CUR files

- you can now add file format plugins to support new file formats

- add POD coverage tests

- setcolors() and addcolors() now accept color names and so on instead
  of requiring Imager::Color objects.

- flood_fill() can now fill to a specified border color instead of
  just to the area the same color as the seed.

Bug fixes:

- bounding_box for the T1 driver wasn't converting UTF8 to ascii when
  calculating the advance width.

- bounding_box for the T1 driver wasn't including leading and trailing
  spaces in the bounding box as the other drivers did, it also produced
  strange results for empty strings or strings containing only spaces

- when reading CMYK jpeg images they were being transferred to the
  image object as is, producing a four channel image.  It only looked
  ok due to an old still unfixed Photoshop bug.  We now convert from
  the inverted CMYK that photoshop (and Corel for example) produce
  into RGB.

- reading a CYMK TIFF would result in a 4 channel image, reading any
  image with more than 4 channels (eg. RGB with 2 alpha channels)
  would result in an error.

- added /usr/local/include to the default include search path, since
  we were already searching /usr/local/lib for libraries.

And various minor fixes and documentation updates.


------------------------------------------------------------------------
r1063 | tony | 2006-07-24 22:28:31 +1000 (Mon, 24 Jul 2006) | 4 lines
Changed paths:
   M /trunk/Imager/lib/Imager/Cookbook.pod

added a cookbook entry for converting files from one format to another

part of http://rt.cpan.org/Ticket/Display.html?id=5608

------------------------------------------------------------------------
r1062 | tony | 2006-07-24 22:09:22 +1000 (Mon, 24 Jul 2006) | 4 lines
Changed paths:
   M /trunk/Imager/lib/Imager/Draw.pod

document the direction of Imager's co-ordinate system

http://rt.cpan.org/Ticket/Display.html?id=11429

------------------------------------------------------------------------
r1061 | tony | 2006-07-24 21:27:24 +1000 (Mon, 24 Jul 2006) | 2 lines
Changed paths:
   M /trunk/Imager/lib/Imager/Files.pod

add an example of reading exif tags

------------------------------------------------------------------------
r1060 | tony | 2006-07-24 21:16:06 +1000 (Mon, 24 Jul 2006) | 2 lines
Changed paths:
   M /trunk/Imager/lib/Imager/Files.pod

add some basic examples of using data, fd, fh, callback parameters

------------------------------------------------------------------------
r1059 | tony | 2006-07-24 20:17:00 +1000 (Mon, 24 Jul 2006) | 3 lines
Changed paths:
   M /trunk/Imager/lib/Imager/Files.pod

added examples for fh, fd, file, data and callback mechanisms for
reading/writing files.

------------------------------------------------------------------------
r1058 | tony | 2006-07-24 17:15:49 +1000 (Mon, 24 Jul 2006) | 2 lines
Changed paths:
   M /trunk/Imager/image.c
   M /trunk/Imager/t/t1000files.t

add detection of BZIP2 and gzip data

------------------------------------------------------------------------
r1057 | tony | 2006-07-24 14:46:00 +1000 (Mon, 24 Jul 2006) | 2 lines
Changed paths:
   M /trunk/Imager/MANIFEST
   A /trunk/Imager/dynfilt/t
   A /trunk/Imager/dynfilt/t/t00dummy.t

add dummy test to dynfilt to since it was confusing smoke testers

------------------------------------------------------------------------
r1056 | tony | 2006-07-24 14:44:28 +1000 (Mon, 24 Jul 2006) | 2 lines
Changed paths:
   M /trunk/Imager/fontfiles/SpaceTest.sfd

commit changes to SpaceTest font source caused by exports

------------------------------------------------------------------------
r1055 | tony | 2006-07-21 10:01:57 +1000 (Fri, 21 Jul 2006) | 2 lines
Changed paths:
   M /trunk/Imager/image.c
   M /trunk/Imager/t/t1000files.t

add a magic entry to detect XWD files

------------------------------------------------------------------------
r1054 | tony | 2006-07-21 00:35:22 +1000 (Fri, 21 Jul 2006) | 5 lines
Changed paths:
   M /trunk/Imager/font.c
   M /trunk/Imager/t/t30t1font.t

bounding_box() for the t1 driver wasn't converting from UTF8 to ascii
when calculating the advance width.

fixes http://rt.cpan.org/Ticket/Display.html?id=20554

------------------------------------------------------------------------
r1053 | tony | 2006-07-20 23:42:04 +1000 (Thu, 20 Jul 2006) | 11 lines
Changed paths:
   M /trunk/Imager/MANIFEST
   M /trunk/Imager/font.c
   M /trunk/Imager/fontfiles/ExistenceTest.afm
   M /trunk/Imager/fontfiles/ExistenceTest.pfb
   M /trunk/Imager/fontfiles/ExistenceTest.sfd
   A /trunk/Imager/fontfiles/SpaceTest.afm
   A /trunk/Imager/fontfiles/SpaceTest.pfb
   A /trunk/Imager/fontfiles/SpaceTest.sfd
   M /trunk/Imager/t/t30t1font.t

bounding_box() for t1 driver fonts was treating spaces as empty space
when calculating the bounds, which they are, but this is inconsistent
with other drivers.  This was especially a problem for strings
containing only spaces where the left bound would end up far to the
right of the right bound, and similarly for the ascent and descent.

calculating the bounding box for an empty string invoked special
behaviour in t1lib, making it unreliable.

Fixes: http://rt.cpan.org/Ticket/Display.html?id=20555

------------------------------------------------------------------------
r1052 | tony | 2006-07-19 10:39:58 +1000 (Wed, 19 Jul 2006) | 2 lines
Changed paths:
   M /trunk/Imager/Imager.pm
   M /trunk/Imager/META.yml

bump to 0.51_03

------------------------------------------------------------------------
r1051 | tony | 2006-07-19 00:34:52 +1000 (Wed, 19 Jul 2006) | 3 lines
Changed paths:
   M /trunk/Imager/jpeg.c

make the selection of a transfer function check that it's getting the
right number of channels

------------------------------------------------------------------------
r1050 | tony | 2006-07-18 23:34:56 +1000 (Tue, 18 Jul 2006) | 2 lines
Changed paths:
   M /trunk/Imager/lib/Imager/APIRef.pod

set eol-style so that generation doesn't make svn burp

------------------------------------------------------------------------
r1049 | tony | 2006-07-18 23:21:21 +1000 (Tue, 18 Jul 2006) | 3 lines
Changed paths:
   M /trunk/Imager/image.c
   M /trunk/Imager/jpeg.c

cast 2 signed/unsigned char pointer conversions to prevent warnings
(errors on some compilers)

------------------------------------------------------------------------
r1048 | tony | 2006-07-18 22:49:31 +1000 (Tue, 18 Jul 2006) | 2 lines
Changed paths:
   M /trunk/Imager/t/t106tiff.t

report the error if we can't read the alpha test images

------------------------------------------------------------------------
r1047 | tony | 2006-07-18 22:43:02 +1000 (Tue, 18 Jul 2006) | 3 lines
Changed paths:
   M /trunk/Imager/testimg/scmyka.tif
   M /trunk/Imager/testimg/scmykaa.tif
   M /trunk/Imager/testimg/srgba.tif
   M /trunk/Imager/testimg/srgbaa.tif

newer versions of libtiff were choking on the bad values corel was
putting into EXTRASAMPLES, corrected via hex editing

------------------------------------------------------------------------
r1046 | tony | 2006-07-15 00:57:44 +1000 (Sat, 15 Jul 2006) | 21 lines
Changed paths:
   M /trunk/Imager/MANIFEST
   M /trunk/Imager/jpeg.c
   M /trunk/Imager/t/t101jpeg.t
   A /trunk/Imager/testimg/scmyk.jpg

CMYK jpeg images were being read as 4 channel images, even though they
have no alpha channel.

The colors were being transferred directly from the JPEG image data,
this only looked correct because of an old bug in photoshop, kept for
compatibility in later versions.  Photoshop inverts the ink values in
the file, so max cyan coverage is stored at 0, and min as 255, and so
on.

CMYK jpegs are now read as 3 channel images.  The colors are now
converted adjusting for the photoshop bug, cmyk images from the only
other source I have, corel draw 9, are inverted in the same way,
presumably for compatibility with photoshop.

If anyone has an application that produces technically correct CMYK
jpegs, please provide a sample in jpeg and tiff form so I can attempt
to deal with it.

Fixes: http://rt.cpan.org/Ticket/Display.html?id=20416


------------------------------------------------------------------------
r1045 | tony | 2006-07-13 21:04:53 +1000 (Thu, 13 Jul 2006) | 10 lines
Changed paths:
   M /trunk/Imager/MANIFEST
   M /trunk/Imager/lib/Imager/Files.pod
   M /trunk/Imager/t/t106tiff.t
   A /trunk/Imager/testimg/scmyk.tif
   A /trunk/Imager/testimg/scmyka.tif
   A /trunk/Imager/testimg/scmykaa.tif
   A /trunk/Imager/testimg/slab.tif
   A /trunk/Imager/testimg/srgb.tif
   A /trunk/Imager/testimg/srgba.tif
   A /trunk/Imager/testimg/srgbaa.tif
   M /trunk/Imager/tiff.c

http://rt.cpan.org/Ticket/Display.html?id=20415

Reading a CMYK TIFF with no alpha would result in a 4-channel image.

Also, reading a CMYK TIFF with an alpha channel would fail to read.

Reading a CMYK TIFF with 2 alpha channels would fail to read.

Reading a RGB TIFF with 2 alpha channels would also fail to read.

------------------------------------------------------------------------
r1044 | tony | 2006-07-13 15:20:09 +1000 (Thu, 13 Jul 2006) | 8 lines
Changed paths:
   M /trunk/Imager/freetyp2.c
   M /trunk/Imager/t/t38ft2font.t

attempting to render a space non-antialiased from freetype 2 could
crash or fail, depending on the version of freetype.

Fixed by checking if the glyph has anything to render before calling
FT_Render_Glyph().

https://rt.cpan.org/Ticket/Display.html?id=20403

------------------------------------------------------------------------
r1043 | tony | 2006-07-11 23:21:31 +1000 (Tue, 11 Jul 2006) | 2 lines
Changed paths:
   M /trunk/Imager/Imager.pm
   M /trunk/Imager/lib/Imager/Cookbook.pod
   M /trunk/Imager/lib/Imager/ImageTypes.pod

add some examples using the i_xres and i_yres tags

------------------------------------------------------------------------
r1042 | tony | 2006-07-10 18:07:18 +1000 (Mon, 10 Jul 2006) | 3 lines
Changed paths:
   M /trunk/Imager/lib/Imager/Cookbook.pod

the cookbook said we couldn't limit image sizes, but we can now.  Fix
that and add some simple examples.

------------------------------------------------------------------------
r1035 | tony | 2006-07-07 20:59:07 +1000 (Fri, 07 Jul 2006) | 2 lines
Changed paths:
   M /trunk/Imager/Makefile.PL

it's libgif not libguf

------------------------------------------------------------------------
r1034 | tony | 2006-07-07 20:57:26 +1000 (Fri, 07 Jul 2006) | 3 lines
Changed paths:
   M /trunk/Imager/Makefile.PL

move linker flags from freetype-config/pkg-config up to the front to
match the placement of C flags.

------------------------------------------------------------------------
r1033 | tony | 2006-07-06 00:21:07 +1000 (Thu, 06 Jul 2006) | 6 lines
Changed paths:
   M /trunk/Imager/Makefile.PL

we search /usr/local/include by default but we weren't searching
/usr/local/lib, fixed that

don't rebuild META.yml if we're not setting AUTHOR, this was producing
a bad META.yml on older EU::MMs

------------------------------------------------------------------------
r1032 | tony | 2006-07-05 21:54:33 +1000 (Wed, 05 Jul 2006) | 3 lines
Changed paths:
   M /trunk/Imager/ICO/t/t60writefail.t

implement limited writes as a closure instead of as an overloaded
class to support 5.005_03

------------------------------------------------------------------------
r1031 | tony | 2006-07-05 21:41:04 +1000 (Wed, 05 Jul 2006) | 2 lines
Changed paths:
   M /trunk/Imager/ICO/ICO.xs
   M /trunk/Imager/ICO/t/t10icon.t
   M /trunk/Imager/ICO/t/t20readone.t
   M /trunk/Imager/ICO/t/t21readmult.t
   M /trunk/Imager/ICO/t/t30cursor.t
   M /trunk/Imager/ICO/t/t40readcurone.t
   M /trunk/Imager/ICO/t/t41curmultread.t
   M /trunk/Imager/ICO/t/t50readfail.t
   M /trunk/Imager/ICO/t/t60writefail.t
   M /trunk/Imager/ICO/t/t70icosing.t
   M /trunk/Imager/ICO/t/t71icomult.t
   M /trunk/Imager/ICO/t/t72cursing.t
   M /trunk/Imager/ICO/t/t73curmult.t
   M /trunk/Imager/t/t07iolayer.t
   M /trunk/Imager/t/t69rubthru.t
   M /trunk/Imager/t/tr18561.t
   M /trunk/Imager/t/tr18561b.t

minor changes for compatibility with 5.005_03

------------------------------------------------------------------------
r1028 | tony | 2006-07-04 23:54:13 +1000 (Tue, 04 Jul 2006) | 2 lines
Changed paths:
   M /trunk/Imager/Imager.pm
   M /trunk/Imager/META.yml

bump to 0.51_02

------------------------------------------------------------------------
r1027 | tony | 2006-07-04 22:52:08 +1000 (Tue, 04 Jul 2006) | 3 lines
Changed paths:
   M /trunk/Imager/Imager.pm
   M /trunk/Imager/t/t93podcover.t

make sure the method index includes all documented Imager methods and
is properly sorted.

------------------------------------------------------------------------
r1026 | tony | 2006-07-04 22:06:22 +1000 (Tue, 04 Jul 2006) | 3 lines
Changed paths:
   M /trunk/Imager/Imager.xs
   M /trunk/Imager/ppport.h

update to a newer ppport.h and modify Imager.xs a bit based on its
recommendations

------------------------------------------------------------------------
r1025 | tony | 2006-07-04 21:39:37 +1000 (Tue, 04 Jul 2006) | 2 lines
Changed paths:
   M /trunk/Imager/filters.c

addition memory allocation checks

------------------------------------------------------------------------
r1024 | tony | 2006-07-04 21:28:34 +1000 (Tue, 04 Jul 2006) | 2 lines
Changed paths:
   M /trunk/Imager/lib/Imager/Matrix2d.pm
   M /trunk/Imager/lib/Imager/Transform.pm
   M /trunk/Imager/t/t93podcover.t

add more pod coverage tests (and the coverage needed)

------------------------------------------------------------------------
r1023 | tony | 2006-07-04 21:17:12 +1000 (Tue, 04 Jul 2006) | 6 lines
Changed paths:
   M /trunk/Imager
   M /trunk/Imager/CountColor
   M /trunk/Imager/DynTest
   M /trunk/Imager/Flines
   M /trunk/Imager/ICO
   M /trunk/Imager/Imager.pm
   M /trunk/Imager/MANIFEST
   M /trunk/Imager/Mandelbrot
   M /trunk/Imager/lib/Imager/Color/Float.pm
   M /trunk/Imager/lib/Imager/Color/Table.pm
   M /trunk/Imager/lib/Imager/Color.pm
   M /trunk/Imager/lib/Imager/Expr.pm
   M /trunk/Imager/lib/Imager/Files.pod
   M /trunk/Imager/lib/Imager/Fill.pm
   M /trunk/Imager/lib/Imager/Font/BBox.pm
   M /trunk/Imager/lib/Imager/Font/Wrap.pm
   M /trunk/Imager/lib/Imager/Font.pm
   A /trunk/Imager/lib/Imager/Handy.pod
   M /trunk/Imager/lib/Imager/ImageTypes.pod
   M /trunk/Imager/t/t93podcover.t

svn:ignore some more profiler files and other junk

we now pass the pod coverage test on the Imager class, remove the TODO

add pod coverage tests for several other classes, and pass them

------------------------------------------------------------------------
r1021 | tony | 2006-07-01 15:38:11 +1000 (Sat, 01 Jul 2006) | 4 lines
Changed paths:
   M /trunk/Imager/apidocs.perl
   M /trunk/Imager/lib/Imager/APIRef.pod

don't include the line number in the From comment so since unrelated edits
were causing changes to APIRef.pm.  This is still possible but they should
be a lot less frequence.

------------------------------------------------------------------------
r1020 | tony | 2006-07-01 15:31:35 +1000 (Sat, 01 Jul 2006) | 3 lines
Changed paths:
   M /trunk/Imager/t/t023palette.t

added error handling tests for bad colors supplied to addcolors()
and setcolors()

------------------------------------------------------------------------
r1019 | tony | 2006-06-30 23:51:45 +1000 (Fri, 30 Jun 2006) | 6 lines
Changed paths:
   M /trunk/Imager/Imager.xs
   M /trunk/Imager/iolayer.c
   A /trunk/Imager/lib/Imager/IO.pod
   M /trunk/Imager/t/t07iolayer.t

add more iolayer tests
callback handler fixes to return errors correctly
Imager::IO XS changes to make errors return empty lists
iolayer error handling fixes
documented Imager::IO methods

------------------------------------------------------------------------
r1018 | tony | 2006-06-29 21:39:10 +1000 (Thu, 29 Jun 2006) | 3 lines
Changed paths:
   M /trunk/Imager/Imager.pm
   M /trunk/Imager/t/t023palette.t

setcolors() and addcolors() can now accept non-object colors like most
other methods

------------------------------------------------------------------------
r1017 | tony | 2006-06-29 21:06:16 +1000 (Thu, 29 Jun 2006) | 2 lines
Changed paths:
   M /trunk/Imager/t/t101jpeg.t

extra jpeg tests to improve code coverage of jpeg.c

------------------------------------------------------------------------
r1016 | tony | 2006-06-29 20:56:09 +1000 (Thu, 29 Jun 2006) | 3 lines
Changed paths:
   M /trunk/Imager/bmp.c
   M /trunk/Imager/datatypes.c
   M /trunk/Imager/error.c
   M /trunk/Imager/filters.c
   M /trunk/Imager/font.c
   M /trunk/Imager/gif.c
   M /trunk/Imager/hlines.c
   M /trunk/Imager/image.c
   M /trunk/Imager/imexif.c
   M /trunk/Imager/iolayer.c
   M /trunk/Imager/log.c

long delayed renaming of m_fatal() to i_fatal() to match Imager's
functions in general

------------------------------------------------------------------------
r1015 | tony | 2006-06-29 20:53:07 +1000 (Thu, 29 Jun 2006) | 2 lines
Changed paths:
   M /trunk/Imager/META.yml

META.yml changed due to release

------------------------------------------------------------------------
r1014 | tony | 2006-06-29 20:51:12 +1000 (Thu, 29 Jun 2006) | 2 lines
Changed paths:
   M /trunk/Imager/jpeg.c

add missing parameter required by format in wiol_empty_output_buffer

------------------------------------------------------------------------
r1012 | tony | 2006-06-28 23:22:25 +1000 (Wed, 28 Jun 2006) | 2 lines
Changed paths:
   M /trunk/Imager/Imager.pm

bump to 0.51_01 for release

------------------------------------------------------------------------
r1011 | tony | 2006-06-28 00:38:10 +1000 (Wed, 28 Jun 2006) | 1 line
Changed paths:
   M /trunk/Imager/Makefile.PL

handle a missing Changes file when checking if we need to generate one.
------------------------------------------------------------------------
r1010 | tony | 2006-06-28 00:25:03 +1000 (Wed, 28 Jun 2006) | 2 lines
Changed paths:
   M /trunk/Imager/lib/Imager/APIRef.pod
   M /trunk/Imager/limits.c

document the image file limit functions for the API

------------------------------------------------------------------------
r1009 | tony | 2006-06-27 22:50:28 +1000 (Tue, 27 Jun 2006) | 1 line
Changed paths:
   M /trunk/Imager/iolayert.h

include stddef.h for size_t
------------------------------------------------------------------------
r1008 | tony | 2006-06-27 22:20:47 +1000 (Tue, 27 Jun 2006) | 10 lines
Changed paths:
   M /trunk/Imager/Imager.pm
   M /trunk/Imager/Imager.xs
   M /trunk/Imager/draw.c
   M /trunk/Imager/fills.c
   M /trunk/Imager/imager.h
   M /trunk/Imager/imext.c
   M /trunk/Imager/imext.h
   M /trunk/Imager/imexttypes.h
   M /trunk/Imager/lib/Imager/APIRef.pod
   M /trunk/Imager/lib/Imager/Draw.pod
   M /trunk/Imager/t/t20fill.t
   M /trunk/Imager/t/t82inline.t

implement a flood_fill that stops at a given color rather than filling
a region of the color at the start poiint.

from perl you can call flood_fill() with a border parameter to specify
a fill to border.

from the API call the i_flood_fill_border() or i_flood_cfill_border()
function.


------------------------------------------------------------------------
r1007 | tony | 2006-06-27 22:12:12 +1000 (Tue, 27 Jun 2006) | 3 lines
Changed paths:
   M /trunk/Imager/Makefile.PL

Makefile was generating lib/Imager/APIRef.pod, not
lib/Imager/APIRef.pm

------------------------------------------------------------------------
r1006 | tony | 2006-06-26 23:14:54 +1000 (Mon, 26 Jun 2006) | 3 lines
Changed paths:
   M /trunk/Imager/Makefile.PL

use the ExtUtils::MakeMaker prompt() function to ask about including
gif support instead of <STDIN>

------------------------------------------------------------------------
r1005 | tony | 2006-06-26 22:57:00 +1000 (Mon, 26 Jun 2006) | 3 lines
Changed paths:
   M /trunk/Imager/Imager.pm
   M /trunk/Imager/lib/Imager/Files.pod

document parseiptc()
  https://rt.cpan.org/Ticket/Display.html?id=17894

------------------------------------------------------------------------
r1004 | tony | 2006-06-26 22:34:40 +1000 (Mon, 26 Jun 2006) | 3 lines
Changed paths:
   M /trunk/Imager/lib/Imager/Files.pod

clarify that FORMATGUESS is only used when writing to a file.
  http://rt.cpan.org/Ticket/Display.html?id=18773

------------------------------------------------------------------------
r1003 | tony | 2006-06-26 22:20:27 +1000 (Mon, 26 Jun 2006) | 10 lines
Changed paths:
   M /trunk/Imager
   M /trunk/Imager/CountColor
   M /trunk/Imager/DynTest
   M /trunk/Imager/Flines
   M /trunk/Imager/ICO
   M /trunk/Imager/ICO/ICO.pm
   M /trunk/Imager/ICO/ICO.xs
   M /trunk/Imager/ICO/Makefile.PL
   M /trunk/Imager/ICO/imicon.c
   M /trunk/Imager/ICO/imicon.h
   A /trunk/Imager/ICO/lib (from /branches/Imager/ico/ICO/lib:1002)
   M /trunk/Imager/ICO/msicon.c
   M /trunk/Imager/ICO/msicon.h
   M /trunk/Imager/ICO/t/t10icon.t
   A /trunk/Imager/ICO/t/t30cursor.t (from /branches/Imager/ico/ICO/t/t30cursor.t:1002)
   A /trunk/Imager/ICO/t/t40readcurone.t (from /branches/Imager/ico/ICO/t/t40readcurone.t:1002)
   A /trunk/Imager/ICO/t/t41curmultread.t (from /branches/Imager/ico/ICO/t/t41curmultread.t:1002)
   A /trunk/Imager/ICO/t/t50readfail.t (from /branches/Imager/ico/ICO/t/t50readfail.t:1002)
   A /trunk/Imager/ICO/t/t60writefail.t (from /branches/Imager/ico/ICO/t/t60writefail.t:1002)
   A /trunk/Imager/ICO/t/t70icosing.t (from /branches/Imager/ico/ICO/t/t70icosing.t:1002)
   A /trunk/Imager/ICO/t/t71icomult.t (from /branches/Imager/ico/ICO/t/t71icomult.t:1002)
   A /trunk/Imager/ICO/t/t72cursing.t (from /branches/Imager/ico/ICO/t/t72cursing.t:1002)
   A /trunk/Imager/ICO/t/t73curmult.t (from /branches/Imager/ico/ICO/t/t73curmult.t:1002)
   A /trunk/Imager/ICO/testimg/pal43232.cur (from /branches/Imager/ico/ICO/testimg/pal43232.cur:1002)
   M /trunk/Imager/Imager.pm
   M /trunk/Imager/Imager.xs
   M /trunk/Imager/MANIFEST
   M /trunk/Imager/MANIFEST.SKIP
   M /trunk/Imager/Makefile.PL
   M /trunk/Imager/Mandelbrot
   M /trunk/Imager/dynfilt
   M /trunk/Imager/image.c
   M /trunk/Imager/imager.h
   M /trunk/Imager/imageri.h
   M /trunk/Imager/imext.c
   M /trunk/Imager/imext.h
   M /trunk/Imager/imexttypes.h
   M /trunk/Imager/iolayer.c
   M /trunk/Imager/iolayert.h
   M /trunk/Imager/lib/Imager/Files.pod
   M /trunk/Imager/t/t106tiff.t

add support for file write plugins

fix write_multi() writing to scalars
  https://rt.cpan.org/Ticket/Display.html?id=19982

add support for writing to ICO/CUR image files

added file limit check functions to the API


------------------------------------------------------------------------
r996 | tony | 2006-05-22 13:46:15 +1000 (Mon, 22 May 2006) | 2 lines
Changed paths:
   M /trunk/Imager/MANIFEST
   M /trunk/Imager/samples/README
   A /trunk/Imager/samples/inline_capture2image.pl

add inline_capture2image.pl sample

------------------------------------------------------------------------
r995 | tony | 2006-05-22 13:29:51 +1000 (Mon, 22 May 2006) | 2 lines
Changed paths:
   M /trunk/Imager/MANIFEST
   M /trunk/Imager/Makefile.PL
   D /trunk/Imager/lib/Imager/API.pm
   A /trunk/Imager/lib/Imager/API.pod (from /trunk/Imager/lib/Imager/API.pm:959)
   D /trunk/Imager/lib/Imager/APIRef.pm
   A /trunk/Imager/lib/Imager/APIRef.pod (from /trunk/Imager/lib/Imager/APIRef.pm:959)

rename APIRef.pm, API.pm to *.pod since they contain no code

------------------------------------------------------------------------
r994 | tony | 2006-05-22 13:24:49 +1000 (Mon, 22 May 2006) | 2 lines
Changed paths:
   M /trunk/Imager/tags.c

fix documentation nit

------------------------------------------------------------------------
r993 | tony | 2006-05-22 13:24:20 +1000 (Mon, 22 May 2006) | 2 lines
Changed paths:
   M /trunk/Imager/MANIFEST

added kwalitee test script to the MANIFEST

------------------------------------------------------------------------
r992 | tony | 2006-05-22 13:23:50 +1000 (Mon, 22 May 2006) | 2 lines
Changed paths:
   M /trunk/Imager/lib/Imager/ExtUtils.pm

give lib/Imager/ExtUtils.pm a version number

------------------------------------------------------------------------
r991 | tony | 2006-05-22 13:23:11 +1000 (Mon, 22 May 2006) | 4 lines
Changed paths:
   M /trunk/Imager/CountColor/Makefile.PL
   M /trunk/Imager/DynTest/Makefile.PL
   M /trunk/Imager/Flines/Makefile.PL
   M /trunk/Imager/Mandelbrot/Makefile.PL
   M /trunk/Imager/dynfilt/Makefile.PL
   M /trunk/Imager/t/Pod/Coverage/Imager.pm
   A /trunk/Imager/t/t94kwalitee.t
   M /trunk/Imager/t/testtools.pl

added "kwalitee" test script:
 - currently tests all pl/pm/PL files have use strict
 - added use strict to all pl/pm/PL files with code in them

------------------------------------------------------------------------
r990 | tony | 2006-05-22 13:18:27 +1000 (Mon, 22 May 2006) | 5 lines
Changed paths:
   M /trunk/Imager/image.c
   M /trunk/Imager/t/t1000files.t

i_test_format_probe:
 - added Utah RLE, 
 - separated ICO and CUR file formats, 
 - fix duplicate PCX entry

------------------------------------------------------------------------
r989 | tony | 2006-04-30 00:53:11 +1000 (Sun, 30 Apr 2006) | 4 lines
Changed paths:
   M /trunk/Imager/lib/Imager/interface.pod

minor updates, make it clear in the title this documents the C level.
tags is now used.
there's been a double image type for a while now.

------------------------------------------------------------------------
r988 | tony | 2006-04-30 00:44:27 +1000 (Sun, 30 Apr 2006) | 4 lines
Changed paths:
   M /trunk/Imager/lib/Imager/ImageTypes.pod

changed the title to better reflect what it documents - model, not
internals.
Split out the initial paragraphs into more concise statements.

------------------------------------------------------------------------
r983 | tony | 2006-04-19 22:19:56 +1000 (Wed, 19 Apr 2006) | 9 lines
Changed paths:
   M /trunk/Imager/Imager.pm
   M /trunk/Imager/MANIFEST
   A /trunk/Imager/t/tr18561.t
   A /trunk/Imager/t/tr18561b.t

- Calling setpixel() with color set to [ 0, 0, 0 ] would crash with 
Can't locate object method "new" via package "Imager::Color::Float" ...

- having the color parameter code create floating point colors could
cause other problems too, since most of the underlying functions can't
handle them, so removed the attempt to create float colors.

Fixes #18561

------------------------------------------------------------------------
r980 | tony | 2006-04-19 14:05:45 +1000 (Wed, 19 Apr 2006) | 4 lines
Changed paths:
   M /trunk/Imager/Imager.pm
   M /trunk/Imager/t/t66paste.t

Specifying the bottom edge of the source image to paste was broken in
a couple of different ways.
Fixes #18712

------------------------------------------------------------------------
r978 | tony | 2006-04-04 09:53:26 +1000 (Tue, 04 Apr 2006) | 2 lines
Changed paths:
   M /trunk/Imager/lib/Imager/Filters.pod

add AUTHOR, SEE ALSO, REVISION sections

------------------------------------------------------------------------
r977 | tony | 2006-04-02 16:57:56 +1000 (Sun, 02 Apr 2006) | 4 lines
Changed paths:
   M /trunk/Imager/MANIFEST
   M /trunk/Imager/imexif.c
   M /trunk/Imager/t/t101jpeg.t
   A /trunk/Imager/testimg/zerotype.jpg

fix range checking on IFD entry data types.  This could cause various 
crashes.
Fixes #18496

------------------------------------------------------------------------
r976 | tony | 2006-03-30 18:14:17 +1100 (Thu, 30 Mar 2006) | 2 lines
Changed paths:
   M /trunk/Imager/jpeg.c
   M /trunk/Imager/t/t101jpeg.t
   M /trunk/Imager/t/t108tga.t
   M /trunk/Imager/tga.c

backport fix for RT issue 18397

------------------------------------------------------------------------
r975 | tony | 2006-03-30 15:41:41 +1100 (Thu, 30 Mar 2006) | 5 lines
Changed paths:
   M /trunk/Imager/image.c
   M /trunk/Imager/t/t1000files.t

add format probes for SGI RGB, ILBM, XPM, PCX, FITS, Photoshop, EPS

if you have an entry for some other format you want to implement let 
me know.

------------------------------------------------------------------------
r964 | tony | 2006-03-24 20:49:57 +1100 (Fri, 24 Mar 2006) | 6 lines
Changed paths:
   A /trunk/Imager/ICO
   A /trunk/Imager/ICO/ICO.pm
   A /trunk/Imager/ICO/ICO.xs
   A /trunk/Imager/ICO/Makefile.PL
   A /trunk/Imager/ICO/imicon.c
   A /trunk/Imager/ICO/imicon.h
   A /trunk/Imager/ICO/msicon.c
   A /trunk/Imager/ICO/msicon.h
   A /trunk/Imager/ICO/t
   A /trunk/Imager/ICO/t/t10icon.t
   A /trunk/Imager/ICO/t/t20readone.t
   A /trunk/Imager/ICO/t/t21readmult.t
   A /trunk/Imager/ICO/testimg
   A /trunk/Imager/ICO/testimg/combo.ico
   A /trunk/Imager/ICO/testimg/pal13232.ico
   A /trunk/Imager/ICO/testimg/pal43232.ico
   A /trunk/Imager/ICO/testimg/pal43232.ppm
   A /trunk/Imager/ICO/testimg/pal83232.ico
   A /trunk/Imager/ICO/testimg/pal83232.ppm
   A /trunk/Imager/ICO/testimg/rgba3232.ico
   A /trunk/Imager/ICO/testimg/rgba3232.ppm
   M /trunk/Imager/MANIFEST
   M /trunk/Imager/MANIFEST.SKIP

- implement reading MS Windows icon files

- add t/Pod/Coverage/Imager.pm to MANIFEST

- skip some more trash in MANIFEST.SKIP

------------------------------------------------------------------------
r963 | tony | 2006-03-24 15:26:24 +1100 (Fri, 24 Mar 2006) | 2 lines
Changed paths:
   M /trunk/Imager/tga.c

make the targa probe even stricter

------------------------------------------------------------------------
r962 | tony | 2006-03-24 01:09:57 +1100 (Fri, 24 Mar 2006) | 10 lines
Changed paths:
   M /trunk/Imager/Imager.pm
   M /trunk/Imager/Imager.xs
   M /trunk/Imager/lib/Imager/Files.pod
   M /trunk/Imager/t/t70newgif.t

- added support for registering file readers

- if you supply and unknown type value (or Imager probes and finds
one) then Imager will attempt to load "Imager::File::\Utypecode" (this
can register a file reader.)

- note: these changes may mean slightly different errors if you call
read_multi() with no file or type parameters, since read_multi() now
attempts to do the same file format probe that read() does.

------------------------------------------------------------------------
r961 | tony | 2006-03-24 00:41:56 +1100 (Fri, 24 Mar 2006) | 5 lines
Changed paths:
   M /trunk/Imager/image.c
   M /trunk/Imager/imager.h
   M /trunk/Imager/t/t1000files.t
   M /trunk/Imager/tga.c

- i_test_format_probe() now attempts to detect MS Windows Icon/cursor files

- made the TGA probe a bit more specific since it was giving false
  positives on icon files.

------------------------------------------------------------------------
r960 | tony | 2006-03-22 12:01:15 +1100 (Wed, 22 Mar 2006) | 8 lines
Changed paths:
   M /trunk/Imager/Imager.xs
   M /trunk/Imager/MANIFEST
   M /trunk/Imager/imdatatypes.h
   M /trunk/Imager/imperl.h
   M /trunk/Imager/iolayer.c
   M /trunk/Imager/iolayer.h
   A /trunk/Imager/iolayert.h

More iolayers work:

- rename the callback types
- move types and the call macros into iolayer.t
- move typedef for Imager__IO to imperl.h

so now io glue objects can be used from XS/Inline

------------------------------------------------------------------------
r957 | tony | 2006-03-16 16:41:10 +1100 (Thu, 16 Mar 2006) | 6 lines
Changed paths:
   M /trunk/Imager/Imager.xs
   M /trunk/Imager/iolayer.c
   M /trunk/Imager/iolayer.h
   M /trunk/Imager/t/t07iolayer.t

more iolayer goodness:

- make write/read/seek/close on an IO object visible as methods from perl

- allow SEEK_CUR on bufchains

------------------------------------------------------------------------
r956 | tony | 2006-03-15 23:49:49 +1100 (Wed, 15 Mar 2006) | 3 lines
Changed paths:
   M /trunk/Imager/Imager.xs
   M /trunk/Imager/iolayer.c
   M /trunk/Imager/iolayer.h

io_glue_destroy() now uses an extra callback to handle type specific
destruction, instead of switching on "class"

------------------------------------------------------------------------
r955 | tony | 2006-03-15 23:08:47 +1100 (Wed, 15 Mar 2006) | 7 lines
Changed paths:
   M /trunk/Imager/iolayer.c
   M /trunk/Imager/iolayer.h

iolayer modifications:

- move private types and functions into iolayers.c

- make each layer "new" function do the initialization that
io_commit_types() was doing.

------------------------------------------------------------------------
r954 | tony | 2006-03-15 22:32:59 +1100 (Wed, 15 Mar 2006) | 2 lines
Changed paths:
   M /trunk/Imager/MANIFEST

fixed incorrect filename for t/t93podcover.t in MANIFEST

------------------------------------------------------------------------
r953 | tony | 2006-03-14 11:50:09 +1100 (Tue, 14 Mar 2006) | 6 lines
Changed paths:
   M /trunk/Imager/Imager.pm

remove the reference to IRC from SUPPORT, I'm not paying enough
attention there for it to be useful.  Yes, there is a channel, but the
mailing list/perlmonks/direct email/cpanratings are more likely to get
you some help.


------------------------------------------------------------------------
r952 | tony | 2006-03-13 13:46:48 +1100 (Mon, 13 Mar 2006) | 3 lines
Changed paths:
   M /trunk/Imager/Imager.pm
   M /trunk/Imager/t/t101jpeg.t

prevent the parseiptc method from warning when there's no IPTC data to
process

------------------------------------------------------------------------
r951 | tony | 2006-03-13 12:58:44 +1100 (Mon, 13 Mar 2006) | 2 lines
Changed paths:
   M /trunk/Imager
   M /trunk/Imager/MANIFEST
   A /trunk/Imager/t/Pod
   A /trunk/Imager/t/Pod/Coverage
   A /trunk/Imager/t/Pod/Coverage/Imager.pm
   M /trunk/Imager/t/t101jpeg.t
   A /trunk/Imager/t/t93podcover.t

POD coverage tests, as a TODO for now

------------------------------------------------------------------------
r950 | tony | 2006-03-12 00:16:47 +1100 (Sun, 12 Mar 2006) | 2 lines
Changed paths:
   M /trunk/Imager/Imager.pm
   M /trunk/Imager/Imager.xs
   M /trunk/Imager/log.c
   M /trunk/Imager/log.h
   M /trunk/Imager/t/t50basicoo.t

rename some private functions to private names

------------------------------------------------------------------------
r949 | tony | 2006-03-09 11:56:19 +1100 (Thu, 09 Mar 2006) | 3 lines
Changed paths:
   M /trunk/Imager/io.c

malloc_state() no longer writes to stdout when Imager is built without
memory debugging

------------------------------------------------------------------------
r948 | tony | 2006-03-08 23:11:41 +1100 (Wed, 08 Mar 2006) | 2 lines
Changed paths:
   M /trunk/Imager/TODO

initial targets for 0.50

------------------------------------------------------------------------
r947 | tony | 2006-03-08 22:56:41 +1100 (Wed, 08 Mar 2006) | 7 lines
Changed paths:
   M /trunk/Imager/t/t82inline.t

Skip Inline tests when we're in a directory containing spaces in the
path, since Inline itself errors out when used in such a directory.
See #4150.

Fixes: 18049.


------------------------------------------------------------------------
r946 | tony | 2006-03-07 23:06:50 +1100 (Tue, 07 Mar 2006) | 2 lines
Changed paths:
   M /trunk/Imager/png.c

removed unreachable code (mymalloc() succeeds or exit()s)

------------------------------------------------------------------------
r945 | tony | 2006-03-07 23:01:38 +1100 (Tue, 07 Mar 2006) | 2 lines
Changed paths:
   M /trunk/Imager/Makefile.PL

Actually get the changes in the right order.

------------------------------------------------------------------------
r944 | tony | 2006-03-07 22:54:01 +1100 (Tue, 07 Mar 2006) | 5 lines
Changed paths:
   D /trunk/Imager/Changes
   A /trunk/Imager/Changes.old (from /trunk/Imager/Changes:943)
   M /trunk/Imager/MANIFEST
   M /trunk/Imager/Makefile.PL

New changes will be listed most recent first, and is generated from
svn log.

Changes for older revisions of Imager can be found in Changes.old.

------------------------------------------------------------------------