GD-Image-CopyIFS

 view release on metacpan or  search on metacpan

CopyIFS.pm  view on Meta::CPAN

This number, between 0 and 1, determines the minimum fraction of 
the destination points to be colored by the IFS algorthm. The 
remainder simply use the nearest available pixel to determine 
the colour. Values very close to 1 will produce better looking 
images, but will take longer. A default of 0.999999 is used
if not specified.

=item max_factor

This number, greater than 1, determines the maximum number
of iterations that the IFS algorithm uses. A value of 1
will have this iteration number equal to the number of
pixels in the destination; increasing this value will
produce better looking images, but at the expense of speed.
Reasonable values are around 5-10. A default of 7 is used
if not specified.

=back

The default values of C<min_factor> and C<max_factor> will
be used if these are not passed to C<copyIFS>, but if you

libIFS.c  view on Meta::CPAN

and is copied to the destination, starting at (dstX, dstY),
of size (dstW, dstH).

min_factor, between 0 and 1, determines the minimum fraction of 
the destination points to be colored by the IFS algorthm. The 
remainder simply use the nearest available pixel to determine 
the colour. Values very close to 1 will produce better looking 
images, but will take longer.

max_factor, greater than 1, determines the maximum number
of iterations that the IFS algorithm uses. A value of 1
will have this iteration number equal to the number of
pixels in the destination; increasing this value will
produce better looking images, but at the expense of speed.
Reasonable values are around 5.
**********************************************************
*/

void gdImageCopyIFS (gdImagePtr dstImg, gdImagePtr srcImg, 
                     int dstX, int dstY, int srcX, int srcY,
                     int dstW, int dstH, int srcW, int srcH,



( run in 1.209 second using v1.01-cache-2.11-cpan-71847e10f99 )