内容表

上一话题

QPrintPreviewWidget

下一话题

QPrinterInfo

QPrinter

QPrinter class is a paint device that paints on a printer. 更多

Inheritance diagram of PySide2.QtPrintSupport.QPrinter

概要

函数

详细描述

This device represents a series of pages of printed output, and is used in almost exactly the same way as other paint devices such as QWidget and QPixmap . A set of additional functions are provided to manage device-specific features, such as orientation and resolution, and to step through the pages in a document as it is generated.

When printing directly to a printer on Windows or macOS, QPrinter uses the built-in printer drivers. On X11, QPrinter uses the Common Unix Printing System (CUPS) to send PDF output to the printer. As an alternative, the printProgram() function can be used to specify the command or utility to use instead of the system default.

Note that setting parameters like paper size and resolution on an invalid printer is undefined. You can use isValid() to verify this before changing any parameters.

QPrinter supports a number of parameters, most of which can be changed by the end user through a print dialog . In general, QPrinter passes these functions onto the underlying QPrintEngine .

The most important parameters are:

Many of these functions can only be called before the actual printing begins (i.e., before begin() is called). This usually makes sense because, for example, it’s not possible to change the number of copies when you are halfway through printing. There are also some settings that the user sets (through the printer dialog) and that applications are expected to obey. See QAbstractPrintDialog ‘s documentation for more details.

begin() is called, the QPrinter it operates on is prepared for a new page, enabling the QPainter to be used immediately to paint the first page in a document. Once the first page has been painted, newPage() can be called to request a new blank page to paint on, or end() can be called to finish printing. The second page and all following pages are prepared using a call to newPage() before they are painted.

The first page in a document does not need to be preceded by a call to newPage() . You only need to calling newPage() after begin() if you need to insert a blank page at the beginning of a printed document. Similarly, calling newPage() after the last page in a document is painted will result in a trailing blank page appended to the end of the printed document.

If you want to abort the print job, abort() will try its best to stop printing. It may cancel the entire job or just part of it.

Since QPrinter can print to any QPrintEngine subclass, it is possible to extend printing support to cover new types of printing subsystem by subclassing QPrintEngine and reimplementing its interface.

另请参阅

QPrintDialog Qt Print Support

class QPrinter ( [ mode=ScreenResolution ] )

QPrinter(printer[, mode=ScreenResolution])

param printer

QPrinterInfo

param mode

PrinterMode

Creates a new printer object with the given mode .

Creates a new printer object with the given printer and mode .

PySide2.QtPrintSupport.QPrinter. PrinterMode

This enum describes the mode the printer should work in. It basically presets a certain resolution and working mode.

常量

描述

QPrinter.ScreenResolution

Sets the resolution of the print device to the screen resolution. This has the big advantage that the results obtained when painting on the printer will match more or less exactly the visible output on the screen. It is the easiest to use, as font metrics on the screen and on the printer are the same. This is the default value. will produce a lower quality output than and should only be used for drafts.

QPrinter.PrinterResolution

This value is deprecated. It is equivalent to on Unix and on Windows and Mac. Due to the difference between and , use of this value may lead to non-portable printer code.

QPrinter.HighResolution

On Windows, sets the printer resolution to that defined for the printer in use. For PDF printing, sets the resolution of the PDF driver to 1200 dpi.

注意

When rendering text on a QPrinter device, it is important to realize that the size of text, when specified in points, is independent of the resolution specified for the device itself. Therefore, it may be useful to specify the font size in pixels when combining text with graphics to ensure that their relative sizes are what you expect.

PySide2.QtPrintSupport.QPrinter. 取向

This enum type (not to be confused with 取向 ) is used to specify each page’s orientation.

常量

描述

QPrinter.Portrait

the page’s height is greater than its width.

QPrinter.Landscape

the page’s width is greater than its height.

This type interacts with PaperSize and setFullPage() to determine the final size of the page available to the application.

PySide2.QtPrintSupport.QPrinter. PageOrder

This enum type is used by QPrinter to tell the application program how to print.

常量

描述

QPrinter.FirstPageFirst

the lowest-numbered page should be printed first.

QPrinter.LastPageFirst

the highest-numbered page should be printed first.

PySide2.QtPrintSupport.QPrinter. ColorMode

This enum type is used to indicate whether QPrinter should print in color or not.

常量

描述

QPrinter.Color

print in color if available, otherwise in grayscale.

QPrinter.GrayScale

print in grayscale, even on color printers.

