|
NAME="GENERATOR"
CONTENT="Modular DocBook HTML Stylesheet Version 1.52">
Pixel buffer affine transformationsSynopsis
Detailsenum ArtFilterLevel
art_rgb_pixbuf_affine ()
Affine transform the source image stored in src, compositing over the area of destination image dst specified by the rectangle (x0, y0) - (x1, y1). As usual in libart, the left and top edges of this rectangle are included, and the right and bottom edges are excluded. The alphagamma parameter specifies that the alpha compositing be done in a gamma-corrected color space. In the current implementation, it is ignored. The level parameter specifies the speed/quality tradeoff of the image interpolation. Currently, only ART_FILTER_NEAREST is implemented.
art_rgb_affine ()
Affine transform the source image stored in src, compositing over the area of destination image dst specified by the rectangle (x0, y0) - (x1, y1). As usual in libart, the left and top edges of this rectangle are included, and the right and bottom edges are excluded. The alphagamma parameter specifies that the alpha compositing be done in a gamma-corrected color space. Since the source image is opaque RGB, this argument only affects the edges. In the current implementation, it is ignored. The level parameter specifies the speed/quality tradeoff of the image interpolation. Currently, only ART_FILTER_NEAREST is implemented.
art_rgb_rgba_affine ()
Affine transform the source image stored in src, compositing over the area of destination image dst specified by the rectangle (x0, y0) - (x1, y1). As usual in libart, the left and top edges of this rectangle are included, and the right and bottom edges are excluded. The alphagamma parameter specifies that the alpha compositing be done in a gamma-corrected color space. In the current implementation, it is ignored. The level parameter specifies the speed/quality tradeoff of the image interpolation. Currently, only ART_FILTER_NEAREST is implemented.
art_rgb_bitmap_affine ()
Affine transform the source image stored in src, compositing over the area of destination image dst specified by the rectangle (x0, y0) - (x1, y1). The source bitmap stored with MSB as the leftmost pixel. Source 1 bits correspond to the semitransparent color rgba, while source 0 bits are transparent. See art_rgb_affine() for a description of additional parameters.
|