IResize

The IResize interface is used to configure the resize parameters during the conversion process.

Properties

Integer BackgroundColor

Determines the fill color (as an RGB value) of empty spaces which appear when a page is resized. Only available if the Mode property has the value RSZ_THUMBNAIL. It is both readable and writable.

Integer Height
Sets the new resized page height (in pixels). Only available if the Mode property is set to RSZ_FITHEIGHT, RSZ_FITRECT, RSZ_THUMBNAIL. It is both readable and writable.

Enum Mode
Defines the source document page resize mode during the conversion process. It is both readable and writable.
ConstantValueDescription
RSZ_NONE0No resizing
RSZ_FITWIDTH1Pages are resized proportionally based on the width value contained in the Width property
RSZ_FITHEIGHT2Pages are resized proportionally based on the height value contained in the Height property
RSZ_FITRECT3Pages are resized with the width and the height contained in the Width and Height properties
RSZ_THUMBNAIL4Pages are resized to the width and height contained in the Width and Height properties while any margins produced in the resizing are filled with the color specified in the BackgroundColor property

Integer Width
Sets the new resized page width (in pixels). Only available if the Mode property and has the values RSZ_FITWIDTH, RSZ_FITRECT, RSZ_THUMBNAIL. It is both readable and writable.

Examples

Visual Basic 6

Dim objUDC As IUDC Dim itfPrinter As IUDCPrinter Dim itfProfile As IProfile Set objUDC = New UDC.APIWrapper Set itfPrinter = objUDC.Printers("Universal Document Converter") Set itfProfile = itfPrinter.Profile itfProfile.Adjustments.Resize.Mode = RSZ_THUMBNAIL itfProfile.Adjustments.Resize.Width = 640 itfProfile.Adjustments.Resize.Height = 480 itfProfile.Adjustments.Resize.BackgroundColor = RGB(255, 255, 0)