setcreator.htm 1.1 KB

12345678910111213141516171819202122232425262728293031323334
  1. <!DOCTYPE html PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN">
  2. <html>
  3. <head>
  4. <meta http-equiv="Content-Type" content="text/html; charset=ISO-8859-1">
  5. <title>SetCreator</title>
  6. <link type="text/css" rel="stylesheet" href="../fpdf.css">
  7. </head>
  8. <body>
  9. <h1>SetCreator</h1>
  10. <code>SetCreator(<b>string</b> creator [, <b>boolean</b> isUTF8])</code>
  11. <h2>Description</h2>
  12. Defines the creator of the document. This is typically the name of the application that
  13. generates the PDF.
  14. <h2>Parameters</h2>
  15. <dl class="param">
  16. <dt><code>creator</code></dt>
  17. <dd>
  18. The name of the creator.
  19. </dd>
  20. <dt><code>isUTF8</code></dt>
  21. <dd>
  22. Indicates if the string is encoded in ISO-8859-1 (<code>false</code>) or UTF-8 (<code>true</code>).<br>
  23. Default value: <code>false</code>.
  24. </dd>
  25. </dl>
  26. <h2>See also</h2>
  27. <a href="setauthor.htm">SetAuthor()</a>,
  28. <a href="setkeywords.htm">SetKeywords()</a>,
  29. <a href="setsubject.htm">SetSubject()</a>,
  30. <a href="settitle.htm">SetTitle()</a>.
  31. <hr style="margin-top:1.5em">
  32. <div style="text-align:center"><a href="index.htm">Index</a></div>
  33. </body>
  34. </html>