PySide2.QtPrintSupport.QPrinter. PaperSource

This enum type specifies what paper source QPrinter is to use. QPrinter does not check that the paper source is available; it just uses this information to try and set the paper source. Whether it will set the paper source depends on whether the printer has that particular source.

警告

This is currently only implemented for Windows.

常量

描述

QPrinter.Auto

QPrinter.Cassette

QPrinter.Envelope

QPrinter.EnvelopeManual

QPrinter.FormSource

QPrinter.LargeCapacity

QPrinter.LargeFormat

QPrinter.Lower

QPrinter.MaxPageSource

Deprecated, use instead

QPrinter.Middle

QPrinter.Manual

QPrinter.OnlyOne

QPrinter.Tractor

QPrinter.SmallFormat

QPrinter.Upper

QPrinter.CustomSource

A defined by the printer that is unknown to Qt

QPrinter.LastPaperSource

The highest valid value, currently

PySide2.QtPrintSupport.QPrinter. PrinterState

常量

描述

QPrinter.Idle

QPrinter.Active

QPrinter.Aborted

QPrinter.Error

PySide2.QtPrintSupport.QPrinter. OutputFormat

The enum is used to describe the format QPrinter should use for printing.

常量

描述

QPrinter.NativeFormat

QPrinter will print output using a method defined by the platform it is running on. This mode is the default when printing directly to a printer.

QPrinter.PdfFormat

QPrinter will generate its output as a searchable PDF file. This mode is the default when printing to a file.

PySide2.QtPrintSupport.QPrinter. PrintRange

用于指定打印范围选定选项。

常量

描述

QPrinter.AllPages

应打印所有页面。

QPrinter.Selection

Only the selection should be printed.

QPrinter.PageRange

The specified page range should be printed.

QPrinter.CurrentPage

Only the current page should be printed.

另请参阅

setPrintRange() printRange() PrintRange

PySide2.QtPrintSupport.QPrinter. Unit

This enum type is used to specify the measurement unit for page and paper sizes.

常量

描述

QPrinter.Millimeter

QPrinter.Point

QPrinter.Inch

QPrinter.Pica

QPrinter.Didot

QPrinter.Cicero

QPrinter.DevicePixel

Note the difference between Point and . The Point unit is defined to be 1/72th of an inch, while the unit is resolution dependant and is based on the actual pixels, or dots, on the printer.

PySide2.QtPrintSupport.QPrinter. DuplexMode

This enum is used to indicate whether printing will occur on one or both sides of each sheet of paper (simplex or duplex printing).

常量

描述

QPrinter.DuplexNone

Single sided (simplex) printing only.

QPrinter.DuplexAuto

The printer’s default setting is used to determine whether duplex printing is used.

QPrinter.DuplexLongSide

Both sides of each sheet of paper are used for printing. The paper is turned over its longest edge before the second side is printed

QPrinter.DuplexShortSide

Both sides of each sheet of paper are used for printing. The paper is turned over its shortest edge before the second side is printed

PySide2.QtPrintSupport.QPrinter. abort ( )
返回类型

bool

Aborts the current print run. Returns true if the print run was successfully aborted and printerState() will return Aborted ;否则返回 false .

It is not always possible to abort a print job. For example, all the data has gone to the printer but the printer cannot or will not cancel the job when asked to.

PySide2.QtPrintSupport.QPrinter. actualNumCopies ( )
返回类型

int

Returns the number of copies that will be printed. The default value is 1.

This function always returns the actual value specified in the print dialog or using setNumCopies() .

使用 copyCount() 代替。

PySide2.QtPrintSupport.QPrinter. collateCopies ( )
返回类型

bool

返回 true if collation is turned on when multiple copies is selected. Returns false if it is turned off when multiple copies is selected. When collating is turned off the printing of each individual page will be repeated the numCopies() amount before the next page is started. With collating turned on all pages are printed before the next copy of those pages is started.

PySide2.QtPrintSupport.QPrinter. colorMode ( )
返回类型

ColorMode

Returns the current color mode.

另请参阅

setColorMode()

PySide2.QtPrintSupport.QPrinter. copyCount ( )
返回类型

int

Returns the number of copies that will be printed. The default value is 1.

PySide2.QtPrintSupport.QPrinter. creator ( )
返回类型

unicode

Returns the name of the application that created the document.

另请参阅

setCreator()

PySide2.QtPrintSupport.QPrinter. docName ( )
返回类型

unicode

Returns the document name.

另请参阅

