Convert a rectangle of this PDF page to an image.

Namespace: TallComponents.PDF.Rasterizer
Assembly: TallComponents.PDF.Rasterizer (in TallComponents.PDF.Rasterizer.dll) Version: 3.0.76.0

Syntax

C#
public void ConvertToTiff(
	Stream stream,
	ConvertToTiffOptions options,
	RenderSettings renderSettings,
	Rectangle pageRectangle,
	Summary summary
)
Visual Basic
Public Sub ConvertToTiff ( _
	stream As Stream, _
	options As ConvertToTiffOptions, _
	renderSettings As RenderSettings, _
	pageRectangle As Rectangle, _
	summary As Summary _
)

Parameters

stream
Type: System.IO..::..Stream
Save the image to this stream. The caller is responsible for closing and disposing the stream.
options
Type: TallComponents.PDF.Rasterizer..::..ConvertToTiffOptions
Options that control the format of the output image.
renderSettings
Type: TallComponents.PDF.Rasterizer.Configuration..::..RenderSettings
Settings that control the render process.
pageRectangle
Type: TallComponents.PDF.Rasterizer..::..Rectangle
The rectangle on the page that will be converted. The origin is at the bottom left of the page, and units are in points (1/72 inch).
summary
Type: TallComponents.PDF.Rasterizer.Diagnostics..::..Summary
The summary to which diagnostic information is written. This can be null.

See Also