Format.ExportPrintPreviewToImage Method |
Exports an image for each page of a document's print preview.
Format.ExportPrintPreviewToImage(Directory, FileNameTemplate, FileType, Colors, DPI, backgroundColor, SaveOpts, IncludeMargins, IncludeBorder, Msgs)
Where:
Directory is the directory where the print preview images is saved.
FileNameTemplate is the file name template that is used when the file is saved. If the file name template does not contain any variables, the page number is added to the end of the file name. The supported FileNameTemplate variable is %PageNumber%. When %PageNumber% is used, the name of the file is the current page number of the image that is saved. You must also add the file type extension to the file name for the file to open correctly when it is selected. The FileType parameter defines the file type but does not add the extension to the file name.
FileType is the image file type (such as JPG, GIF, and so on). For a list of supported image types, refer to Supported Image Formats in the BarTender online help system.
Colors sets the number of colors that are used to create the image. Available options include BtColors.btColorsMono (black and white), BtColors.btColors16 (16 colors), BtColors.btColors256 (256 colors), BtColors.btColors24bit (24bit color file), and BtColors.btColors32bit (32bit color file). BtColors.btColors32bit supports exporting the object with a transparent background.
DPI sets the resolution of the exported image in dots per inch (dpi). Valid values can be any number from 2 to 3000 or one of the following designated values:
-1 (equal to 1 dpi)
0 (the resolution of the screen that creates the image)
1 (the resolution of the printer)
BackgroundColor sets the background color of the page that displays the preview images. Valid values can be any number (24-bit integer with the least significant 8 bits being red, then green, and the most significant 8 bits being blue).
SaveOpts sets when the file is saved. Available options include BtSaveOptions.btPromptSave (save when prompted), BtSaveOptions.btDoNotSaveChanges (do not save changes), and BtSaveOptions.btSaveChanges (save all changes).
IncludeMargins includes the page margins in the image. When this is set to false, the image is trimmed to the edge of the labels.
IncludeBorder draws a thin black rectangular border around the label when set to true.
Msgs collects and saves any error messages that were created during the export for later review.
Version |
BarTender 9.01 or higher |
Edition |
Enterprise |
The Format.ExportPrintPreviewToImage method exports all objects that are created on the template, with the following exceptions:
Any objects on the document for which the Preprinted option is selected are not exported to the Clipboard.
Any objects for which the Print When option is used to disable printing are not printed.
To include these objects, use the Format object's ExportToFile method.
The ExportPrintPreviewToImage method returns the following results:
BtPrintResult.btSuccess: The export was successful.
BtPrintResult.btFailure: The export failed.
'Declare a BarTender application variable
Dim btApp As BarTender.Application
'Declare a BarTender document variable
Dim btFormat As BarTender.Format
'Declare a BarTender messages variable
Dim msgs As BarTender.Messages = Nothing
'Create a new instance of BarTender
btApp = New BarTender.Application
'Set the BarTender application to visible
btApp.Visible = True
'Open a BarTender document
btFormat = btApp.Formats.Open("c:\Format1.btw", False, "")
'Export document to a print preview
Dim res As BarTender.BtPrintResult
res = btFormat.ExportPrintPreviewToImage("c:\", "Label_%PageNumber%_Preview.jpg", "jpg", BarTender.BtColors.btColors24Bit, 200, 13117215, BarTender.BtSaveOptions.btSaveChanges, true, true, msgs)
'End the BarTender process
btApp.Quit(BarTender.BtSaveOptions.btDoNotSaveChanges)
// Declare a BarTender application variable
BarTender.Application btApp;
// Declare a BarTender document variable
BarTender.Format btFormat;
// Declare a BarTender messages variable
BarTender.Messages msgs;
// Create a new instance of BarTender
btApp = new BarTender.Application();
// Set the BarTender application to visible
btApp.Visible = true;
// Open a BarTender document
btFormat = btApp.Formats.Open("c:\\Format1.btw", false, "");
// Export document to a print preview
BarTender.BtPrintResult res;
res = btFormat.ExportPrintPreviewToImage("c:\\", "Label_%PageNumber%_Preview.jpg", "jpg", BarTender.BtColors.btColors24Bit, 200, 13117215, BarTender.BtSaveOptions.btSaveChanges, true, true, out msgs);
// End the BarTender process
btApp.Quit(BarTender.BtSaveOptions.btDoNotSaveChanges);
Related Topics