Main Page | Modules | Alphabetical List | Data Structures | File List | Data Fields | Globals | Related Pages

stp_image Struct Reference
[image]

The image type is an abstract data type for interfacing with the image creation program. More...

#include <image.h>


Data Fields

void(* init )(struct stp_image *image)
 This callback is used to perform any initialization required by the image layer for the image.

void(* reset )(struct stp_image *image)
 This callback is called to reset the image to the beginning.

int(* width )(struct stp_image *image)
 This callback returns the width of the image in pixels.

int(* height )(struct stp_image *image)
 This callback returns the height of the image in pixels.

stp_image_status_t(* get_row )(struct stp_image *image, unsigned char *data, size_t byte_limit, int row)
 This callback transfers the data from the image to the gimp-print library.

const char *(* get_appname )(struct stp_image *image)
 This callback returns the name of the application.

void(* conclude )(struct stp_image *image)
 This callback is called at the end of each page.

void * rep
 A pointer to an application-specific state information that might need to be associated with the image object.


Detailed Description

The image type is an abstract data type for interfacing with the image creation program.

It provides callbacks to functions defined within the client application which are called while printing the image.

Definition at line 65 of file image.h.


Field Documentation

void(* stp_image::conclude)(struct stp_image *image)
 

This callback is called at the end of each page.

Referenced by stp_image_conclude().

const char*(* stp_image::get_appname)(struct stp_image *image)
 

This callback returns the name of the application.

This is embedded in the output by some drivers.

Referenced by stp_image_get_appname().

stp_image_status_t(* stp_image::get_row)(struct stp_image *image, unsigned char *data, size_t byte_limit, int row)
 

This callback transfers the data from the image to the gimp-print library.

It is called from the driver layer. It should copy WIDTH (as returned by the width() member) pixels of data into the data buffer. It normally returns STP_IMAGE_STATUS_OK; if something goes wrong, or the application wishes to stop producing any further output (e. g. because the user cancelled the print job), it should return STP_IMAGE_STATUS_ABORT. This will cause the driver to flush any remaining data to the output. It will always request rows in monotonically ascending order, but it may skip rows (if, for example, the resolution of the input is higher than the resolution of the output).

Parameters:
image the image in use.
data a pointer to width() bytes of pixel data.
byte_limit (image width * number of channels).
row (unused).

Referenced by stp_image_get_row().

int(* stp_image::height)(struct stp_image *image)
 

This callback returns the height of the image in pixels.

Parameters:
image the image in use.

Referenced by stp_image_height().

void(* stp_image::init)(struct stp_image *image)
 

This callback is used to perform any initialization required by the image layer for the image.

It will be called once per image.

Parameters:
image the image in use.

Referenced by stp_image_init().

void* stp_image::rep
 

A pointer to an application-specific state information that might need to be associated with the image object.

Definition at line 124 of file image.h.

void(* stp_image::reset)(struct stp_image *image)
 

This callback is called to reset the image to the beginning.

It may (in principle) be called multiple times if a page is being printed more than once.

Warning:
The reset() call may be removed in the future.
Parameters:
image the image in use.

Referenced by stp_image_reset().

int(* stp_image::width)(struct stp_image *image)
 

This callback returns the width of the image in pixels.

Parameters:
image the image in use.

Referenced by stp_image_width().


The documentation for this struct was generated from the following file:
Generated on Wed Aug 25 07:56:16 2004 for libgimpprint API Reference by doxygen 1.3.6