setDocName() PrintEnginePropertyKey

PySide2.QtPrintSupport.QPrinter. doubleSidedPrinting ( )
返回类型

bool

使用 duplex() 代替。

返回 true if double side printing is enabled.

PySide2.QtPrintSupport.QPrinter. duplex ( )
返回类型

DuplexMode

Returns the current duplex mode.

另请参阅

setDuplex()

PySide2.QtPrintSupport.QPrinter. fontEmbeddingEnabled ( )
返回类型

bool

返回 true if font embedding is enabled.

PySide2.QtPrintSupport.QPrinter. fromPage ( )
返回类型

int

Returns the number of the first page in a range of pages to be printed (the “from page” setting). Pages in a document are numbered according to the convention that the first page is page 1.

By default, this function returns a special value of 0, meaning that the “from page” setting is unset.

注意

If and toPage() both return 0, this indicates that the whole document will be printed .

PySide2.QtPrintSupport.QPrinter. fullPage ( )
返回类型

bool

返回 true if the origin of the printer’s coordinate system is at the corner of the page and false if it is at the edge of the printable area.

setFullPage() for details and caveats.

另请参阅

setFullPage() pageLayout()

PySide2.QtPrintSupport.QPrinter. getPageMargins ( unit )
参数

unit Unit

使用 pageLayout() .pageMargins() instead.

Returns the page margins for this printer in left , top , right , bottom . The unit of the returned margins are specified with the unit 参数。

另请参阅

pageLayout() setPageMargins()

PySide2.QtPrintSupport.QPrinter. isValid ( )
返回类型

bool

返回 true if the printer currently selected is a valid printer in the system, or a pure PDF printer; otherwise returns false .

To detect other failures check the output of begin() or newPage() .

printer = QPrinter()
printer.setOutputFormat(QPrinter.PdfFormat)
printer.setOutputFileName("/foobar/nonwritable.pdf")
QPainter painter
if painter.begin(printer):  # failed to open file
    print "failed to open file, is it writable?"
    return 1
painter.drawText(10, 10, "Test")
if !printer.Page():
    print "failed in flushing page to disk, disk full?"
    return 1
painter.drawText(10, 10, "Test 2")
painter.end()
											

另请参阅

setPrinterName()

PySide2.QtPrintSupport.QPrinter. numCopies ( )
返回类型

int

Returns the number of copies to be printed. The default value is 1.

On Windows, macOS and X11 systems that support CUPS, this will always return 1 as these operating systems can internally handle the number of copies.

On X11, this value will return the number of times the application is required to print in order to match the number specified in the printer setup dialog. This has been done since some printer drivers are not capable of buffering up the copies and in those cases the application must make an explicit call to the print code for each copy.

使用 copyCount() in conjunction with supportsMultipleCopies() 代替。

PySide2.QtPrintSupport.QPrinter. orientation ( )
返回类型

取向

使用 pageLayout() .pageOrientation() instead.

Returns the orientation setting. This is driver-dependent, but is usually Portrait .

另请参阅

setOrientation() pageLayout()

PySide2.QtPrintSupport.QPrinter. outputFileName ( )
返回类型

unicode

Returns the name of the output file. By default, this is an empty string (indicating that the printer shouldn’t print to file).

另请参阅

setOutputFileName() PrintEnginePropertyKey

PySide2.QtPrintSupport.QPrinter. outputFormat ( )
返回类型

OutputFormat

Returns the output format for this printer.

另请参阅

setOutputFormat()

PySide2.QtPrintSupport.QPrinter. pageOrder ( )
返回类型

PageOrder

Returns the current page order.

The default page order is FirstPageFirst .

另请参阅

setPageOrder()

PySide2.QtPrintSupport.QPrinter. pageRect ( )
返回类型

QRect

使用 pageLayout() .paintRectPixels( resolution() ) 取而代之。

Returns the page’s rectangle; this is usually smaller than the paperRect() since the page normally has margins between its borders and the paper.

The unit of the returned rectangle is DevicePixel .

另请参阅

pageLayout()

PySide2.QtPrintSupport.QPrinter. pageRect ( arg__1 )
参数

arg__1 Unit

返回类型

QRectF

Returns the page’s rectangle in unit ; this is usually smaller than the paperRect() since the page normally has margins between its borders and the paper.

另请参阅

paperSize()

PySide2.QtPrintSupport.QPrinter. paperName ( )
返回类型

unicode

使用 pageLayout() . pageSize() .name() instead.

