reference

This documentation is automatically generated from the openFrameworks source code using doxygen and refers to the most recent release, version 0.12.0.

ofGraphicsCairo.h
Go to the documentation of this file.
1#pragma once
2
3#include "ofRectangle.h"
4
8
25void ofBeginSaveScreenAsPDF(std::string filename, bool bMultipage = false, bool b3D = false, ofRectangle outputsize = ofRectangle(0,0,0,0));
26
30
33void ofBeginSaveScreenAsSVG(std::string filename, bool bMultipage = false, bool b3D = false, ofRectangle outputsize = ofRectangle(0,0,0,0));
34
38
39
A class representing a 2D rectangle.
Definition ofRectangle.h:87
void ofEndSaveScreenAsPDF()
Terminates draw to PDF through ofCairoRenderer and outputs the file.
Definition ofGraphicsCairo.cpp:52
void ofEndSaveScreenAsSVG()
Terminates draw to SVG and outputs the file.
Definition ofGraphicsCairo.cpp:62
void ofBeginSaveScreenAsPDF(std::string filename, bool bMultipage=false, bool b3D=false, ofRectangle outputsize=ofRectangle(0, 0, 0, 0))
Begin rendering to a PDF file.
Definition ofGraphicsCairo.cpp:47
void ofBeginSaveScreenAsSVG(std::string filename, bool bMultipage=false, bool b3D=false, ofRectangle outputsize=ofRectangle(0, 0, 0, 0))
Begin rendering to a SVG file.
Definition ofGraphicsCairo.cpp:57