This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<?php | |
require("fpdf.php"); | |
class Pdf extends \FPDF | |
{ | |
const DPI = 300; | |
const MM_IN_INCH = 25.4; | |
const A4_HEIGHT = 297; | |
const A4_WIDTH = 210; |