* contrib/hbhpdf/3rd/libhpdf/libhpdf.hbp
* contrib/hbhpdf/3rd/libhpdf/libhpdf.dif
+ contrib/hbhpdf/3rd/libhpdf/hpdf3dme.h
+ contrib/hbhpdf/3rd/libhpdf/hpdf3dme.c
+ contrib/hbhpdf/3rd/libhpdf/hpdfencu.c
+ contrib/hbhpdf/3rd/libhpdf/hpdfexda.h
+ contrib/hbhpdf/3rd/libhpdf/hpdfexda.c
+ contrib/hbhpdf/3rd/libhpdf/hpdfimac.c
+ contrib/hbhpdf/3rd/libhpdf/t4.h
* contrib/hbhpdf/3rd/libhpdf/*
+ libharu 2.2.1 -> 2.3.0RC2
updated to latest RC2 because I may also need it and
the project is pretty much dead these days, so it might
take a while to decide on a release. (plus I submitted
pull request for warnings and report about more warnings)
beware of bugs and if you find any, report to libharu
developers. most important new stuff is partial unicode
(1-2 bytes UTF8) and PDF/A support. it also incorporates
our png patch, so local patching is minimal now.
; TODO: add hbhpdf wrappers for new functions not yet covered.
285 lines
9.8 KiB
C
285 lines
9.8 KiB
C
/*
|
|
* << Haru Free PDF Library >> -- hpdf_pdfa.c
|
|
*
|
|
* URL: http://libharu.org
|
|
*
|
|
* Copyright (c) 1999-2006 Takeshi Kanno <takeshi_kanno@est.hi-ho.ne.jp>
|
|
* Copyright (c) 2007-2009 Antony Dovgal <tony@daylessday.org>
|
|
*
|
|
* Permission to use, copy, modify, distribute and sell this software
|
|
* and its documentation for any purpose is hereby granted without fee,
|
|
* provided that the above copyright notice appear in all copies and
|
|
* that both that copyright notice and this permission notice appear
|
|
* in supporting documentation.
|
|
* It is provided "as is" without express or implied warranty.
|
|
*
|
|
*/
|
|
/* This is used to avoid warnings on 'ctime' when compiling in MSVC 9 */
|
|
#ifndef _CRT_SECURE_NO_WARNINGS
|
|
#define _CRT_SECURE_NO_WARNINGS
|
|
#endif
|
|
|
|
#include <time.h>
|
|
#include "hpdfutil.h"
|
|
#include "hpdf.h"
|
|
#include <string.h>
|
|
|
|
|
|
#define XMP_HEADER "<?xpacket begin='' id='W5M0MpCehiHzreSzNTczkc9d'?><?adobe-xap-filters esc=\"CRLF\"?><x:xmpmeta xmlns:x='adobe:ns:meta/' x:xmptk='XMP toolkit 2.9.1-13, framework 1.6'><rdf:RDF xmlns:rdf='http://www.w3.org/1999/02/22-rdf-syntax-ns#' xmlns:iX='http://ns.adobe.com/iX/1.0/'>"
|
|
#define XMP_FOOTER "</rdf:RDF></x:xmpmeta><?xpacket end='w'?>"
|
|
#define XMP_PDFA1A "<rdf:Description rdf:about='' xmlns:pdfaid='http://www.aiim.org/pdfa/ns/id/' pdfaid:part='1' pdfaid:conformance='A'/>"
|
|
#define XMP_PDFA1B "<rdf:Description rdf:about='' xmlns:pdfaid='http://www.aiim.org/pdfa/ns/id/' pdfaid:part='1' pdfaid:conformance='B'/>"
|
|
#define XMP_PRODUCER_STARTTAG "<rdf:Description rdf:about='' xmlns:pdf='http://ns.adobe.com/pdf/1.3/' pdf:Producer='"
|
|
#define XMP_PRODUCER_ENDTAG "'/>"
|
|
#define XMP_INFODATA_STARTTAG "<rdf:Description rdf:about='' xmlns:xmp='http://ns.adobe.com/xap/1.0/'>"
|
|
#define XMP_INFODATA_ENDTAG "</rdf:Description>"
|
|
#define XMP_CREATE_DATE_STARTTAG "<xmp:CreateDate>"
|
|
#define XMP_CREATE_DATE_ENDTAG "</xmp:CreateDate>"
|
|
#define XMP_MOD_DATE_STARTTAG "<xmp:ModifyDate>"
|
|
#define XMP_MOD_DATE_ENDTAG "</xmp:ModifyDate>"
|
|
#define XMP_CREATORTOOL_STARTTAG "<xmp:CreatorTool>"
|
|
#define XMP_CREATORTOOL_ENDTAG "</xmp:CreatorTool>"
|
|
|
|
/*
|
|
* Convert date in PDF specific format: D:YYYYMMDDHHmmSS
|
|
* to XMP value in format YYYY-MM-DDTHH:mm:SS+offH:offMin
|
|
*/
|
|
HPDF_STATUS ConvertDateToXMDate(HPDF_Stream stream, const char *pDate)
|
|
{
|
|
HPDF_STATUS ret;
|
|
|
|
if(pDate==NULL) return HPDF_INVALID_PARAMETER;
|
|
if(strlen(pDate)<16) return HPDF_INVALID_PARAMETER;
|
|
if(pDate[0]!='D'||
|
|
pDate[1]!=':') return HPDF_INVALID_PARAMETER;
|
|
pDate+=2;
|
|
/* Copy YYYY */
|
|
ret = HPDF_Stream_Write(stream, (const HPDF_BYTE*)pDate, 4);
|
|
if (ret != HPDF_OK)
|
|
return ret;
|
|
pDate+=4;
|
|
/* Write -MM */
|
|
ret = HPDF_Stream_Write(stream, (const HPDF_BYTE*)"-", 1);
|
|
if (ret != HPDF_OK)
|
|
return ret;
|
|
ret = HPDF_Stream_Write(stream, (const HPDF_BYTE*)pDate, 2);
|
|
if (ret != HPDF_OK)
|
|
return ret;
|
|
pDate+=2;
|
|
/* Write -DD */
|
|
ret = HPDF_Stream_Write(stream, (const HPDF_BYTE*)"-", 1);
|
|
if (ret != HPDF_OK)
|
|
return ret;
|
|
ret = HPDF_Stream_Write(stream, (const HPDF_BYTE*)pDate, 2);
|
|
if (ret != HPDF_OK)
|
|
return ret;
|
|
pDate+=2;
|
|
/* Write THH */
|
|
ret = HPDF_Stream_Write(stream, (const HPDF_BYTE*)"T", 1);
|
|
if (ret != HPDF_OK)
|
|
return ret;
|
|
ret = HPDF_Stream_Write(stream, (const HPDF_BYTE*)pDate, 2);
|
|
if (ret != HPDF_OK)
|
|
return ret;
|
|
pDate+=2;
|
|
/* Write :mm */
|
|
ret = HPDF_Stream_Write(stream, (const HPDF_BYTE*)":", 1);
|
|
if (ret != HPDF_OK)
|
|
return ret;
|
|
ret = HPDF_Stream_Write(stream, (const HPDF_BYTE*)pDate, 2);
|
|
if (ret != HPDF_OK)
|
|
return ret;
|
|
pDate+=2;
|
|
/* Write :SS */
|
|
ret = HPDF_Stream_Write(stream, (const HPDF_BYTE*)":", 1);
|
|
if (ret != HPDF_OK)
|
|
return ret;
|
|
ret = HPDF_Stream_Write(stream, (const HPDF_BYTE*)pDate, 2);
|
|
if (ret != HPDF_OK)
|
|
return ret;
|
|
pDate+=2;
|
|
/* Write +... */
|
|
if(pDate[0]==0) {
|
|
ret = HPDF_Stream_Write(stream, (const HPDF_BYTE*)"+0:00", 5);
|
|
return ret;
|
|
}
|
|
if(pDate[0]=='+'||pDate[0]=='-') {
|
|
ret = HPDF_Stream_Write(stream, (const HPDF_BYTE*)pDate, strlen(pDate));
|
|
return ret;
|
|
}
|
|
return HPDF_SetError (stream->error, HPDF_INVALID_PARAMETER, 0);
|
|
}
|
|
|
|
/* Write XMP Metadata for PDF/A */
|
|
|
|
HPDF_STATUS
|
|
HPDF_PDFA_SetPDFAConformance (HPDF_Doc pdf,HPDF_PDFAType pdfatype)
|
|
{
|
|
HPDF_OutputIntent xmp;
|
|
HPDF_STATUS ret;
|
|
const char *info = NULL;
|
|
|
|
if (!HPDF_HasDoc(pdf)) {
|
|
return HPDF_INVALID_DOCUMENT;
|
|
}
|
|
|
|
xmp = HPDF_DictStream_New(pdf->mmgr,pdf->xref);
|
|
if (!xmp) {
|
|
return HPDF_INVALID_STREAM;
|
|
}
|
|
|
|
HPDF_Dict_AddName(xmp,"Type","Metadata");
|
|
HPDF_Dict_AddName(xmp,"SubType","XML");
|
|
|
|
ret = HPDF_OK;
|
|
ret += HPDF_Stream_WriteStr(xmp->stream, XMP_HEADER);
|
|
|
|
ret += HPDF_Stream_WriteStr(xmp->stream, XMP_PRODUCER_STARTTAG);
|
|
|
|
info = (const char *)HPDF_GetInfoAttr(pdf, HPDF_INFO_PRODUCER);
|
|
ret += HPDF_Stream_WriteStr(xmp->stream, info);
|
|
ret += HPDF_Stream_WriteStr(xmp->stream, XMP_PRODUCER_ENDTAG);
|
|
|
|
/* Add CreateDate, ModifyDate, and CreatorTool */
|
|
ret += HPDF_Stream_WriteStr(xmp->stream, XMP_INFODATA_STARTTAG);
|
|
info = (const char *)HPDF_GetInfoAttr(pdf, HPDF_INFO_CREATION_DATE);
|
|
ret += HPDF_Stream_WriteStr(xmp->stream, XMP_CREATE_DATE_STARTTAG);
|
|
/* Convert date to XMP compatible format */
|
|
ret += ConvertDateToXMDate(xmp->stream, info);
|
|
ret += HPDF_Stream_WriteStr(xmp->stream, XMP_CREATE_DATE_ENDTAG);
|
|
|
|
info = (const char *)HPDF_GetInfoAttr(pdf, HPDF_INFO_MOD_DATE);
|
|
ret += HPDF_Stream_WriteStr(xmp->stream, XMP_MOD_DATE_STARTTAG);
|
|
ret += ConvertDateToXMDate(xmp->stream, info);
|
|
ret += HPDF_Stream_WriteStr(xmp->stream, XMP_MOD_DATE_ENDTAG);
|
|
|
|
info = (const char *)HPDF_GetInfoAttr(pdf, HPDF_INFO_CREATOR);
|
|
ret += HPDF_Stream_WriteStr(xmp->stream, XMP_CREATORTOOL_STARTTAG);
|
|
ret += HPDF_Stream_WriteStr(xmp->stream, info);
|
|
ret += HPDF_Stream_WriteStr(xmp->stream, XMP_CREATORTOOL_ENDTAG);
|
|
|
|
ret += HPDF_Stream_WriteStr(xmp->stream, XMP_INFODATA_ENDTAG);
|
|
|
|
switch(pdfatype) {
|
|
case HPDF_PDFA_1A:
|
|
ret += HPDF_Stream_WriteStr(xmp->stream, XMP_PDFA1A);
|
|
break;
|
|
case HPDF_PDFA_1B:
|
|
ret += HPDF_Stream_WriteStr(xmp->stream, XMP_PDFA1B);
|
|
break;
|
|
}
|
|
ret += HPDF_Stream_WriteStr(xmp->stream, XMP_FOOTER);
|
|
|
|
if (ret != HPDF_OK) {
|
|
return HPDF_INVALID_STREAM;
|
|
}
|
|
|
|
if ((ret = HPDF_Dict_Add(pdf->catalog, "Metadata", xmp)) != HPDF_OK) {
|
|
return ret;
|
|
}
|
|
|
|
return HPDF_PDFA_GenerateID(pdf);
|
|
}
|
|
|
|
/* Generate an ID for the trailer dict, PDF/A needs this.
|
|
TODO: Better algorithm for generate unique ID.
|
|
*/
|
|
HPDF_STATUS
|
|
HPDF_PDFA_GenerateID(HPDF_Doc pdf)
|
|
{
|
|
HPDF_Array id;
|
|
HPDF_BYTE *currentTime;
|
|
HPDF_BYTE idkey[HPDF_MD5_KEY_LEN];
|
|
HPDF_MD5_CTX md5_ctx;
|
|
time_t ltime;
|
|
|
|
ltime = time(NULL);
|
|
currentTime = (HPDF_BYTE *)ctime(<ime);
|
|
|
|
id = HPDF_Dict_GetItem(pdf->trailer, "ID", HPDF_OCLASS_ARRAY);
|
|
if (!id) {
|
|
id = HPDF_Array_New(pdf->mmgr);
|
|
|
|
if (!id || HPDF_Dict_Add(pdf->trailer, "ID", id) != HPDF_OK)
|
|
return pdf->error.error_no;
|
|
|
|
HPDF_MD5Init(&md5_ctx);
|
|
HPDF_MD5Update(&md5_ctx, (HPDF_BYTE *) "libHaru", sizeof("libHaru") - 1);
|
|
HPDF_MD5Update(&md5_ctx, currentTime, HPDF_StrLen((const char *)currentTime, -1));
|
|
HPDF_MD5Final(idkey, &md5_ctx);
|
|
|
|
if (HPDF_Array_Add (id, HPDF_Binary_New (pdf->mmgr, idkey, HPDF_MD5_KEY_LEN)) != HPDF_OK)
|
|
return pdf->error.error_no;
|
|
|
|
if (HPDF_Array_Add (id, HPDF_Binary_New (pdf->mmgr,idkey,HPDF_MD5_KEY_LEN)) != HPDF_OK)
|
|
return pdf->error.error_no;
|
|
|
|
return HPDF_OK;
|
|
}
|
|
|
|
return HPDF_OK;
|
|
}
|
|
|
|
/* Function to add one outputintents to the PDF
|
|
* iccname - name of default ICC profile
|
|
* iccdict - dictionary containing number of components
|
|
* and stream with ICC profile
|
|
*
|
|
* How to use:
|
|
* 1. Create dictionary with ICC profile
|
|
* HPDF_Dict icc = HPDF_DictStream_New (pDoc->mmgr, pDoc->xref);
|
|
* if(icc==NULL) return false;
|
|
* HPDF_Dict_AddNumber (icc, "N", 3);
|
|
* HPDF_STATUS ret = HPDF_Stream_Write (icc->stream, (const HPDF_BYTE *)pICCData, dwICCSize);
|
|
* if(ret!=HPDF_OK) {
|
|
* HPDF_Dict_Free(icc);
|
|
* return false;
|
|
* }
|
|
*
|
|
* 2. Call this function
|
|
*/
|
|
|
|
HPDF_STATUS
|
|
HPDF_PDFA_AppendOutputIntents(HPDF_Doc pdf, const char *iccname, HPDF_Dict iccdict)
|
|
{
|
|
HPDF_Array intents;
|
|
HPDF_Dict intent;
|
|
HPDF_STATUS ret;
|
|
if (!HPDF_HasDoc (pdf))
|
|
return HPDF_INVALID_DOCUMENT;
|
|
|
|
/* prepare intent */
|
|
intent = HPDF_Dict_New (pdf->mmgr);
|
|
ret = HPDF_Xref_Add (pdf->xref, intent);
|
|
if ( ret != HPDF_OK) {
|
|
HPDF_Dict_Free(intent);
|
|
return ret;
|
|
}
|
|
ret += HPDF_Dict_AddName (intent, "Type", "OutputIntent");
|
|
ret += HPDF_Dict_AddName (intent, "S", "GTS_PDFA1");
|
|
ret += HPDF_Dict_Add (intent, "OutputConditionIdentifier", HPDF_String_New (pdf->mmgr, iccname, NULL));
|
|
ret += HPDF_Dict_Add (intent, "OutputCondition", HPDF_String_New (pdf->mmgr, iccname,NULL));
|
|
ret += HPDF_Dict_Add (intent, "Info", HPDF_String_New (pdf->mmgr, iccname, NULL));
|
|
ret += HPDF_Dict_Add (intent, "DestOutputProfile ", iccdict);
|
|
if ( ret != HPDF_OK) {
|
|
HPDF_Dict_Free(intent);
|
|
return ret;
|
|
}
|
|
|
|
/* Copied from HPDF_AddIntent - not public function */
|
|
intents = HPDF_Dict_GetItem (pdf->catalog, "OutputIntents", HPDF_OCLASS_ARRAY);
|
|
if (intents == NULL) {
|
|
intents = HPDF_Array_New (pdf->mmgr);
|
|
if (intents) {
|
|
HPDF_STATUS ret = HPDF_Dict_Add (pdf->catalog, "OutputIntents", intents);
|
|
if (ret != HPDF_OK) {
|
|
HPDF_CheckError (&pdf->error);
|
|
return HPDF_Error_GetDetailCode (&pdf->error);
|
|
}
|
|
}
|
|
}
|
|
|
|
HPDF_Array_Add(intents,intent);
|
|
return HPDF_Error_GetDetailCode (&pdf->error);
|
|
}
|