mPDF Manual – mPDF functions

SetCreator()

(mPDF ≥ 1.0)

SetCreator – Set the document Creator

Description

void SetCreator ( string $text )

Set the Creator for the document. This metadata can be seen when inspecting the document properties in Adobe Reader.

Parameters

$text

Defines the text to appear as a Creator. The text should be UTF-8 encoded, but should not contain HTML mark-up tags.

strcode2utf() is a useful function provided with mPDF which converts HTML numerical entities to UTF-8 encoded string.

Examples

Example #1

<?php
$mpdf = new \Mpdf\Mpdf();

$mpdf->SetCreator('My Creator');

$mpdf->WriteHTML('Hello World');
$mpdf->Output('filename.pdf');

Example #2

<?php
$mpdf = new \Mpdf\Mpdf();

// The library defines a function strcode2utf() to convert htmlentities to UTF-8 encoded text
$md = strcode2utf("&amp;#1575;&amp;#1610;&amp;#1604;&amp;#1575;&amp;#1578; &amp;#1601;&amp;#1610;&amp;#1605;&amp;#1575; &amp;#1575;&amp;#1610;&amp;#1604;&amp;#1575;&amp;#1578; &amp;#1601;&amp;#1610;&amp;#1605;&amp;#1575;");
$mpdf->SetCreator($md);

$mpdf->WriteHTML('Hello World');
$mpdf->Output('filename.pdf');

See Also

Fork me on GitHub