./pdfclose



       pdfclose


SYNOPSIS

       #include <panda/constants.h> #include <panda/functions.h>

       void pdfclose(pdf *document);


DESCRIPTION

       The  function  pdfclose  closes the given PDF document and
       causes it to be written out to disc. This may  take  some-
       time,  depending on the size of the PDF that you have gen-
       erated.

       This function is modelled on the fopen() call.


EXAMPLE

       Simply use:
              #include <panda/constants.h>
              #include <panda/functions.h>

              pdf *demo;

              demo = pdfopen("output.pdf", "w");

              // PDF operations here

              pdfclose(demo);



AUTHOR

       Panda   is   under   development    by    Michael    Still
       (mikal@stillhq.com).  All  code is Copyright Michael Still
       2000, and is released under the GPL. Code submissions  are
       welcomed. Contact Michael at the address above if you have
       something you would like to contribute.


BUGS

       There are no known bugs in Panda. If you find one,  please
       contact mikal@stillhq.com and let me know.


VERSION

       This information relates to version 0.2 of Panda











Man(1) output converted with man2html