Struct icns::Image [] [src]

pub struct Image { /* fields omitted */ }

A decoded icon image.

An Image struct consists of a width, a height, a PixelFormat, and a data array encoding the image pixels in that format.

Regardless of format, pixel data for an image is always stored one complete pixel at a time, in row-major order (that is, the top-left pixel comes first, followed by the rest of the top row from left to right; then comes the second row down, again from left to right, and so on until finally the bottom-right pixel comes last).

Methods

impl Image
[src]

[src]

Creates a new image with all pixel data set to zero.

[src]

Creates a new image using the given pixel data. Returns an error if the data array is not the correct length.

[src]

Returns the format in which this image's pixel data is stored.

[src]

Returns the width of the image, in pixels.

[src]

Returns the height of the image, in pixels.

[src]

Returns a reference to the image's pixel data.

[src]

Returns a mutable reference to the image's pixel data.

[src]

Consumes the image, returning the pixel data without cloning it.

[src]

Creates a copy of this image by converting to the specified pixel format. This operation always succeeds, but may lose information (e.g. converting from RGBA to RGB will silently drop the alpha channel). If the source image is already in the requested format, this is equivalant to simply calling clone().

[src]

Reads an image from a PNG file.

[src]

Writes the image to a PNG file.

Trait Implementations

impl Clone for Image
[src]

[src]

Returns a copy of the value. Read more

1.0.0
[src]

Performs copy-assignment from source. Read more