PdfDrawOptions.CreateFitWidth Method

Creates draw options for producing images of PDF pages resized to fit the specified width.

Namespace:  BitMiracle.Docotic.Pdf
Assembly:  BitMiracle.Docotic.Pdf (in BitMiracle.Docotic.Pdf.dll)

Syntax

C#
public static PdfDrawOptions CreateFitWidth(
	double widthPixels
)
VB
Public Shared Function CreateFitWidth ( 
	widthPixels As Double
) As PdfDrawOptions

Parameters

widthPixels
Type: System.Double
The width of images in pixels.

Return Value

Type: PdfDrawOptions
The options for producing images of PDF pages resized to fit the specified width.

Remarks

The width should be in the [1..10000] range.

Each image produced with these options will have the specified width. The height of the image will be calculated dynamically using the aspect ratio of the corresponding PDF page.

Use HorizontalResolution and VerticalResolution properties to change the pixel density (i.e., the physical size) of produced images.

See Also