1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152
|
/*
* $Id: PageSize.java,v 1.26 2002/06/20 13:30:24 blowagie Exp $
* $Name: $
*
* Copyright 1999, 2000, 2001, 2002 by Bruno Lowagie.
*
* The contents of this file are subject to the Mozilla Public License Version 1.1
* (the "License"); you may not use this file except in compliance with the License.
* You may obtain a copy of the License at http://www.mozilla.org/MPL/
*
* Software distributed under the License is distributed on an "AS IS" basis,
* WITHOUT WARRANTY OF ANY KIND, either express or implied. See the License
* for the specific language governing rights and limitations under the License.
*
* The Original Code is 'iText, a free JAVA-PDF library'.
*
* The Initial Developer of the Original Code is Bruno Lowagie. Portions created by
* the Initial Developer are Copyright (C) 1999, 2000, 2001, 2002 by Bruno Lowagie.
* All Rights Reserved.
* Co-Developer of the code is Paulo Soares. Portions created by the Co-Developer
* are Copyright (C) 2000, 2001, 2002 by Paulo Soares. All Rights Reserved.
*
* Contributor(s): all the names of the contributors are added in the source code
* where applicable.
*
* Alternatively, the contents of this file may be used under the terms of the
* LGPL license (the "GNU LIBRARY GENERAL PUBLIC LICENSE"), in which case the
* provisions of LGPL are applicable instead of those above. If you wish to
* allow use of your version of this file only under the terms of the LGPL
* License and not to allow others to use your version of this file under
* the MPL, indicate your decision by deleting the provisions above and
* replace them with the notice and other provisions required by the LGPL.
* If you do not delete the provisions above, a recipient may use your version
* of this file under either the MPL or the GNU LIBRARY GENERAL PUBLIC LICENSE.
*
* This library is free software; you can redistribute it and/or modify it
* under the terms of the MPL as stated above or under the terms of the GNU
* Library General Public License as published by the Free Software Foundation;
* either version 2 of the License, or any later version.
*
* This library is distributed in the hope that it will be useful, but WITHOUT
* ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS
* FOR A PARTICULAR PURPOSE. See the GNU Library general Public License for more
* details.
*
* If you didn't download this code from the following link, you should check if
* you aren't using an obsolete version:
* http://www.lowagie.com/iText/
*/
package com.lowagie.text;
/**
* The <CODE>PageSize</CODE>-object contains a number of rectangles representing the most common papersizes.
*
* @see Rectangle
*/
public class PageSize {
// membervariables
/** This is the letter format */
public static final Rectangle LETTER = new Rectangle(612,792);
/** This is the note format */
public static final Rectangle NOTE = new Rectangle(540,720);
/** This is the legal format */
public static final Rectangle LEGAL = new Rectangle(612,1008);
/** This is the a0 format */
public static final Rectangle A0 = new Rectangle(2384,3370);
/** This is the a1 format */
public static final Rectangle A1 = new Rectangle(1684,2384);
/** This is the a2 format */
public static final Rectangle A2 = new Rectangle(1190,1684);
/** This is the a3 format */
public static final Rectangle A3 = new Rectangle(842,1190);
/** This is the a4 format */
public static final Rectangle A4 = new Rectangle(595,842);
/** This is the a5 format */
public static final Rectangle A5 = new Rectangle(421,595);
/** This is the a6 format */
public static final Rectangle A6 = new Rectangle(297,421);
/** This is the a7 format */
public static final Rectangle A7 = new Rectangle(210,297);
/** This is the a8 format */
public static final Rectangle A8 = new Rectangle(148,210);
/** This is the a9 format */
public static final Rectangle A9 = new Rectangle(105,148);
/** This is the a10 format */
public static final Rectangle A10 = new Rectangle(74,105);
/** This is the b0 format */
public static final Rectangle B0 = new Rectangle(2836,4008);
/** This is the b1 format */
public static final Rectangle B1 = new Rectangle(2004,2836);
/** This is the b2 format */
public static final Rectangle B2 = new Rectangle(1418,2004);
/** This is the b3 format */
public static final Rectangle B3 = new Rectangle(1002,1418);
/** This is the b4 format */
public static final Rectangle B4 = new Rectangle(709,1002);
/** This is the b5 format */
public static final Rectangle B5 = new Rectangle(501,709);
/** This is the archE format */
public static final Rectangle ARCH_E = new Rectangle(2592,3456);
/** This is the archD format */
public static final Rectangle ARCH_D = new Rectangle(1728,2592);
/** This is the archC format */
public static final Rectangle ARCH_C = new Rectangle(1296,1728);
/** This is the archB format */
public static final Rectangle ARCH_B = new Rectangle(864,1296);
/** This is the archA format */
public static final Rectangle ARCH_A = new Rectangle(648,864);
/** This is the flsa format */
public static final Rectangle FLSA = new Rectangle(612,936);
/** This is the flse format */
public static final Rectangle FLSE = new Rectangle(612,936);
/** This is the halfletter format */
public static final Rectangle HALFLETTER = new Rectangle(396,612);
/** This is the 11x17 format */
public static final Rectangle _11X17 = new Rectangle(792,1224);
/** This is the ledger format */
public static final Rectangle LEDGER = new Rectangle(1224,792);
}
|