gi-gdkpixbuf-2.0.22: GdkPixbuf bindings

CopyrightWill Thompson Iñaki García Etxebarria and Jonas Platte
LicenseLGPL-2.1
MaintainerIñaki García Etxebarria (inaki@blueleaf.cc)
Safe HaskellNone
LanguageHaskell2010

GI.GdkPixbuf.Objects.Pixbuf

Contents

Description

This is the main structure in the gdk-pixbuf library. It is used to represent images. It contains information about the image's pixel data, its color space, bits per sample, width and height, and the rowstride (the number of bytes between the start of one row and the start of the next).

Synopsis

Exported types

newtype Pixbuf Source #

Memory-managed wrapper type.

Constructors

Pixbuf (ManagedPtr Pixbuf) 
Instances
GObject Pixbuf Source # 
Instance details

Defined in GI.GdkPixbuf.Objects.Pixbuf

Methods

gobjectType :: IO GType #

HasParentTypes Pixbuf Source # 
Instance details

Defined in GI.GdkPixbuf.Objects.Pixbuf

type ParentTypes Pixbuf Source # 
Instance details

Defined in GI.GdkPixbuf.Objects.Pixbuf

type ParentTypes Pixbuf = Object ': (Icon ': (LoadableIcon ': ([] :: [Type])))

class (GObject o, IsDescendantOf Pixbuf o) => IsPixbuf o Source #

Type class for types which can be safely cast to Pixbuf, for instance with toPixbuf.

Instances
(GObject o, IsDescendantOf Pixbuf o) => IsPixbuf o Source # 
Instance details

Defined in GI.GdkPixbuf.Objects.Pixbuf

toPixbuf :: (MonadIO m, IsPixbuf o) => o -> m Pixbuf Source #

Cast to Pixbuf, for types for which this is known to be safe. For general casts, use castTo.

noPixbuf :: Maybe Pixbuf Source #

A convenience alias for Nothing :: Maybe Pixbuf.

Methods

addAlpha

pixbufAddAlpha Source #

Arguments

:: (HasCallStack, MonadIO m, IsPixbuf a) 
=> a

pixbuf: A Pixbuf.

-> Bool

substituteColor: Whether to set a color to zero opacity. If this is False, then the (r, g, b) arguments will be ignored.

-> Word8

r: Red value to substitute.

-> Word8

g: Green value to substitute.

-> Word8

b: Blue value to substitute.

-> m Pixbuf

Returns: A newly-created pixbuf with a reference count of 1.

Takes an existing pixbuf and adds an alpha channel to it. If the existing pixbuf already had an alpha channel, the channel values are copied from the original; otherwise, the alpha channel is initialized to 255 (full opacity).

If substituteColor is True, then the color specified by (r, g, b) will be assigned zero opacity. That is, if you pass (255, 255, 255) for the substitute color, all white pixels will become fully transparent.

applyEmbeddedOrientation

pixbufApplyEmbeddedOrientation Source #

Arguments

:: (HasCallStack, MonadIO m, IsPixbuf a) 
=> a

src: A Pixbuf.

-> m Pixbuf

Returns: A newly-created pixbuf, Nothing if not enough memory could be allocated for it, or a reference to the input pixbuf (with an increased reference count).

Takes an existing pixbuf and checks for the presence of an associated "orientation" option, which may be provided by the jpeg loader (which reads the exif orientation tag) or the tiff loader (which reads the tiff orientation tag, and compensates it for the partial transforms performed by libtiff). If an orientation option/tag is present, the appropriate transform will be performed so that the pixbuf is oriented correctly.

Since: 2.12

calculateRowstride

pixbufCalculateRowstride Source #

Arguments

:: (HasCallStack, MonadIO m) 
=> Colorspace

colorspace: Color space for image

-> Bool

hasAlpha: Whether the image should have transparency information

-> Int32

bitsPerSample: Number of bits per color sample

-> Int32

width: Width of image in pixels, must be > 0

-> Int32

height: Height of image in pixels, must be > 0

-> m Int32

Returns: the rowstride for the given values, or -1 in case of error.

Calculates the rowstride that an image created with those values would have. This is useful for front-ends and backends that want to sanity check image values without needing to create them.

Since: 2.36.8

composite

pixbufComposite Source #

Arguments

:: (HasCallStack, MonadIO m, IsPixbuf a, IsPixbuf b) 
=> a

src: a Pixbuf

-> b

dest: the Pixbuf into which to render the results

-> Int32

destX: the left coordinate for region to render

-> Int32

destY: the top coordinate for region to render

-> Int32

destWidth: the width of the region to render

-> Int32

destHeight: the height of the region to render

-> Double

offsetX: the offset in the X direction (currently rounded to an integer)

-> Double

offsetY: the offset in the Y direction (currently rounded to an integer)

-> Double

scaleX: the scale factor in the X direction

-> Double

scaleY: the scale factor in the Y direction

-> InterpType

interpType: the interpolation type for the transformation.

-> Int32

overallAlpha: overall alpha for source image (0..255)

-> m () 

Creates a transformation of the source image src by scaling by scaleX and scaleY then translating by offsetX and offsetY. This gives an image in the coordinates of the destination pixbuf. The rectangle (destX, destY, destWidth, destHeight) is then alpha blended onto the corresponding rectangle of the original destination image.

When the destination rectangle contains parts not in the source image, the data at the edges of the source image is replicated to infinity.

compositeColor

pixbufCompositeColor Source #

Arguments

:: (HasCallStack, MonadIO m, IsPixbuf a, IsPixbuf b) 
=> a

src: a Pixbuf

-> b

dest: the Pixbuf into which to render the results

-> Int32

destX: the left coordinate for region to render

-> Int32

destY: the top coordinate for region to render

-> Int32

destWidth: the width of the region to render

-> Int32

destHeight: the height of the region to render

-> Double

offsetX: the offset in the X direction (currently rounded to an integer)

-> Double

offsetY: the offset in the Y direction (currently rounded to an integer)

-> Double

scaleX: the scale factor in the X direction

-> Double

scaleY: the scale factor in the Y direction

-> InterpType

interpType: the interpolation type for the transformation.

-> Int32

overallAlpha: overall alpha for source image (0..255)

-> Int32

checkX: the X offset for the checkboard (origin of checkboard is at -checkX, -checkY)

-> Int32

checkY: the Y offset for the checkboard

-> Int32

checkSize: the size of checks in the checkboard (must be a power of two)

-> Word32

color1: the color of check at upper left

-> Word32

color2: the color of the other check

-> m () 

Creates a transformation of the source image src by scaling by scaleX and scaleY then translating by offsetX and offsetY, then alpha blends the rectangle (destX ,destY, destWidth, destHeight) of the resulting image with a checkboard of the colors color1 and color2 and renders it onto the destination image.

If the source image has no alpha channel, and overallAlpha is 255, a fast path is used which omits the alpha blending and just performs the scaling.

See pixbufCompositeColorSimple for a simpler variant of this function suitable for many tasks.

compositeColorSimple

pixbufCompositeColorSimple Source #

Arguments

:: (HasCallStack, MonadIO m, IsPixbuf a) 
=> a

src: a Pixbuf

-> Int32

destWidth: the width of destination image

-> Int32

destHeight: the height of destination image

-> InterpType

interpType: the interpolation type for the transformation.

-> Int32

overallAlpha: overall alpha for source image (0..255)

-> Int32

checkSize: the size of checks in the checkboard (must be a power of two)

-> Word32

color1: the color of check at upper left

-> Word32

color2: the color of the other check

-> m (Maybe Pixbuf)

Returns: the new Pixbuf, or Nothing if not enough memory could be allocated for it.

Creates a new Pixbuf by scaling src to destWidth x destHeight and alpha blending the result with a checkboard of colors color1 and color2.

copy

pixbufCopy Source #

Arguments

:: (HasCallStack, MonadIO m, IsPixbuf a) 
=> a

pixbuf: A pixbuf.

-> m (Maybe Pixbuf)

Returns: A newly-created pixbuf with a reference count of 1, or Nothing if not enough memory could be allocated.

Creates a new Pixbuf with a copy of the information in the specified pixbuf. Note that this does not copy the options set on the original Pixbuf, use pixbufCopyOptions for this.

copyArea

pixbufCopyArea Source #

Arguments

:: (HasCallStack, MonadIO m, IsPixbuf a, IsPixbuf b) 
=> a

srcPixbuf: Source pixbuf.

-> Int32

srcX: Source X coordinate within srcPixbuf.

-> Int32

srcY: Source Y coordinate within srcPixbuf.

-> Int32

width: Width of the area to copy.

-> Int32

height: Height of the area to copy.

-> b

destPixbuf: Destination pixbuf.

-> Int32

destX: X coordinate within destPixbuf.

-> Int32

destY: Y coordinate within destPixbuf.

-> m () 

Copies a rectangular area from srcPixbuf to destPixbuf. Conversion of pixbuf formats is done automatically.

If the source rectangle overlaps the destination rectangle on the same pixbuf, it will be overwritten during the copy operation. Therefore, you can not use this function to scroll a pixbuf.

copyOptions

pixbufCopyOptions Source #

Arguments

:: (HasCallStack, MonadIO m, IsPixbuf a, IsPixbuf b) 
=> a

srcPixbuf: a Pixbuf to copy options from

-> b

destPixbuf: the Pixbuf to copy options to

-> m Bool

Returns: True on success.

Copy the key/value pair options attached to a Pixbuf to another. This is useful to keep original metadata after having manipulated a file. However be careful to remove metadata which you've already applied, such as the "orientation" option after rotating the image.

Since: 2.36

fill

pixbufFill Source #

Arguments

:: (HasCallStack, MonadIO m, IsPixbuf a) 
=> a

pixbuf: a Pixbuf

-> Word32

pixel: RGBA pixel to clear to (0xffffffff is opaque white, 0x00000000 transparent black)

-> m () 

Clears a pixbuf to the given RGBA value, converting the RGBA value into the pixbuf's pixel format. The alpha will be ignored if the pixbuf doesn't have an alpha channel.

flip

pixbufFlip Source #

Arguments

:: (HasCallStack, MonadIO m, IsPixbuf a) 
=> a

src: a Pixbuf

-> Bool

horizontal: True to flip horizontally, False to flip vertically

-> m (Maybe Pixbuf)

Returns: the new Pixbuf, or Nothing if not enough memory could be allocated for it.

Flips a pixbuf horizontally or vertically and returns the result in a new pixbuf.

Since: 2.6

getBitsPerSample

pixbufGetBitsPerSample Source #

Arguments

:: (HasCallStack, MonadIO m, IsPixbuf a) 
=> a

pixbuf: A pixbuf.

-> m Int32

Returns: Number of bits per color sample.

Queries the number of bits per color sample in a pixbuf.

getByteLength

pixbufGetByteLength Source #

Arguments

:: (HasCallStack, MonadIO m, IsPixbuf a) 
=> a

pixbuf: A pixbuf

-> m Word64

Returns: The length of the pixel data.

Returns the length of the pixel data, in bytes.

Since: 2.26

getColorspace

pixbufGetColorspace Source #

Arguments

:: (HasCallStack, MonadIO m, IsPixbuf a) 
=> a

pixbuf: A pixbuf.

-> m Colorspace

Returns: Color space.

Queries the color space of a pixbuf.

getFileInfo

pixbufGetFileInfo Source #

Arguments

:: (HasCallStack, MonadIO m) 
=> [Char]

filename: The name of the file to identify.

-> m (Maybe PixbufFormat, Int32, Int32)

Returns: A PixbufFormat describing the image format of the file or Nothing if the image format wasn't recognized. The return value is owned by Pixbuf and should not be freed.

Parses an image file far enough to determine its format and size.

Since: 2.4

getFileInfoAsync

pixbufGetFileInfoAsync Source #

Arguments

:: (HasCallStack, MonadIO m, IsCancellable a) 
=> [Char]

filename: The name of the file to identify

-> Maybe a

cancellable: optional Cancellable object, Nothing to ignore

-> Maybe AsyncReadyCallback

callback: a AsyncReadyCallback to call when the file info is available

-> m () 

Asynchronously parses an image file far enough to determine its format and size.

For more details see pixbufGetFileInfo, which is the synchronous version of this function.

When the operation is finished, callback will be called in the main thread. You can then call pixbufGetFileInfoFinish to get the result of the operation.

Since: 2.32

getFileInfoFinish

pixbufGetFileInfoFinish Source #

Arguments

:: (HasCallStack, MonadIO m, IsAsyncResult a) 
=> a

asyncResult: a AsyncResult

-> m (PixbufFormat, Int32, Int32)

Returns: A PixbufFormat describing the image format of the file or Nothing if the image format wasn't recognized. The return value is owned by GdkPixbuf and should not be freed. (Can throw GError)

Finishes an asynchronous pixbuf parsing operation started with pixbufGetFileInfoAsync.

Since: 2.32

getFormats

pixbufGetFormats Source #

Arguments

:: (HasCallStack, MonadIO m) 
=> m [PixbufFormat]

Returns: A list of GdkPixbufFormats describing the supported image formats. The list should be freed when it is no longer needed, but the structures themselves are owned by Pixbuf and should not be freed.

Obtains the available information about the image formats supported by GdkPixbuf.

Since: 2.2

getHasAlpha

pixbufGetHasAlpha Source #

Arguments

:: (HasCallStack, MonadIO m, IsPixbuf a) 
=> a

pixbuf: A pixbuf.

-> m Bool

Returns: True if it has an alpha channel, False otherwise.

Queries whether a pixbuf has an alpha channel (opacity information).

getHeight

pixbufGetHeight Source #

Arguments

:: (HasCallStack, MonadIO m, IsPixbuf a) 
=> a

pixbuf: A pixbuf.

-> m Int32

Returns: Height in pixels.

Queries the height of a pixbuf.

getNChannels

pixbufGetNChannels Source #

Arguments

:: (HasCallStack, MonadIO m, IsPixbuf a) 
=> a

pixbuf: A pixbuf.

-> m Int32

Returns: Number of channels.

Queries the number of channels of a pixbuf.

getOption

pixbufGetOption Source #

Arguments

:: (HasCallStack, MonadIO m, IsPixbuf a) 
=> a

pixbuf: a Pixbuf

-> Text

key: a nul-terminated string.

-> m Text

Returns: the value associated with key. This is a nul-terminated string that should not be freed or Nothing if key was not found.

Looks up key in the list of options that may have been attached to the pixbuf when it was loaded, or that may have been attached by another function using pixbufSetOption.

For instance, the ANI loader provides "Title" and "Artist" options. The ICO, XBM, and XPM loaders provide "x_hot" and "y_hot" hot-spot options for cursor definitions. The PNG loader provides the tEXt ancillary chunk key/value pairs as options. Since 2.12, the TIFF and JPEG loaders return an "orientation" option string that corresponds to the embedded TIFF/Exif orientation tag (if present). Since 2.32, the TIFF loader sets the "multipage" option string to "yes" when a multi-page TIFF is loaded. Since 2.32 the JPEG and PNG loaders set "x-dpi" and "y-dpi" if the file contains image density information in dots per inch. Since 2.36.6, the JPEG loader sets the "comment" option with the comment EXIF tag.

getPixels

pixbufGetPixels Source #

Arguments

:: (HasCallStack, MonadIO m, IsPixbuf a) 
=> a

pixbuf: A pixbuf.

-> m ByteString

Returns: A pointer to the pixbuf's pixel data. Please see the section on [image data][image-data] for information about how the pixel data is stored in memory.

This function will cause an implicit copy of the pixbuf data if the pixbuf was created from read-only data.

Queries a pointer to the pixel data of a pixbuf.

Since: 2.26

getRowstride

pixbufGetRowstride Source #

Arguments

:: (HasCallStack, MonadIO m, IsPixbuf a) 
=> a

pixbuf: A pixbuf.

-> m Int32

Returns: Distance between row starts.

Queries the rowstride of a pixbuf, which is the number of bytes between the start of a row and the start of the next row.

getWidth

pixbufGetWidth Source #

Arguments

:: (HasCallStack, MonadIO m, IsPixbuf a) 
=> a

pixbuf: A pixbuf.

-> m Int32

Returns: Width in pixels.

Queries the width of a pixbuf.

new

pixbufNew Source #

Arguments

:: (HasCallStack, MonadIO m) 
=> Colorspace

colorspace: Color space for image

-> Bool

hasAlpha: Whether the image should have transparency information

-> Int32

bitsPerSample: Number of bits per color sample

-> Int32

width: Width of image in pixels, must be > 0

-> Int32

height: Height of image in pixels, must be > 0

-> m (Maybe Pixbuf)

Returns: A newly-created Pixbuf with a reference count of 1, or Nothing if not enough memory could be allocated for the image buffer.

Creates a new Pixbuf structure and allocates a buffer for it. The buffer has an optimal rowstride. Note that the buffer is not cleared; you will have to fill it completely yourself.

newFromBytes

pixbufNewFromBytes Source #

Arguments

:: (HasCallStack, MonadIO m) 
=> Bytes

data: Image data in 8-bit/sample packed format inside a Bytes

-> Colorspace

colorspace: Colorspace for the image data

-> Bool

hasAlpha: Whether the data has an opacity channel

-> Int32

bitsPerSample: Number of bits per sample

-> Int32

width: Width of the image in pixels, must be > 0

-> Int32

height: Height of the image in pixels, must be > 0

-> Int32

rowstride: Distance in bytes between row starts

-> m Pixbuf

Returns: A newly-created Pixbuf structure with a reference count of 1.

Creates a new Pixbuf out of in-memory readonly image data. Currently only RGB images with 8 bits per sample are supported. This is the Bytes variant of pixbufNewFromData.

Since: 2.32

newFromData

pixbufNewFromData Source #

Arguments

:: (HasCallStack, MonadIO m) 
=> Ptr Word8

data: Image data in 8-bit/sample packed format

-> Colorspace

colorspace: Colorspace for the image data

-> Bool

hasAlpha: Whether the data has an opacity channel

-> Int32

bitsPerSample: Number of bits per sample

-> Int32

width: Width of the image in pixels, must be > 0

-> Int32

height: Height of the image in pixels, must be > 0

-> Int32

rowstride: Distance in bytes between row starts

-> Maybe PixbufDestroyNotify

destroyFn: Function used to free the data when the pixbuf's reference count drops to zero, or Nothing if the data should not be freed

-> m Pixbuf

Returns: A newly-created Pixbuf structure with a reference count of 1.

Creates a new Pixbuf out of in-memory image data. Currently only RGB images with 8 bits per sample are supported.

Since you are providing a pre-allocated pixel buffer, you must also specify a way to free that data. This is done with a function of type PixbufDestroyNotify. When a pixbuf created with is finalized, your destroy notification function will be called, and it is its responsibility to free the pixel array.

See also pixbufNewFromBytes.

newFromFile

pixbufNewFromFile Source #

Arguments

:: (HasCallStack, MonadIO m) 
=> [Char]

filename: Name of file to load, in the GLib file name encoding

-> m Pixbuf

Returns: A newly-created pixbuf with a reference count of 1, or Nothing if any of several error conditions occurred: the file could not be opened, there was no loader for the file's format, there was not enough memory to allocate the image buffer, or the image file contained invalid data. (Can throw GError)

Creates a new pixbuf by loading an image from a file. The file format is detected automatically. If Nothing is returned, then error will be set. Possible errors are in the GDK_PIXBUF_ERROR and G_FILE_ERROR domains.

newFromFileAtScale

pixbufNewFromFileAtScale Source #

Arguments

:: (HasCallStack, MonadIO m) 
=> [Char]

filename: Name of file to load, in the GLib file name encoding

-> Int32

width: The width the image should have or -1 to not constrain the width

-> Int32

height: The height the image should have or -1 to not constrain the height

-> Bool

preserveAspectRatio: True to preserve the image's aspect ratio

-> m Pixbuf

Returns: A newly-created pixbuf with a reference count of 1, or Nothing if any of several error conditions occurred: the file could not be opened, there was no loader for the file's format, there was not enough memory to allocate the image buffer, or the image file contained invalid data. (Can throw GError)

Creates a new pixbuf by loading an image from a file. The file format is detected automatically. If Nothing is returned, then error will be set. Possible errors are in the GDK_PIXBUF_ERROR and G_FILE_ERROR domains. The image will be scaled to fit in the requested size, optionally preserving the image's aspect ratio.

When preserving the aspect ratio, a width of -1 will cause the image to be scaled to the exact given height, and a height of -1 will cause the image to be scaled to the exact given width. When not preserving aspect ratio, a width or height of -1 means to not scale the image at all in that dimension. Negative values for width and height are allowed since 2.8.

Since: 2.6

newFromFileAtSize

pixbufNewFromFileAtSize Source #

Arguments

:: (HasCallStack, MonadIO m) 
=> [Char]

filename: Name of file to load, in the GLib file name encoding

-> Int32

width: The width the image should have or -1 to not constrain the width

-> Int32

height: The height the image should have or -1 to not constrain the height

-> m Pixbuf

Returns: A newly-created pixbuf with a reference count of 1, or Nothing if any of several error conditions occurred: the file could not be opened, there was no loader for the file's format, there was not enough memory to allocate the image buffer, or the image file contained invalid data. (Can throw GError)

Creates a new pixbuf by loading an image from a file. The file format is detected automatically. If Nothing is returned, then error will be set. Possible errors are in the GDK_PIXBUF_ERROR and G_FILE_ERROR domains.

The image will be scaled to fit in the requested size, preserving the image's aspect ratio. Note that the returned pixbuf may be smaller than width x height, if the aspect ratio requires it. To load and image at the requested size, regardless of aspect ratio, use pixbufNewFromFileAtScale.

Since: 2.4

newFromInline

pixbufNewFromInline Source #

Arguments

:: (HasCallStack, MonadIO m) 
=> ByteString

data: Byte data containing a serialized GdkPixdata structure

-> Bool

copyPixels: Whether to copy the pixel data, or use direct pointers data for the resulting pixbuf

-> m Pixbuf

Returns: A newly-created Pixbuf structure with a reference, count of 1, or Nothing if an error occurred. (Can throw GError)

Deprecated: (Since version 2.32)Use Resource instead.

Create a Pixbuf from a flat representation that is suitable for storing as inline data in a program. This is useful if you want to ship a program with images, but don't want to depend on any external files.

gdk-pixbuf ships with a program called [gdk-pixbuf-csource][gdk-pixbuf-csource], which allows for conversion of GdkPixbufs into such a inline representation. In almost all cases, you should pass the --raw option to gdk-pixbuf-csource. A sample invocation would be:

gdk-pixbuf-csource --raw --name=myimage_inline myimage.png

For the typical case where the inline pixbuf is read-only static data, you don't need to copy the pixel data unless you intend to write to it, so you can pass False for copyPixels. (If you pass --rle to gdk-pixbuf-csource, a copy will be made even if copyPixels is False, so using this option is generally a bad idea.)

If you create a pixbuf from const inline data compiled into your program, it's probably safe to ignore errors and disable length checks, since things will always succeed: > >pixbuf = gdk_pixbuf_new_from_inline (-1, myimage_inline, FALSE, NULL);

For non-const inline data, you could get out of memory. For untrusted inline data located at runtime, you could have corrupt inline data in addition.

newFromResource

pixbufNewFromResource Source #

Arguments

:: (HasCallStack, MonadIO m) 
=> Text

resourcePath: the path of the resource file

-> m Pixbuf

Returns: A newly-created pixbuf, or Nothing if any of several error conditions occurred: the file could not be opened, the image format is not supported, there was not enough memory to allocate the image buffer, the stream contained invalid data, or the operation was cancelled. (Can throw GError)

Creates a new pixbuf by loading an image from an resource.

The file format is detected automatically. If Nothing is returned, then error will be set.

Since: 2.26

newFromResourceAtScale

pixbufNewFromResourceAtScale Source #

Arguments

:: (HasCallStack, MonadIO m) 
=> Text

resourcePath: the path of the resource file

-> Int32

width: The width the image should have or -1 to not constrain the width

-> Int32

height: The height the image should have or -1 to not constrain the height

-> Bool

preserveAspectRatio: True to preserve the image's aspect ratio

-> m Pixbuf

Returns: A newly-created pixbuf, or Nothing if any of several error conditions occurred: the file could not be opened, the image format is not supported, there was not enough memory to allocate the image buffer, the stream contained invalid data, or the operation was cancelled. (Can throw GError)

Creates a new pixbuf by loading an image from an resource.

The file format is detected automatically. If Nothing is returned, then error will be set.

The image will be scaled to fit in the requested size, optionally preserving the image's aspect ratio. When preserving the aspect ratio, a width of -1 will cause the image to be scaled to the exact given height, and a height of -1 will cause the image to be scaled to the exact given width. When not preserving aspect ratio, a width or height of -1 means to not scale the image at all in that dimension.

The stream is not closed.

Since: 2.26

newFromStream

pixbufNewFromStream Source #

Arguments

:: (HasCallStack, MonadIO m, IsInputStream a, IsCancellable b) 
=> a

stream: a InputStream to load the pixbuf from

-> Maybe b

cancellable: optional Cancellable object, Nothing to ignore

-> m Pixbuf

Returns: A newly-created pixbuf, or Nothing if any of several error conditions occurred: the file could not be opened, the image format is not supported, there was not enough memory to allocate the image buffer, the stream contained invalid data, or the operation was cancelled. (Can throw GError)

Creates a new pixbuf by loading an image from an input stream.

The file format is detected automatically. If Nothing is returned, then error will be set. The cancellable can be used to abort the operation from another thread. If the operation was cancelled, the error IOErrorEnumCancelled will be returned. Other possible errors are in the GDK_PIXBUF_ERROR and G_IO_ERROR domains.

The stream is not closed.

Since: 2.14

newFromStreamAsync

pixbufNewFromStreamAsync Source #

Arguments

:: (HasCallStack, MonadIO m, IsInputStream a, IsCancellable b) 
=> a

stream: a InputStream from which to load the pixbuf

-> Maybe b

cancellable: optional Cancellable object, Nothing to ignore

-> Maybe AsyncReadyCallback

callback: a AsyncReadyCallback to call when the pixbuf is loaded

-> m () 

Creates a new pixbuf by asynchronously loading an image from an input stream.

For more details see pixbufNewFromStream, which is the synchronous version of this function.

When the operation is finished, callback will be called in the main thread. You can then call pixbufNewFromStreamFinish to get the result of the operation.

Since: 2.24

newFromStreamAtScale

pixbufNewFromStreamAtScale Source #

Arguments

:: (HasCallStack, MonadIO m, IsInputStream a, IsCancellable b) 
=> a

stream: a InputStream to load the pixbuf from

-> Int32

width: The width the image should have or -1 to not constrain the width

-> Int32

height: The height the image should have or -1 to not constrain the height

-> Bool

preserveAspectRatio: True to preserve the image's aspect ratio

-> Maybe b

cancellable: optional Cancellable object, Nothing to ignore

-> m Pixbuf

Returns: A newly-created pixbuf, or Nothing if any of several error conditions occurred: the file could not be opened, the image format is not supported, there was not enough memory to allocate the image buffer, the stream contained invalid data, or the operation was cancelled. (Can throw GError)

Creates a new pixbuf by loading an image from an input stream.

The file format is detected automatically. If Nothing is returned, then error will be set. The cancellable can be used to abort the operation from another thread. If the operation was cancelled, the error IOErrorEnumCancelled will be returned. Other possible errors are in the GDK_PIXBUF_ERROR and G_IO_ERROR domains.

The image will be scaled to fit in the requested size, optionally preserving the image's aspect ratio.

When preserving the aspect ratio, a width of -1 will cause the image to be scaled to the exact given height, and a height of -1 will cause the image to be scaled to the exact given width. If both width and height are given, this function will behave as if the smaller of the two values is passed as -1.

When not preserving aspect ratio, a width or height of -1 means to not scale the image at all in that dimension.

The stream is not closed.

Since: 2.14

newFromStreamAtScaleAsync

pixbufNewFromStreamAtScaleAsync Source #

Arguments

:: (HasCallStack, MonadIO m, IsInputStream a, IsCancellable b) 
=> a

stream: a InputStream from which to load the pixbuf

-> Int32

width: the width the image should have or -1 to not constrain the width

-> Int32

height: the height the image should have or -1 to not constrain the height

-> Bool

preserveAspectRatio: True to preserve the image's aspect ratio

-> Maybe b

cancellable: optional Cancellable object, Nothing to ignore

-> Maybe AsyncReadyCallback

callback: a AsyncReadyCallback to call when the pixbuf is loaded

-> m () 

Creates a new pixbuf by asynchronously loading an image from an input stream.

For more details see pixbufNewFromStreamAtScale, which is the synchronous version of this function.

When the operation is finished, callback will be called in the main thread. You can then call pixbufNewFromStreamFinish to get the result of the operation.

Since: 2.24

newFromStreamFinish

pixbufNewFromStreamFinish Source #

Arguments

:: (HasCallStack, MonadIO m, IsAsyncResult a) 
=> a

asyncResult: a AsyncResult

-> m Pixbuf

Returns: a Pixbuf or Nothing on error. Free the returned object with objectUnref. (Can throw GError)

Finishes an asynchronous pixbuf creation operation started with pixbufNewFromStreamAsync.

Since: 2.24

newFromXpmData

pixbufNewFromXpmData Source #

Arguments

:: (HasCallStack, MonadIO m) 
=> [Text]

data: Pointer to inline XPM data.

-> m Pixbuf

Returns: A newly-created pixbuf with a reference count of 1.

Creates a new pixbuf by parsing XPM data in memory. This data is commonly the result of including an XPM file into a program's C source.

newSubpixbuf

pixbufNewSubpixbuf Source #

Arguments

:: (HasCallStack, MonadIO m, IsPixbuf a) 
=> a

srcPixbuf: a Pixbuf

-> Int32

srcX: X coord in srcPixbuf

-> Int32

srcY: Y coord in srcPixbuf

-> Int32

width: width of region in srcPixbuf

-> Int32

height: height of region in srcPixbuf

-> m Pixbuf

Returns: a new pixbuf

Creates a new pixbuf which represents a sub-region of srcPixbuf. The new pixbuf shares its pixels with the original pixbuf, so writing to one affects both. The new pixbuf holds a reference to srcPixbuf, so srcPixbuf will not be finalized until the new pixbuf is finalized.

Note that if srcPixbuf is read-only, this function will force it to be mutable.

readPixelBytes

pixbufReadPixelBytes Source #

Arguments

:: (HasCallStack, MonadIO m, IsPixbuf a) 
=> a

pixbuf: A pixbuf

-> m Bytes

Returns: A new reference to a read-only copy of the pixel data. Note that for mutable pixbufs, this function will incur a one-time copy of the pixel data for conversion into the returned Bytes.

Provides a Bytes buffer containing the raw pixel data; the data must not be modified. This function allows skipping the implicit copy that must be made if gdk_pixbuf_get_pixels() is called on a read-only pixbuf.

Since: 2.32

readPixels

pixbufReadPixels Source #

Arguments

:: (HasCallStack, MonadIO m, IsPixbuf a) 
=> a

pixbuf: A pixbuf

-> m Word8

Returns: a read-only pointer to the raw pixel data

Provides a read-only pointer to the raw pixel data; must not be modified. This function allows skipping the implicit copy that must be made if gdk_pixbuf_get_pixels() is called on a read-only pixbuf.

Since: 2.32

removeOption

pixbufRemoveOption Source #

Arguments

:: (HasCallStack, MonadIO m, IsPixbuf a) 
=> a

pixbuf: a Pixbuf

-> Text

key: a nul-terminated string representing the key to remove.

-> m Bool

Returns: True if an option was removed, False if not.

Remove the key/value pair option attached to a Pixbuf.

Since: 2.36

rotateSimple

pixbufRotateSimple Source #

Arguments

:: (HasCallStack, MonadIO m, IsPixbuf a) 
=> a

src: a Pixbuf

-> PixbufRotation

angle: the angle to rotate by

-> m (Maybe Pixbuf)

Returns: the new Pixbuf, or Nothing if not enough memory could be allocated for it.

Rotates a pixbuf by a multiple of 90 degrees, and returns the result in a new pixbuf.

If angle is 0, a copy of src is returned, avoiding any rotation.

Since: 2.6

saturateAndPixelate

pixbufSaturateAndPixelate Source #

Arguments

:: (HasCallStack, MonadIO m, IsPixbuf a, IsPixbuf b) 
=> a

src: source image

-> b

dest: place to write modified version of src

-> Float

saturation: saturation factor

-> Bool

pixelate: whether to pixelate

-> m () 

Modifies saturation and optionally pixelates src, placing the result in dest. src and dest may be the same pixbuf with no ill effects. If saturation is 1.0 then saturation is not changed. If it's less than 1.0, saturation is reduced (the image turns toward grayscale); if greater than 1.0, saturation is increased (the image gets more vivid colors). If pixelate is True, then pixels are faded in a checkerboard pattern to create a pixelated image. src and dest must have the same image format, size, and rowstride.

saveToBufferv

pixbufSaveToBufferv Source #

Arguments

:: (HasCallStack, MonadIO m, IsPixbuf a) 
=> a

pixbuf: a Pixbuf.

-> Text

type: name of file format.

-> [Text]

optionKeys: name of options to set, Nothing-terminated

-> [Text]

optionValues: values for named options

-> m ByteString

(Can throw GError)

Saves pixbuf to a new buffer in format type, which is currently "jpeg", "tiff", "png", "ico" or "bmp". See gdk_pixbuf_save_to_buffer() for more details.

Since: 2.4

saveToCallbackv

pixbufSaveToCallbackv Source #

Arguments

:: (HasCallStack, MonadIO m, IsPixbuf a) 
=> a

pixbuf: a Pixbuf.

-> PixbufSaveFunc

saveFunc: a function that is called to save each block of data that the save routine generates.

-> Text

type: name of file format.

-> [Text]

optionKeys: name of options to set, Nothing-terminated

-> [Text]

optionValues: values for named options

-> m ()

(Can throw GError)

Saves pixbuf to a callback in format type, which is currently "jpeg", "png", "tiff", "ico" or "bmp". If error is set, False will be returned. See gdk_pixbuf_save_to_callback () for more details.

Since: 2.4

saveToStreamFinish

pixbufSaveToStreamFinish Source #

Arguments

:: (HasCallStack, MonadIO m, IsAsyncResult a) 
=> a

asyncResult: a AsyncResult

-> m ()

(Can throw GError)

Finishes an asynchronous pixbuf save operation started with gdk_pixbuf_save_to_stream_async().

Since: 2.24

saveToStreamv

pixbufSaveToStreamv Source #

Arguments

:: (HasCallStack, MonadIO m, IsPixbuf a, IsOutputStream b, IsCancellable c) 
=> a

pixbuf: a Pixbuf

-> b

stream: a OutputStream to save the pixbuf to

-> Text

type: name of file format

-> [Text]

optionKeys: name of options to set, Nothing-terminated

-> [Text]

optionValues: values for named options

-> Maybe c

cancellable: optional Cancellable object, Nothing to ignore

-> m ()

(Can throw GError)

Saves pixbuf to an output stream.

Supported file formats are currently "jpeg", "tiff", "png", "ico" or "bmp". See gdk_pixbuf_save_to_stream() for more details.

Since: 2.36

saveToStreamvAsync

pixbufSaveToStreamvAsync Source #

Arguments

:: (HasCallStack, MonadIO m, IsPixbuf a, IsOutputStream b, IsCancellable c) 
=> a

pixbuf: a Pixbuf

-> b

stream: a OutputStream to which to save the pixbuf

-> Text

type: name of file format

-> [Text]

optionKeys: name of options to set, Nothing-terminated

-> [Text]

optionValues: values for named options

-> Maybe c

cancellable: optional Cancellable object, Nothing to ignore

-> Maybe AsyncReadyCallback

callback: a AsyncReadyCallback to call when the pixbuf is saved

-> m () 

Saves pixbuf to an output stream asynchronously.

For more details see pixbufSaveToStreamv, which is the synchronous version of this function.

When the operation is finished, callback will be called in the main thread. You can then call pixbufSaveToStreamFinish to get the result of the operation.

Since: 2.36

savev

pixbufSavev Source #

Arguments

:: (HasCallStack, MonadIO m, IsPixbuf a) 
=> a

pixbuf: a Pixbuf.

-> [Char]

filename: name of file to save.

-> Text

type: name of file format.

-> [Text]

optionKeys: name of options to set, Nothing-terminated

-> [Text]

optionValues: values for named options

-> m ()

(Can throw GError)

Saves pixbuf to a file in type, which is currently "jpeg", "png", "tiff", "ico" or "bmp". If error is set, False will be returned. See gdk_pixbuf_save () for more details.

scale

pixbufScale Source #

Arguments

:: (HasCallStack, MonadIO m, IsPixbuf a, IsPixbuf b) 
=> a

src: a Pixbuf

-> b

dest: the Pixbuf into which to render the results

-> Int32

destX: the left coordinate for region to render

-> Int32

destY: the top coordinate for region to render

-> Int32

destWidth: the width of the region to render

-> Int32

destHeight: the height of the region to render

-> Double

offsetX: the offset in the X direction (currently rounded to an integer)

-> Double

offsetY: the offset in the Y direction (currently rounded to an integer)

-> Double

scaleX: the scale factor in the X direction

-> Double

scaleY: the scale factor in the Y direction

-> InterpType

interpType: the interpolation type for the transformation.

-> m () 

Creates a transformation of the source image src by scaling by scaleX and scaleY then translating by offsetX and offsetY, then renders the rectangle (destX, destY, destWidth, destHeight) of the resulting image onto the destination image replacing the previous contents.

Try to use pixbufScaleSimple first, this function is the industrial-strength power tool you can fall back to if pixbufScaleSimple isn't powerful enough.

If the source rectangle overlaps the destination rectangle on the same pixbuf, it will be overwritten during the scaling which results in rendering artifacts.

scaleSimple

pixbufScaleSimple Source #

Arguments

:: (HasCallStack, MonadIO m, IsPixbuf a) 
=> a

src: a Pixbuf

-> Int32

destWidth: the width of destination image

-> Int32

destHeight: the height of destination image

-> InterpType

interpType: the interpolation type for the transformation.

-> m (Maybe Pixbuf)

Returns: the new Pixbuf, or Nothing if not enough memory could be allocated for it.

Create a new Pixbuf containing a copy of src scaled to destWidth x destHeight. Leaves src unaffected. interpType should be GDK_INTERP_NEAREST if you want maximum speed (but when scaling down GDK_INTERP_NEAREST is usually unusably ugly). The default interpType should be GDK_INTERP_BILINEAR which offers reasonable quality and speed.

You can scale a sub-portion of src by creating a sub-pixbuf pointing into src; see pixbufNewSubpixbuf.

If destWidth and destHeight are equal to the src width and height, a copy of src is returned, avoiding any scaling.

For more complicated scaling/alpha blending see pixbufScale and pixbufComposite.

setOption

pixbufSetOption Source #

Arguments

:: (HasCallStack, MonadIO m, IsPixbuf a) 
=> a

pixbuf: a Pixbuf

-> Text

key: a nul-terminated string.

-> Text

value: a nul-terminated string.

-> m Bool

Returns: True on success.

Attaches a key/value pair as an option to a Pixbuf. If key already exists in the list of options attached to pixbuf, the new value is ignored and False is returned.

Since: 2.2

Properties

bitsPerSample

The number of bits per sample. Currently only 8 bit per sample are supported.

constructPixbufBitsPerSample :: IsPixbuf o => Int32 -> IO (GValueConstruct o) Source #

Construct a GValueConstruct with valid value for the “bits-per-sample” property. This is rarely needed directly, but it is used by new.

getPixbufBitsPerSample :: (MonadIO m, IsPixbuf o) => o -> m Int32 Source #

Get the value of the “bits-per-sample” property. When overloading is enabled, this is equivalent to

get pixbuf #bitsPerSample

colorspace

No description available in the introspection data.

constructPixbufColorspace :: IsPixbuf o => Colorspace -> IO (GValueConstruct o) Source #

Construct a GValueConstruct with valid value for the “colorspace” property. This is rarely needed directly, but it is used by new.

getPixbufColorspace :: (MonadIO m, IsPixbuf o) => o -> m Colorspace Source #

Get the value of the “colorspace” property. When overloading is enabled, this is equivalent to

get pixbuf #colorspace

hasAlpha

No description available in the introspection data.

constructPixbufHasAlpha :: IsPixbuf o => Bool -> IO (GValueConstruct o) Source #

Construct a GValueConstruct with valid value for the “has-alpha” property. This is rarely needed directly, but it is used by new.

getPixbufHasAlpha :: (MonadIO m, IsPixbuf o) => o -> m Bool Source #

Get the value of the “has-alpha” property. When overloading is enabled, this is equivalent to

get pixbuf #hasAlpha

height

No description available in the introspection data.

constructPixbufHeight :: IsPixbuf o => Int32 -> IO (GValueConstruct o) Source #

Construct a GValueConstruct with valid value for the “height” property. This is rarely needed directly, but it is used by new.

getPixbufHeight :: (MonadIO m, IsPixbuf o) => o -> m Int32 Source #

Get the value of the “height” property. When overloading is enabled, this is equivalent to

get pixbuf #height

nChannels

The number of samples per pixel. Currently, only 3 or 4 samples per pixel are supported.

constructPixbufNChannels :: IsPixbuf o => Int32 -> IO (GValueConstruct o) Source #

Construct a GValueConstruct with valid value for the “n-channels” property. This is rarely needed directly, but it is used by new.

getPixbufNChannels :: (MonadIO m, IsPixbuf o) => o -> m Int32 Source #

Get the value of the “n-channels” property. When overloading is enabled, this is equivalent to

get pixbuf #nChannels

pixelBytes

No description available in the introspection data.

constructPixbufPixelBytes :: IsPixbuf o => Bytes -> IO (GValueConstruct o) Source #

Construct a GValueConstruct with valid value for the “pixel-bytes” property. This is rarely needed directly, but it is used by new.

getPixbufPixelBytes :: (MonadIO m, IsPixbuf o) => o -> m (Maybe Bytes) Source #

Get the value of the “pixel-bytes” property. When overloading is enabled, this is equivalent to

get pixbuf #pixelBytes

pixels

No description available in the introspection data.

constructPixbufPixels :: IsPixbuf o => Ptr () -> IO (GValueConstruct o) Source #

Construct a GValueConstruct with valid value for the “pixels” property. This is rarely needed directly, but it is used by new.

getPixbufPixels :: (MonadIO m, IsPixbuf o) => o -> m (Ptr ()) Source #

Get the value of the “pixels” property. When overloading is enabled, this is equivalent to

get pixbuf #pixels

rowstride

The number of bytes between the start of a row and the start of the next row. This number must (obviously) be at least as large as the width of the pixbuf.

constructPixbufRowstride :: IsPixbuf o => Int32 -> IO (GValueConstruct o) Source #

Construct a GValueConstruct with valid value for the “rowstride” property. This is rarely needed directly, but it is used by new.

getPixbufRowstride :: (MonadIO m, IsPixbuf o) => o -> m Int32 Source #

Get the value of the “rowstride” property. When overloading is enabled, this is equivalent to

get pixbuf #rowstride

width

No description available in the introspection data.

constructPixbufWidth :: IsPixbuf o => Int32 -> IO (GValueConstruct o) Source #

Construct a GValueConstruct with valid value for the “width” property. This is rarely needed directly, but it is used by new.

getPixbufWidth :: (MonadIO m, IsPixbuf o) => o -> m Int32 Source #

Get the value of the “width” property. When overloading is enabled, this is equivalent to

get pixbuf #width