This example on tcpdf\'s website shows how to use page formats like A4, A5 etc, but how do I set tcpdf to use custom sizes like 175mm x 266 mm?
Solutions appreciated.
Go to /config/tcpdf_config.php and around line 117, modify the line:
define ('PDF_PAGE_FORMAT', 'A4');
by
define ('PDF_PAGE_FORMAT', 'LETTER');
It is important to put "LETTER" in uppercase, you can see all possible values in this file: tcpdf/include/tcpdf_static.php.
tcpdf/include/tcpdf_static.php