Returns the paper name of the paper set on the printer.

The default value for this is driver-dependent.

另请参阅

setPaperName() pageLayout()

PySide2.QtPrintSupport.QPrinter. paperRect ( )
返回类型

QRect

使用 pageLayout() .fullRectPixels( resolution() ) 取而代之。

Returns the paper’s rectangle; this is usually larger than the pageRect() .

The unit of the returned rectangle is DevicePixel .

另请参阅

pageLayout()

PySide2.QtPrintSupport.QPrinter. paperRect ( arg__1 )
参数

arg__1 Unit

返回类型

QRectF

Returns the paper’s rectangle in unit ; this is usually larger than the pageRect() .

另请参阅

pageRect()

PySide2.QtPrintSupport.QPrinter. paperSize ( )
返回类型

PageSize

使用 pageLayout() . pageSize() .id() instead.

Returns the printer paper size. The default value is driver-dependent.

另请参阅

setPaperSize() pageLayout()

PySide2.QtPrintSupport.QPrinter. paperSize ( unit )
参数

unit Unit

返回类型

QSizeF

使用 pageLayout() . pageSize() .size() or pageLayout() .fullPageSize() instead.

Returns the paper size in unit .

Note that the returned size reflects the current paper orientation.

另请参阅

pageLayout()

PySide2.QtPrintSupport.QPrinter. paperSource ( )
返回类型

PaperSource

Returns the printer’s paper source. This is Manual or a printer tray or paper cassette.

另请参阅

setPaperSource()

PySide2.QtPrintSupport.QPrinter. pdfVersion ( )
返回类型

PdfVersion

Returns the PDF version for this printer. The default is PdfVersion_1_4 .

另请参阅

setPdfVersion()

PySide2.QtPrintSupport.QPrinter. printEngine ( )
返回类型

QPrintEngine

Returns the print engine used by the printer.

PySide2.QtPrintSupport.QPrinter. printProgram ( )
返回类型

unicode

Returns the name of the program that sends the print output to the printer.

The default is to return an empty string; meaning that QPrinter will try to be smart in a system-dependent way. On X11 only, you can set it to something different to use a specific print program. On the other platforms, this returns an empty string.

另请参阅

setPrintProgram() setPrinterSelectionOption()

PySide2.QtPrintSupport.QPrinter. printRange ( )
返回类型

PrintRange

Returns the page range of the QPrinter . After the print setup dialog has been opened, this function returns the value selected by the user.

另请参阅

setPrintRange()

PySide2.QtPrintSupport.QPrinter. printerName ( )
返回类型

unicode

Returns the printer name. This value is initially set to the name of the default printer.

另请参阅

setPrinterName()

PySide2.QtPrintSupport.QPrinter. printerState ( )
返回类型

PrinterState

Returns the current state of the printer. This may not always be accurate (for example if the printer doesn’t have the capability of reporting its state to the operating system).

PySide2.QtPrintSupport.QPrinter. resolution ( )
返回类型

int

Returns the current assumed resolution of the printer, as set by setResolution() or by the printer driver.

另请参阅

setResolution()

PySide2.QtPrintSupport.QPrinter. setCollateCopies ( collate )
参数

collate bool

Sets the default value for collation checkbox when the print dialog appears. If collate is true, it will enable setCollateCopiesEnabled(). The default value is false. This value will be changed by what the user presses in the print dialog.

另请参阅

collateCopies()

PySide2.QtPrintSupport.QPrinter. setColorMode ( arg__1 )
参数

arg__1 ColorMode

Sets the printer’s color mode to newColorMode , which can be either Color or GrayScale .

另请参阅

colorMode()

PySide2.QtPrintSupport.QPrinter. setCopyCount ( arg__1 )
参数

arg__1 int

Sets the number of copies to be printed to count .

The printer driver reads this setting and prints the specified number of copies.

PySide2.QtPrintSupport.QPrinter. setCreator ( arg__1 )
参数

arg__1 – unicode

Sets the name of the application that created the document to creator .

This function is only applicable to the X11 version of Qt. If no creator name is specified, the creator will be set to “Qt” followed by some version number.

另请参阅

creator()

PySide2.QtPrintSupport.QPrinter. setDocName ( arg__1 )
参数

arg__1 – unicode

Sets the document name to name .

On X11, the document name is for example used as the default output filename in QPrintDialog . Note that the document name does not affect the file name if the printer is printing to a file. Use the setOutputFile() function for this.

另请参阅

docName() PrintEnginePropertyKey

