* contrib/hbtip/encqp.prg
* QP decoder will now accept LF EOLs (to work well with
non-compliant mailers).
* external/libhpdf/hpdfpags.h
* external/libhpdf/hpdffdfb.c
* external/libhpdf/hpdfxref.c
* external/libhpdf/hpdfcons.h
* external/libhpdf/hpdfextg.c
* external/libhpdf/hpdfencc.c
* external/libhpdf/hpdffdfj.c
+ external/libhpdf/hpdfpdfa.c
* external/libhpdf/hpdfextg.h
* external/libhpdf/hpdfstre.c
* external/libhpdf/hpdffdfn.c
+ external/libhpdf/hpdfpdfa.h
* external/libhpdf/hpdffdf1.c
* external/libhpdf/hpdfenck.c
* external/libhpdf/hpdfstri.c
* external/libhpdf/hpdfstre.h
* external/libhpdf/hpdffdft.c
* external/libhpdf/hpdfoutl.c
* external/libhpdf/hpdfenco.c
* external/libhpdf/hpdfecyd.c
* external/libhpdf/hpdfimap.c
* external/libhpdf/hpdfoutl.h
* external/libhpdf/hpdfenco.h
* external/libhpdf/Makefile
* external/libhpdf/hpdffond.h
* external/libhpdf/hpdfency.h
* external/libhpdf/hpdffon1.c
* external/libhpdf/hpdffont.c
* external/libhpdf/hpdfcata.c
* external/libhpdf/hpdffont.h
* external/libhpdf/hpdfutil.c
* external/libhpdf/hpdfcata.h
* external/libhpdf/hpdfutil.h
* external/libhpdf/hpdfdict.c
* external/libhpdf/hpdfreal.c
* external/libhpdf/hpdfarra.c
* external/libhpdf/hpdfdocp.c
* external/libhpdf/libhpdf.dif
* external/libhpdf/hpdfconf.h
* external/libhpdf/hpdfinfo.c
* external/libhpdf/hpdfanno.c
* external/libhpdf/hpdfgsta.c
* external/libhpdf/hpdfdest.c
* external/libhpdf/hpdfinfo.h
* external/libhpdf/hpdfanno.h
* external/libhpdf/hpdfnumb.c
* external/libhpdf/hpdffdfc.c
* external/libhpdf/hpdfgsta.h
* external/libhpdf/hpdfdest.h
* external/libhpdf/hpdfdoc.c
* external/libhpdf/hpdferro.c
* external/libhpdf/hpdffdfi.c
* external/libhpdf/hpdfbina.c
* external/libhpdf/hpdfdoc.h
* external/libhpdf/hpdffdfk.c
* external/libhpdf/hpdflist.c
* external/libhpdf/hpdferro.h
* external/libhpdf/hpdfimag.c
* external/libhpdf/hpdfencj.c
* external/libhpdf/hpdflist.h
* external/libhpdf/hpdfecy.c
* external/libhpdf/hpdfimag.h
* external/libhpdf/hpdfencn.c
* external/libhpdf/hpdffonc.c
* external/libhpdf/hpdfu3d.c
* external/libhpdf/hpdfencr.h
* external/libhpdf/hpdffdf.c
* external/libhpdf/hpdfu3d.h
* external/libhpdf/hpdfmmgr.c
* external/libhpdf/hpdfmmgr.h
* external/libhpdf/hpdfnull.c
* external/libhpdf/README
* external/libhpdf/hpdffott.c
* external/libhpdf/hpdfpage.c
+ external/libhpdf/hpdfndic.c
* external/libhpdf/hpdfobje.c
* external/libhpdf/hpdfname.c
* external/libhpdf/hpdfpage.h
+ external/libhpdf/hpdfndic.h
* external/libhpdf/hpdf.h
* external/libhpdf/hpdfobje.h
* external/libhpdf/hpdfvers.h
* external/libhpdf/hpdfpago.c
* external/libhpdf/hpdftype.h
* external/libhpdf/hpdfpags.c
* external/libhpdf/hpdfbool.c
+ libharu updated to official 2.2.0 release (from 2.1.0).
Patch sent by Tamas Tevesz.
* Added new files to Makefile.
163 lines
3.5 KiB
C
163 lines
3.5 KiB
C
/*
|
|
* << Haru Free PDF Library >> -- hpdf_doc.h
|
|
*
|
|
* 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.
|
|
*
|
|
*/
|
|
|
|
|
|
#ifndef _HPDF_DOC_H
|
|
#define _HPDF_DOC_H
|
|
|
|
#define HPDF_SIG_BYTES 0x41504446L
|
|
|
|
#include "hpdfcata.h"
|
|
#include "hpdfimag.h"
|
|
#include "hpdfpags.h"
|
|
#include "hpdfoutl.h"
|
|
#include "hpdfextg.h"
|
|
|
|
#ifdef __cplusplus
|
|
extern "C" {
|
|
#endif
|
|
|
|
#define HPDF_VER_DEFAULT HPDF_VER_12
|
|
|
|
typedef struct _HPDF_Doc_Rec {
|
|
HPDF_UINT32 sig_bytes;
|
|
HPDF_PDFVer pdf_version;
|
|
|
|
HPDF_MMgr mmgr;
|
|
HPDF_Catalog catalog;
|
|
HPDF_Outline outlines;
|
|
HPDF_Xref xref;
|
|
HPDF_Pages root_pages;
|
|
HPDF_Pages cur_pages;
|
|
HPDF_Page cur_page;
|
|
HPDF_List page_list;
|
|
HPDF_Error_Rec error;
|
|
HPDF_Dict info;
|
|
HPDF_Dict trailer;
|
|
|
|
HPDF_List font_mgr;
|
|
HPDF_BYTE ttfont_tag[6];
|
|
|
|
/* list for loaded fontdefs */
|
|
HPDF_List fontdef_list;
|
|
|
|
/* list for loaded encodings */
|
|
HPDF_List encoder_list;
|
|
|
|
HPDF_Encoder cur_encoder;
|
|
|
|
/* default compression mode */
|
|
HPDF_BOOL compression_mode;
|
|
|
|
HPDF_BOOL encrypt_on;
|
|
HPDF_EncryptDict encrypt_dict;
|
|
|
|
HPDF_Encoder def_encoder;
|
|
|
|
HPDF_UINT page_per_pages;
|
|
HPDF_UINT cur_page_num;
|
|
|
|
/* buffer for saving into memory stream */
|
|
HPDF_Stream stream;
|
|
} HPDF_Doc_Rec;
|
|
|
|
typedef struct _HPDF_Doc_Rec *HPDF_Doc;
|
|
|
|
|
|
HPDF_Encoder
|
|
HPDF_Doc_FindEncoder (HPDF_Doc pdf,
|
|
const char *encoding_name);
|
|
|
|
|
|
HPDF_FontDef
|
|
HPDF_Doc_FindFontDef (HPDF_Doc pdf,
|
|
const char *font_name);
|
|
|
|
|
|
HPDF_Font
|
|
HPDF_Doc_FindFont (HPDF_Doc pdf,
|
|
const char *font_name,
|
|
const char *encoding_name);
|
|
|
|
|
|
HPDF_BOOL
|
|
HPDF_Doc_Validate (HPDF_Doc pdf);
|
|
|
|
|
|
/*----- page handling -------------------------------------------------------*/
|
|
|
|
HPDF_Pages
|
|
HPDF_Doc_GetCurrentPages (HPDF_Doc pdf);
|
|
|
|
|
|
HPDF_Pages
|
|
HPDF_Doc_AddPagesTo (HPDF_Doc pdf,
|
|
HPDF_Pages parent);
|
|
|
|
|
|
HPDF_STATUS
|
|
HPDF_Doc_SetCurrentPages (HPDF_Doc pdf,
|
|
HPDF_Pages pages);
|
|
|
|
|
|
HPDF_STATUS
|
|
HPDF_Doc_SetCurrentPage (HPDF_Doc pdf,
|
|
HPDF_Page page);
|
|
|
|
|
|
|
|
|
|
/*----- font handling -------------------------------------------------------*/
|
|
|
|
HPDF_FontDef
|
|
HPDF_GetFontDef (HPDF_Doc pdf,
|
|
const char *font_name);
|
|
|
|
|
|
HPDF_STATUS
|
|
HPDF_Doc_RegisterFontDef (HPDF_Doc pdf,
|
|
HPDF_FontDef fontdef);
|
|
|
|
|
|
/*----- encoding handling ---------------------------------------------------*/
|
|
|
|
HPDF_STATUS
|
|
HPDF_Doc_RegisterEncoder (HPDF_Doc pdf,
|
|
HPDF_Encoder encoder);
|
|
|
|
|
|
|
|
/*----- encryptio------------------------------------------------------------*/
|
|
|
|
HPDF_STATUS
|
|
HPDF_Doc_SetEncryptOn (HPDF_Doc pdf);
|
|
|
|
|
|
HPDF_STATUS
|
|
HPDF_Doc_SetEncryptOff (HPDF_Doc pdf);
|
|
|
|
|
|
HPDF_STATUS
|
|
HPDF_Doc_PrepareEncryption (HPDF_Doc pdf);
|
|
|
|
#ifdef __cplusplus
|
|
}
|
|
#endif /* __cplusplus */
|
|
|
|
#endif /* _HPDF_DOC_H */
|
|
|