hpdf_pdfa.h 1016 B

12345678910111213141516171819202122232425262728293031323334353637383940414243
  1. /*
  2. * << Haru Free PDF Library >> -- hpdf_pdfa.h
  3. *
  4. * URL: http://libharu.org
  5. *
  6. * Copyright (c) 1999-2006 Takeshi Kanno <[email protected]>
  7. * Copyright (c) 2007-2009 Antony Dovgal <[email protected]>
  8. *
  9. * Permission to use, copy, modify, distribute and sell this software
  10. * and its documentation for any purpose is hereby granted without fee,
  11. * provided that the above copyright notice appear in all copies and
  12. * that both that copyright notice and this permission notice appear
  13. * in supporting documentation.
  14. * It is provided "as is" without express or implied warranty.
  15. *
  16. */
  17. #ifndef _HPDF_PDFA_H
  18. #define _HPDF_PDFA_H
  19. #include "hpdf_doc.h"
  20. #include "hpdf_objects.h"
  21. #ifdef __cplusplus
  22. extern "C" {
  23. #endif
  24. HPDF_STATUS
  25. HPDF_PDFA_AppendOutputIntents(HPDF_Doc pdf, const char *iccname, HPDF_Dict iccdict);
  26. HPDF_STATUS
  27. HPDF_PDFA_SetPDFAConformance (HPDF_Doc pdf,
  28. HPDF_PDFAType pdfatype);
  29. HPDF_STATUS
  30. HPDF_PDFA_GenerateID(HPDF_Doc);
  31. #ifdef __cplusplus
  32. }
  33. #endif
  34. #endif