mirror of
https://github.com/Stirling-Tools/Stirling-PDF.git
synced 2025-09-22 19:46:39 +00:00

# Description of Changes Add Crop to V2 --------- Co-authored-by: EthanHealy01 <80844253+EthanHealy01@users.noreply.github.com> Co-authored-by: Connor Yoh <connor@stirlingpdf.com> Co-authored-by: ConnorYoh <40631091+ConnorYoh@users.noreply.github.com>
9 lines
282 B
TypeScript
9 lines
282 B
TypeScript
// Default PDF page sizes in points (1 point = 1/72 inch)
|
|
export const PAGE_SIZES = {
|
|
A4: { width: 595, height: 842 },
|
|
LETTER: { width: 612, height: 792 },
|
|
A3: { width: 842, height: 1191 },
|
|
A5: { width: 420, height: 595 },
|
|
LEGAL: { width: 612, height: 1008 },
|
|
} as const;
|