PySide2.QtPrintSupport.QPrinter. setDoubleSidedPrinting ( enable )
参数

enable bool

使用 setDuplex() 代替。

Enables double sided printing if doubleSided is true; otherwise disables it.

PySide2.QtPrintSupport.QPrinter. setDuplex ( duplex )
参数

duplex DuplexMode

Enables double sided printing based on the duplex 模式。

另请参阅

duplex()

PySide2.QtPrintSupport.QPrinter. setEngines ( printEngine , paintEngine )
参数

This function is used by subclasses of QPrinter to specify custom print and paint engines ( printEngine and paintEngine , respectively).

QPrinter does not take ownership of the engines, so you need to manage these engine instances yourself.

Note that changing the engines will reset the printer state and all its properties.

另请参阅

printEngine() paintEngine() setOutputFormat()

PySide2.QtPrintSupport.QPrinter. setFontEmbeddingEnabled ( enable )
参数

enable bool

Enabled or disables font embedding depending on enable .

PySide2.QtPrintSupport.QPrinter. setFromTo ( fromPage , toPage )
参数
  • fromPage int

  • toPage int

Sets the range of pages to be printed to cover the pages with numbers specified by from and to ,其中 from corresponds to the first page in the range and to corresponds to the last.

注意

Pages in a document are numbered according to the convention that the first page is page 1. However, if from and to are both set to 0, the whole document will be printed .

This function is mostly used to set a default value that the user can override in the print dialog when you call setup() .

PySide2.QtPrintSupport.QPrinter. setFullPage ( arg__1 )
参数

arg__1 bool

fp is true, enables support for painting over the entire page; otherwise restricts painting to the printable area reported by the device.

By default, full page printing is disabled. In this case, the origin of the QPrinter ‘s coordinate system coincides with the top-left corner of the printable area.

If full page printing is enabled, the origin of the QPrinter ‘s coordinate system coincides with the top-left corner of the paper itself. In this case, the device metrics will report the exact same dimensions as indicated by PaperSize . It may not be possible to print on the entire physical page because of the printer’s margins, so the application must account for the margins itself.

另请参阅

fullPage() pageLayout() setPageSize() width() height()

PySide2.QtPrintSupport.QPrinter. setNumCopies ( arg__1 )
参数

arg__1 int

Sets the number of copies to be printed to numCopies .

The printer driver reads this setting and prints the specified number of copies.

使用 setCopyCount() 代替。

另请参阅

numCopies()

PySide2.QtPrintSupport.QPrinter. setOrientation ( arg__1 )
参数

arg__1 取向

使用 setPageOrientation() 代替。

Sets the print orientation to orientation .

The orientation can be either Portrait or Landscape .

The printer driver reads this setting and prints using the specified orientation.

On Windows and Mac, this option can be changed while printing and will take effect from the next call to newPage() .

另请参阅

orientation() setPageOrientation()

PySide2.QtPrintSupport.QPrinter. setOutputFileName ( arg__1 )
参数

arg__1 – unicode

Sets the name of the output file to fileName .

Setting a null or empty name (0 or “”) disables printing to a file. Setting a non-empty name enables printing to a file.

This can change the value of outputFormat() . If the file name has the “.pdf” suffix PDF is generated. If the file name has a suffix other than “.pdf”, the output format used is the one set with setOutputFormat() .

QPrinter uses Qt’s cross-platform PDF print engines respectively. If you can produce this format natively, for example macOS can generate PDF’s from its print engine, set the output format back to NativeFormat .

PySide2.QtPrintSupport.QPrinter. setOutputFormat ( format )
参数

format OutputFormat

Sets the output format for this printer to format .

format 与目前设置的值相同,则不会有任何改变。

format is NativeFormat 那么 printerName will be set to the default printer. If there are no valid printers configured then no change will be made. If you want to set NativeFormat with a specific printerName then use setPrinterName() .

PySide2.QtPrintSupport.QPrinter. setPageMargins ( left , top , right , bottom , unit )
参数
  • left qreal

  • top qreal

  • right qreal

  • bottom qreal

  • unit Unit

使用 setPageMargins ( QMarginsF , Unit ) 取而代之。

此函数设置 left , top , right and bottom page margins for this printer. The unit of the margins are specified with the unit 参数。

另请参阅

setPageMargins()

PySide2.QtPrintSupport.QPrinter. setPageOrder ( arg__1 )
参数

arg__1 PageOrder

Sets the page order to pageOrder .

