When a photo image is created, Tk also creates a new object. This object supports the configure and cget
methods described in Tk::options which can be used to enquire and modify the options described above.
Those options that write data to the image generally expand the size of the image, if necessary, to
accommodate the data written to the image, unless the user has specified non-zero values for the -width
and/or -height configuration options, in which case the width and/or height, respectively, of the image
will not be changed.
The following addition methods are available for photo images:
$image->blank
Blank the image; that is, set the entire image to have no data, so it will be displayed as
transparent, and the background of whatever window it is displayed in will show through.
$image->copy(sourceImage ?,optionvalue(s)...?)
Copies a region from the image called $sourceImage (which must be a photo image) to the image called
$image, possibly with pixel zooming and/or subsampling. If no options are specified, this method
copies the whole of $sourceImage into $image, starting at coordinates (0,0) in $image. The following
options may be specified:
-from => x1,y1,?,x2,y2?
Specifies a rectangular sub-region of the source image to be copied. (x1,y1) and (x2,y2)
specify diagonally opposite corners of the rectangle. If x2 and y2 are not specified, the
default value is the bottom-right corner of the source image. The pixels copied will include
the left and top edges of the specified rectangle but not the bottom or right edges. If the
-from option is not given, the default is the whole source image.
-to => x1,y1,?,x2,y2?
Specifies a rectangular sub-region of the destination image to be affected. (x1,y1) and
(x2,y2) specify diagonally opposite corners of the rectangle. If x2 and y2 are not
specified, the default value is (x1,y1) plus the size of the source region (after subsampling
and zooming, if specified). If x2 and y2 are specified, the source region will be replicated
if necessary to fill the destination region in a tiled fashion.
-shrink Specifies that the size of the destination image should be reduced, if necessary, so that the
region being copied into is at the bottom-right corner of the image. This option will not
affect the width or height of the image if the user has specified a non-zero value for the
-width or -height configuration option, respectively.
-zoom => x,y
Specifies that the source region should be magnified by a factor of x in the X direction and
y in the Y direction. If y is not given, the default value is the same as x. With this
option, each pixel in the source image will be expanded into a block of x x y pixels in the
destination image, all the same color. x and y must be greater than 0.
-subsample => x,y
Specifies that the source image should be reduced in size by using only every xth pixel in
the X direction and yth pixel in the Y direction. Negative values will cause the image to be
flipped about the Y or X axes, respectively. If y is not given, the default value is the
same as x.
-compositingrule => rule
Specifies how transparent pixels in the source image are combined with the destination image.
When a compositing rule of overlay is set, the old contents of the destination image are
visible, as if the source image were printed on a piece of transparent film and placed over
the top of the destination. When a compositing rule of set is set, the old contents of the
destination image are discarded and the source image is used as-is. The default compositing
rule is overlay.
$image->data(?optionvalue(s),...?)
Returns image data in the form of a string. The following options may be specified:
-background => color
If the color is specified, the data will not contain any transparency information. In all
transparent pixels the color will be replaced by the specified color.
-format => format-name
Specifies the name of the image file format handler to be used. Specifically, this method
searches for the first handler whose name matches a initial substring of format-name and
which has the capability to read this image data. If this option is not given, this method
uses the first handler that has the capability to read the image data.
-from => x1,y1,?,x2,y2?
Specifies a rectangular region of $image to be returned. If only x1 and y1 are specified,
the region extends from (x1,y1) to the bottom-right corner of $image. If all four
coordinates are given, they specify diagonally opposite corners of the rectangular region,
including x1,y1 and excluding x2,y2. The default, if this option is not given, is the whole
image.
-grayscale
If this options is specified, the data will not contain color information. All pixel data
will be transformed into grayscale.
$image->get(x,y)
Returns the color of the pixel at coordinates (x,y) in the image as a list of three integers between
0 and 255, representing the red, green and blue components respectively.
$image->put(data ?,-format=>format-name? ?,-to=> x1y1?x2y2??)
Sets pixels in $image to the data specified in data. This command first searches the list of image
file format handlers for a handler that can interpret the data in data, and then reads the image
encoded within into $image (the destination image). If data does not match any known format, an
attempt to interpret it as a (top-to-bottom) list of scan-lines is made, with each scan-line being a
(left-to-right) list of pixel colors (see Tk_GetColor for a description of valid colors.) Every
scan-line must be of the same length. Note that when data is a single color name, you are
instructing Tk to fill a rectangular region with that color. The following options may be specified:
-format =>format-name
Specifies the format of the image data in data. Specifically, only image file format handlers
whose names begin with format-name will be used while searching for an image data format handler
to read the data.
-to =>x,y ?,x2,y2?
Specifies the coordinates of the top-left corner (x1,y1) of the region of $image into which data
from filename are to be read. The default is (0,0). If x2,y2 is given and data is not large
enough to cover the rectangle specified by this option, the image data extracted will be tiled so
it covers the entire destination rectangle. Note that if data specifies a single color value,
then a region extending to the bottom-right corner represented by (x2,y2) will be filled with
that color.
$image->read(filename ?,optionvalue(s),...?)
Reads image data from the file named filename into the image. This method first searches the list of
image file format handlers for a handler that can interpret the data in filename, and then reads the
image in filename into $image (the destination image). The following options may be specified:
-format => format-name
Specifies the format of the image data in filename. Specifically, only image file format
handlers whose names begin with format-name will be used while searching for an image data
format handler to read the data.
-from => x1,y1,x2,y2
Specifies a rectangular sub-region of the image file data to be copied to the destination
image. If only x1 and y1 are specified, the region extends from (x1,y1) to the bottom-right
corner of the image in the image file. If all four coordinates are specified, they specify
diagonally opposite corners or the region. The default, if this option is not specified, is
the whole of the image in the image file.
-shrink If this option is specified, the size of $image will be reduced, if necessary, so that the
region into which the image file data are read is at the bottom-right corner of the $image.
This option will not affect the width or height of the image if the user has specified a non-
zero value for the -width or -height configuration option, respectively.
-to => x,y
Specifies the coordinates of the top-left corner of the region of $image into which data from
filename are to be read. The default is (0,0).
$image->redither
The dithering algorithm used in displaying photo images propagates quantization errors from one pixel
to its neighbors. If the image data for $image is supplied in pieces, the dithered image may not be
exactly correct. Normally the difference is not noticeable, but if it is a problem, this method can
be used to recalculate the dithered image in each window where the image is displayed.
$image->transparency(subcommand,?arg,arg...?);
Allows examination and manipulation of the transparency information in the photo image. Several
subcommands are available:
$image->transparencyGet(x,y);
Returns a boolean indicating if the pixel at (x,y) is transparent.
$image->transparencySet(x,y,boolean);
Makes the pixel at (x,y) transparent if boolean is true, and makes that pixel opaque otherwise.
$image->write(filename ?,optionvalue(s),...?)
Writes image data from $image to a file named filename. The following options may be specified:
-background => color
If the color is specified, the data will not contain any transparency information. In all
transparent pixels the color will be replaced by the specified color.
-format => format-name
Specifies the name of the image file format handler to be used to write the data to the file.
Specifically, this subcommand searches for the first handler whose name matches a initial
substring of format-name and which has the capability to write an image file. If this option
is not given, this subcommand uses the first handler that has the capability to write an
image file.
-from => x1,y1,?,x2,y2?
Specifies a rectangular region of $image to be written to the image file. If only x1 and y1
are specified, the region extends from (x1,y1) to the bottom-right corner of $image. If all
four coordinates are given, they specify diagonally opposite corners of the rectangular
region. The default, if this option is not given, is the whole image.
-grayscale
If this options is specified, the data will not contain color information. All pixel data
will be transformed into grayscale.