PDF Backend

PDF Backend —

Synopsis




void        cairo_set_target_pdf            (cairo_t *cr,
                                             FILE *file,
                                             double width_inches,
                                             double height_inches,
                                             double x_pixels_per_inch,
                                             double y_pixels_per_inch);
cairo_surface_t* cairo_pdf_surface_create   (FILE *file,
                                             double width_inches,
                                             double height_inches,
                                             double x_pixels_per_inch,
                                             double y_pixels_per_inch);

Description

Details

cairo_set_target_pdf ()

void        cairo_set_target_pdf            (cairo_t *cr,
                                             FILE *file,
                                             double width_inches,
                                             double height_inches,
                                             double x_pixels_per_inch,
                                             double y_pixels_per_inch);

cr :
file :
width_inches :
height_inches :
x_pixels_per_inch :
y_pixels_per_inch :

cairo_pdf_surface_create ()

cairo_surface_t* cairo_pdf_surface_create   (FILE *file,
                                             double width_inches,
                                             double height_inches,
                                             double x_pixels_per_inch,
                                             double y_pixels_per_inch);

file :
width_inches :
height_inches :
x_pixels_per_inch :
y_pixels_per_inch :
Returns :