1

Hello, i am using HTML2PDF v3.11

I am stuck with one problem, can you tell me how i can make custom pdf page format (320x450 mm), class doesnt recognize format SRA3.

Thanks.

2

Hi !

HTML2PDF use the same format that FPDF : http://fpdf.org/en/doc/fpdf.htm

;
   Format : The format used for pages. It can be either one of the following values (case insensitive):

        * A3
        * A4
        * A5
        * Letter
        * Legal

    or an array containing the width and the height (expressed in the unit given by unit).

    Default value is A4.

Example with a custom 100x150 mm page format:
    $pdf = new FPDF('P', 'mm', array(100,150))




ps : V3.11 is old... try v3.17wink
Ancien pseudo : lolo

3

Thank you very much, this is what i need.

Cheers smile