def
abort
()
def
actualNumCopies
()
def
collateCopies
()
def
colorMode
()
def
copyCount
()
def
creator
()
def
docName
()
def
doubleSidedPrinting
()
def
duplex
()
def
fontEmbeddingEnabled
()
def
fromPage
()
def
fullPage
()
def
getPageMargins
(, unit)
def
isValid
()
def
numCopies
()
def
orientation
()
def
outputFileName
()
def
outputFormat
()
def
pageOrder
()
def
pageRect
()
def
pageRect
(arg__1)
def
paperName
()
def
paperRect
()
def
paperRect
(arg__1)
def
paperSize
()
def
paperSize
(unit)
def
paperSource
()
def
pdfVersion
()
def
printEngine
()
def
printProgram
()
def
printRange
()
def
printerName
()
def
printerState
()
def
resolution
()
def
setCollateCopies
(collate)
def
setColorMode
(arg__1)
def
setCopyCount
(arg__1)
def
setCreator
(arg__1)
def
setDocName
(arg__1)
def
setDoubleSidedPrinting
(enable)
def
setDuplex
(duplex)
def
setEngines
(printEngine, paintEngine)
def
setFontEmbeddingEnabled
(enable)
def
setFromTo
(fromPage, toPage)
def
setFullPage
(arg__1)
def
setNumCopies
(arg__1)
def
setOrientation
(arg__1)
def
setOutputFileName
(arg__1)
def
setOutputFormat
(format)
def
setPageMargins
(left, top, right, bottom, unit)
def
setPageOrder
(arg__1)
def
setPaperName
(paperName)
def
setPaperSize
(arg__1)
def
setPaperSize
(paperSize, unit)
def
setPaperSource
(arg__1)
def
setPdfVersion
(version)
def
setPrintProgram
(arg__1)
def
setPrintRange
(range)
def
setPrinterName
(arg__1)
def
setResolution
(arg__1)
def
setWinPageSize
(winPageSize)
def
supportedResolutions
()
def
supportsMultipleCopies
()
def
toPage
()
def
winPageSize
()
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
QWidgetandQPixmap. 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,
QPrinteruses the built-in printer drivers. On X11,QPrinteruses the Common Unix Printing System (CUPS) to send PDF output to the printer. As an alternative, theprintProgram()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.
QPrintersupports a number of parameters, most of which can be changed by the end user through aprint dialog. In general,QPrinterpasses these functions onto the underlyingQPrintEngine.The most important parameters are:
setOrientation()告诉QPrinterwhich page orientation to use.
setPaperSize()告诉QPrinterwhat paper size to expect from the printer.
setResolution()告诉QPrinterwhat resolution you wish the printer to provide, in dots per inch (DPI).
setFullPage()告诉QPrinterwhether you want to deal with the full page or just with the part the printer can draw on.
setCopyCount()告诉QPrinterhow many copies of the document it should print.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. SeeQAbstractPrintDialog‘s documentation for more details.当
begin()is called, theQPrinterit operates on is prepared for a new page, enabling theQPainterto 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, orend()can be called to finish printing. The second page and all following pages are prepared using a call tonewPage()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 callingnewPage()afterbegin()if you need to insert a blank page at the beginning of a printed document. Similarly, callingnewPage()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
QPrintercan print to anyQPrintEnginesubclass, it is possible to extend printing support to cover new types of printing subsystem by subclassingQPrintEngineand reimplementing its interface.另请参阅
QPrintDialogQt Print Support
QPrinter
(
[
mode=ScreenResolution
]
)
¶
QPrinter(printer[, mode=ScreenResolution])
- param printer
- 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.PdfFormat |
|
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
(
)
¶
Returns the current color mode.
另请参阅
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.
另请参阅
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
(
)
¶
Returns the current duplex mode.
另请参阅
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()
另请参阅
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
(
)
¶
Returns the output format for this printer.
另请参阅
PySide2.QtPrintSupport.QPrinter.
pageOrder
(
)
¶
Returns the current page order.
The default page order is
FirstPageFirst
.
另请参阅
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.
另请参阅
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()
.
另请参阅
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
(
)
¶
Returns the printer’s paper source. This is
Manual
or a printer tray or paper cassette.
另请参阅
PySide2.QtPrintSupport.QPrinter.
pdfVersion
(
)
¶
PdfVersion
Returns the PDF version for this printer. The default is
PdfVersion_1_4
.
另请参阅
PySide2.QtPrintSupport.QPrinter.
printEngine
(
)
¶
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
(
)
¶
Returns the page range of the
QPrinter
. After the print setup dialog has been opened, this function returns the value selected by the user.
另请参阅
PySide2.QtPrintSupport.QPrinter.
printerName
(
)
¶
unicode
Returns the printer name. This value is initially set to the name of the default printer.
另请参阅
PySide2.QtPrintSupport.QPrinter.
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.
另请参阅
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.
另请参阅
PySide2.QtPrintSupport.QPrinter.
setColorMode
(
arg__1
)
¶
arg__1
–
ColorMode
Sets the printer’s color mode to
newColorMode
, which can be either
Color
or
GrayScale
.
另请参阅
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.
另请参阅
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
模式。
另请参阅
PySide2.QtPrintSupport.QPrinter.
setEngines
(
printEngine
,
paintEngine
)
¶
printEngine
–
QPrintEngine
paintEngine
–
QPaintEngine
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()
代替。
另请参阅
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
参数。
另请参阅
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.
另请参阅
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()
另请参阅
PySide2.QtPrintSupport.QPrinter.
setPdfVersion
(
version
)
¶
version
–
PdfVersion
Sets the PDF version for this printer to
version
.
若
version
与目前设置的值相同,则不会有任何改变。
另请参阅
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.
另请参阅
PySide2.QtPrintSupport.QPrinter.
setPrintRange
(
range
)
¶
range
–
PrintRange
Sets the print range option in to be
range
.
另请参阅
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()