The page order can be FirstPageFirst or LastPageFirst . The application is responsible for reading the page order and printing accordingly.

This function is mostly useful for setting a default value that the user can override in the print dialog.

This function is only supported under X11.

另请参阅

pageOrder()

PySide2.QtPrintSupport.QPrinter. setPaperName ( paperName )
参数

paperName – unicode

使用 setPageSize ( QPageSize ) 取而代之。

Sets the paper used by the printer to paperName .

另请参阅

paperName() setPageSize()

PySide2.QtPrintSupport.QPrinter. setPaperSize ( arg__1 )
参数

arg__1 PageSize

使用 setPageSize ( QPageSize ) 取而代之。

Sets the printer paper size to newPaperSize if that size is supported. The result is undefined if newPaperSize 不被支持。

The default paper size is driver-dependent.

This function is useful mostly for setting a default value that the user can override in the print dialog.

另请参阅

paperSize() setPageSize()

PySide2.QtPrintSupport.QPrinter. setPaperSize ( paperSize , unit )
参数
  • paperSize QSizeF

  • unit Unit

使用 setPageSize ( QPageSize ) 取而代之。

Sets the paper size based on paperSize in unit .

Note that the paper size is defined in a portrait layout, regardless of what the current printer orientation is set to.

另请参阅

setPageSize()

PySide2.QtPrintSupport.QPrinter. setPaperSource ( arg__1 )
参数

arg__1 PaperSource

Sets the paper source setting to source .

Windows only: This option can be changed while printing and will take effect from the next call to newPage()

另请参阅

paperSource()

PySide2.QtPrintSupport.QPrinter. setPdfVersion ( version )
参数

version PdfVersion

Sets the PDF version for this printer to version .

version 与目前设置的值相同,则不会有任何改变。

另请参阅

pdfVersion()

PySide2.QtPrintSupport.QPrinter. setPrintProgram ( arg__1 )
参数

arg__1 – unicode

Sets the name of the program that should do the print job to printProg .

On X11, this function sets the program to call with the PDF output. On other platforms, it has no effect.

另请参阅

printProgram()

PySide2.QtPrintSupport.QPrinter. setPrintRange ( range )
参数

range PrintRange

Sets the print range option in to be range .

另请参阅

printRange()

PySide2.QtPrintSupport.QPrinter. setPrinterName ( arg__1 )
参数

arg__1 – unicode

Sets the printer name to name .

name is empty then the output format will be set to PdfFormat .

name is not a valid printer then no change will be made.

name is a valid printer then the output format will be set to NativeFormat .

PySide2.QtPrintSupport.QPrinter. setResolution ( arg__1 )
参数

arg__1 int

Requests that the printer prints at dpi or as near to dpi as possible.

此设置影响返回的坐标系统,例如 viewport() .

This function must be called before begin() to have an effect on all platforms.

PySide2.QtPrintSupport.QPrinter. setWinPageSize ( winPageSize )
参数

winPageSize int

使用 id (windowsId) and setPageLayout ( QPageSize ) 取而代之。

Sets the page size to be used by the printer under Windows to pageSize .

另请参阅

winPageSize() pageLayout()

PySide2.QtPrintSupport.QPrinter. supportedResolutions ( )
返回类型

Returns a list of the resolutions (a list of dots-per-inch integers) that the printer says it supports.

For X11 where all printing is directly to PDF, this function will always return a one item list containing only the PDF resolution, i.e., 72 (72 dpi – but see PrinterMode ).

PySide2.QtPrintSupport.QPrinter. supportsMultipleCopies ( )
返回类型

bool

返回 true if the printer supports printing multiple copies of the same document in one job; otherwise false is returned.

On most systems this function will return true. However, on X11 systems that do not support CUPS, this function will return false. That means the application has to handle the number of copies by printing the same document the required number of times.

PySide2.QtPrintSupport.QPrinter. toPage ( )
返回类型

int

Returns the number of the last page in a range of pages to be printed (the “to page” setting). Pages in a document are numbered according to the convention that the first page is page 1.

By default, this function returns a special value of 0, meaning that the “to page” setting is unset.

注意

fromPage() and both return 0, this indicates that the whole document will be printed .

The programmer is responsible for reading this setting and printing accordingly.

PySide2.QtPrintSupport.QPrinter. winPageSize ( )
返回类型

int

使用 pageLayout . pageSize() .windowsId() instead.

Returns the page size used by the printer under Windows.

另请参阅

setWinPageSize() pageLayout()