sivarajankumar / alivepdf

Automatically exported from code.google.com/p/alivepdf
0 stars 0 forks source link

Incorrect page sizes #117

Open GoogleCodeExporter opened 8 years ago

GoogleCodeExporter commented 8 years ago
Is there a reason the pixel values for some of the below sizes are not
72dpi? (ex. A5 is 72.5758621 DPI)

public static var A3:Size          = new Size([841.89, 1190.55],"A3",      
[11.7, 16.5],[297, 420])
public static var A4:Size          = new Size([595.28, 841.89], "A4",      
[8.3, 11.7], [210, 297]);
public static var A5:Size          = new Size([420.94, 595.28], "A5",      
[5.8,  8.3], [148, 210]);
public static var LETTER:Size      = new Size([612, 792],       "Letter",
[8.5, 11],   [216, 279]);
public static var LEGAL:Size       = new Size([612, 1008],      "Legal", 
[8.5, 14],   [216, 356]);
public static var TABLOID:Size     = new Size([792, 1224],     
"Tabloid",[11, 17],    [279, 432]);

Original issue reported on code.google.com by HandOfC...@gmail.com on 24 Apr 2009 at 9:59