DocumentFilters::MakeOutputCanvas method¶
Creates a new canvas that is used for rendering page content. The output data will be written to the file specified in Filename.
Overloads¶
MakeOutputCanvas(string, int, string) | Create a new canvas writing to a file. |
MakeOutputCanvas(stream, int, string) | Create a new canvas writing to a stream. |
MakeOutputCanvas(string, int, string)¶
Prototype¶
Canvas MakeOutputCanvas(string filename, int canvasType, string options)
Canvas MakeOutputCanvas(string filename, int canvasType, string options) throws IGRException;
def MakeOutputCanvas(self, filename: string, canvasType: int, options: string) -> Canvas
Canvas MakeOutputCanvas(const std::wstring& filename, int canvasType, const std::wstring& options = std::wstring(L""))
Canvas* MakeOutputCanvas(std::wstring filename, int canvasType, std::wstring options)
HRESULT MakeOutputCanvas([in] BSTR filename, [in] int canvasType, [in] BSTR options, [out, retval] Canvas* *result)
Parameters¶
filename: string
: Filename where canvas is to be created
canvasType: int
: Indicates the type of output device to create; see Canvas Types for details.
options: string
: Semicolon separated list of name value pair options; see Constants and Codes for details.
Return value¶
Canvas
: The newly created canvas object.
MakeOutputCanvas(stream, int, string)¶
Prototype¶
Canvas MakeOutputCanvas(System.IO.Stream stream, int canvasType, string options)
Canvas MakeOutputCanvas(IGRStream stream, int canvasType, string options) throws IGRException;
def MakeOutputCanvas(self, stream: Stream, canvasType: int, options: string) -> Canvas
Canvas MakeOutputCanvas(Stream& stream, int canvasType, const std::wstring& options = std::wstring(L""));
Canvas MakeOutputCanvas(std::iostream& stream, CanvasType type, const std::wstring& options);
Canvas MakeOutputCanvas(std::iostream* stream, bool own_stream, CanvasType type, const std::wstring& options);
Canvas MakeOutputCanvas(Stream* stream, bool own_stream, bool own_stream, CanvasType type, const std::wstring& options);
Canvas* MakeOutputCanvas(Stream* stream, int canvasType, std::wstring options)
HRESULT MakeOutputCanvasOnStream([in] IStream* stream, [in] int canvasType, [in] BSTR options, [out, retval] Canvas* *result)
Parameters¶
stream: stream
: Stream where canvas is to be created
canvasType: int
: Indicates the type of output device to create; see Canvas Types for details.
options: string
: Semicolon separated list of name value pair options; see Constants and Codes for details.
Return value¶
Canvas
: The newly created canvas object.
Sample Code¶
1 2 3 4 5 6 7 8 9 |
|
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 |
|
1 2 3 4 5 6 7 8 |
|
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 |
|
Additional Information¶
For output formats that support multiple pages, you may choose to write multiple input documents to a single output document.