DIPlib Documentation - ©1995-2017 Quantitative Imaging Group, Delft University of Technology.

ImageWritePS

Write image to PostScript file (in dipIO)

SYNOPSIS

#include "dipio_ps.h"

dip_Error dipio_ImageWritePS ( image, filename, photometric, caption, xcm, ycm, border )

FUNCTION

This function writes the image to a PostScript file, overwriting any other file with the same name. Set the image size in xcm and ycm. border sets the size of the border around the image. If border is 0, no border is drawn. You can give the page a title through caption. For colour images, set photometric (supported are RGB and CMYK) and write the colour channels along the third image dimension.

ARGUMENTS

Data typeNameDescription
dip_ImageimageOutput image
dip_StringfilenameFile name
dipio_PhotometricInterpretationphotometricPhotometric interpretation
dip_StringcaptionTitle for page
dip_floatxcmX-size of image on page, in cm.
dip_floatycmY-size of image on page, in cm.
dip_intborderThickness of border, zero is no border

The enumerator dipio_PhotometricInterpretation contains the following constants:

NameDescription
DIPIO_PHM_GREYVALUENo colour information present; it's a grey-value image.
DIPIO_PHM_RGBRGB image (the first three planes are red, green and blue)
DIPIO_PHM_RGB_NONLINEARNon-linear R'G'B' image (RGB channels to the power of 0.4)
DIPIO_PHM_CMYCMY image (the first three planes are cyan, magenta and yellow)
DIPIO_PHM_CMYKCMYK image (the first four planes are cyan, magenta, yellow and black)
DIPIO_PHM_CIELUVCIE L*u'v' image (the first three planes are luminosity, u* and v*)
DIPIO_PHM_CIELABCIE L*a*b* image (the first three planes are luminosity, a* and b*)
DIPIO_PHM_CIEXYZCIE XYZ (the first three planes are X, Y and Z)
DIPIO_PHM_CIEYXYCIE Yxy (the first three planes are Y, x and y)
DIPIO_PHM_HCVHCV image (the first three planes are hue, chroma and value)
DIPIO_PHM_HSVHSV image (the first three planes are hue, saturation and value)
DIPIO_PHM_DEFAULTSame as DIPIO_PHM_GREYVALUE
DIPIO_PHM_GENERICAnything can be coded in the channels; the same as DIPIO_PHM_CMYK

Most file formats support only some of these.

SEE ALSO

ImageWrite, ImageWriteColour, ImageWriteEPS