java.lang.Object
java.awt.print.PageFormat
- All Implemented Interfaces:
- Cloneable
public class PageFormat extends Object implements Cloneable
The 
PageFormat class describes the size and
 orientation of a page to be printed.- 
Field SummaryFields Modifier and Type Field Description static intLANDSCAPEThe origin is at the bottom left of the paper with x running bottom to top and y running left to right.static intPORTRAITThe origin is at the top left of the paper with x running to the right and y running down the paper.static intREVERSE_LANDSCAPEThe origin is at the top right of the paper with x running top to bottom and y running right to left.
- 
Constructor SummaryConstructors Constructor Description PageFormat()Creates a default, portrait-orientedPageFormat.
- 
Method SummaryModifier and Type Method Description Objectclone()Makes a copy of thisPageFormatwith the same contents as thisPageFormat.doublegetHeight()Returns the height, in 1/72nds of an inch, of the page.doublegetImageableHeight()Return the height, in 1/72nds of an inch, of the imageable area of the page.doublegetImageableWidth()Returns the width, in 1/72nds of an inch, of the imageable area of the page.doublegetImageableX()Returns the x coordinate of the upper left point of the imageable area of thePaperobject associated with thisPageFormat.doublegetImageableY()Returns the y coordinate of the upper left point of the imageable area of thePaperobject associated with thisPageFormat.double[]getMatrix()Returns a transformation matrix that translates user space rendering to the requested orientation of the page.intgetOrientation()Returns the orientation of thisPageFormat.PapergetPaper()Returns a copy of thePaperobject associated with thisPageFormat.doublegetWidth()Returns the width, in 1/72nds of an inch, of the page.voidsetOrientation(int orientation)Sets the page orientation.voidsetPaper(Paper paper)Sets thePaperobject for thisPageFormat.
- 
Field Details- 
LANDSCAPEThe origin is at the bottom left of the paper with x running bottom to top and y running left to right. Note that this is not the Macintosh landscape but is the Window's and PostScript landscape.- See Also:
- Constant Field Values
 
- 
PORTRAITThe origin is at the top left of the paper with x running to the right and y running down the paper.- See Also:
- Constant Field Values
 
- 
REVERSE_LANDSCAPEThe origin is at the top right of the paper with x running top to bottom and y running right to left. Note that this is the Macintosh landscape.- See Also:
- Constant Field Values
 
 
- 
- 
Constructor Details- 
PageFormatpublic PageFormat()Creates a default, portrait-orientedPageFormat.
 
- 
- 
Method Details- 
cloneMakes a copy of thisPageFormatwith the same contents as thisPageFormat.
- 
getWidthpublic double getWidth()Returns the width, in 1/72nds of an inch, of the page. This method takes into account the orientation of the page when determining the width.- Returns:
- the width of the page.
 
- 
getHeightpublic double getHeight()Returns the height, in 1/72nds of an inch, of the page. This method takes into account the orientation of the page when determining the height.- Returns:
- the height of the page.
 
- 
getImageableXpublic double getImageableX()Returns the x coordinate of the upper left point of the imageable area of thePaperobject associated with thisPageFormat. This method takes into account the orientation of the page.- Returns:
- the x coordinate of the upper left point of the
 imageable area of the Paperobject associated with thisPageFormat.
 
- 
getImageableYpublic double getImageableY()Returns the y coordinate of the upper left point of the imageable area of thePaperobject associated with thisPageFormat. This method takes into account the orientation of the page.- Returns:
- the y coordinate of the upper left point of the
 imageable area of the Paperobject associated with thisPageFormat.
 
- 
getImageableWidthpublic double getImageableWidth()Returns the width, in 1/72nds of an inch, of the imageable area of the page. This method takes into account the orientation of the page.- Returns:
- the width of the page.
 
- 
getImageableHeightpublic double getImageableHeight()Return the height, in 1/72nds of an inch, of the imageable area of the page. This method takes into account the orientation of the page.- Returns:
- the height of the page.
 
- 
getPaperReturns a copy of thePaperobject associated with thisPageFormat. Changes made to thePaperobject returned from this method do not affect thePaperobject of thisPageFormat. To update thePaperobject of thisPageFormat, create a newPaperobject and set it into thisPageFormatby using thesetPaper(Paper)method.- Returns:
- a copy of the Paperobject associated with thisPageFormat.
- See Also:
- setPaper(java.awt.print.Paper)
 
- 
setPaperSets thePaperobject for thisPageFormat.- Parameters:
- paper- the- Paperobject to which to set the- Paperobject for this- PageFormat.
- Throws:
- NullPointerException- a null paper instance was passed as a parameter.
- See Also:
- getPaper()
 
- 
setOrientationSets the page orientation.orientationmust be one of the constants: PORTRAIT, LANDSCAPE, or REVERSE_LANDSCAPE.- Parameters:
- orientation- the new orientation for the page
- Throws:
- IllegalArgumentException- if an unknown orientation was requested
- See Also:
- getOrientation()
 
- 
getOrientationpublic int getOrientation()Returns the orientation of thisPageFormat.- Returns:
- this PageFormatobject's orientation.
- See Also:
- setOrientation(int)
 
- 
getMatrixpublic double[] getMatrix()Returns a transformation matrix that translates user space rendering to the requested orientation of the page. The values are placed into the array as { m00, m10, m01, m11, m02, m12} in the form required by theAffineTransformconstructor.- Returns:
- the matrix used to translate user space rendering to the orientation of the page.
- See Also:
- AffineTransform
 
 
-