Haru Free PDF Library
outline_demo_jp.c
/*
* << Haru Free PDF Library 2.0.0 >> -- outline_demo_jp.c
*
* Copyright (c) 1999-2006 Takeshi Kanno <takeshi_kanno@est.hi-ho.ne.jp>
*
* 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.
*
*/
#include <stdlib.h>
#include <stdio.h>
#include <string.h>
#include "hpdf.h"
void
print_page (HPDF_Page page, int page_num)
{
char buf[50];
HPDF_Page_SetWidth (page, 200);
HPDF_Page_SetHeight (page, 300);
HPDF_Page_MoveTextPos (page, 50, 250);
HPDF_snprintf(buf, 50, "Page:%d", page_num);
HPDF_Page_ShowText (page, buf);
}
int main(int argc, char **argv)
{
HPDF_Doc pdf;
HPDF_Font font;
HPDF_Page page[4];
HPDF_Outline outline[4];
char fname[256];
FILE *f;
char SAMP_TXT[2048];
strcpy (fname, argv[0]);
strcat (fname, ".pdf");
#ifdef __WIN32__
f = fopen ("mbtext\\sjis.txt", "rb");
#else
f = fopen ("mbtext/sjis.txt", "rb");
#endif
if (!f) {
printf ("error: cannot open 'mbtext/sjis.txt'\n");
return 1;
}
fgets (SAMP_TXT, 2048, f);
fclose (f);
pdf = HPDF_New (demo_error_handler, NULL);
if (!pdf) {
printf ("error: cannot create PdfDoc object\n");
return 1;
}
if (setjmp(env)) {
HPDF_Free (pdf);
return 1;
}
/* declaration for using Japanese encoding. */
/* create default-font */
font = HPDF_GetFont (pdf, "Helvetica", NULL);
/* Set page mode to use outlines. */
/* Add 3 pages to the document. */
page[0] = HPDF_AddPage (pdf);
HPDF_Page_SetFontAndSize (page[0], font, 20);
print_page(page[0], 1);
page[1] = HPDF_AddPage (pdf);
HPDF_Page_SetFontAndSize (page[1], font, 20);
print_page(page[1], 2);
page[2] = HPDF_AddPage (pdf);
HPDF_Page_SetFontAndSize (page[2], font, 20);
print_page(page[2], 3);
/* create outline root. */
root = HPDF_CreateOutLine (pdf, NULL, "OutlineRoot", NULL);
outline[0] = HPDF_CreateOutLine (pdf, root, "page1", NULL);
outline[1] = HPDF_CreateOutLine (pdf, root, "page2", NULL);
/* create outline with test which is encoding */
outline[2] = HPDF_CreateOutLine (pdf, root, SAMP_TXT,
HPDF_GetEncoder (pdf, "90ms-RKSJ-H"));
/* create destination objects on each pages
* and link it to outline items.
*/
dst = HPDF_Page_CreateDestination (page[0]);
HPDF_Outline_SetDestination(outline[0], dst);
// HPDF_Catalog_SetOpenAction(dst);
dst = HPDF_Page_CreateDestination (page[1]);
HPDF_Outline_SetDestination(outline[1], dst);
dst = HPDF_Page_CreateDestination (page[2]);
HPDF_Outline_SetDestination(outline[2], dst);
/* save the document to a file */
HPDF_SaveToFile (pdf, fname);
/* clean up */
HPDF_Free (pdf);
return 0;
}
HPDF_STATUS HPDF_SaveToFile(HPDF_Doc pdf, const char *filename)
Saves the current document to file.
void HPDF_Free(HPDF_Doc pdf)
Revoke a document object and all resources.
HPDF_Doc HPDF_New(HPDF_Error_Handler user_error_fn, void *user_data)
Create an instance of a document object and initialize it.
HPDF_Encoder HPDF_GetEncoder(HPDF_Doc pdf, const char *encoding_name)
Get encoder object handle by specified encoding name.
HPDF_STATUS HPDF_UseJPEncodings(HPDF_Doc pdf)
Enable Japanese encodings.
HPDF_Font HPDF_GetFont(HPDF_Doc pdf, const char *font_name, const char *encoding_name)
Get requested font object handle.
HPDF_STATUS HPDF_Page_SetFontAndSize(HPDF_Page page, HPDF_Font font, HPDF_REAL size)
Set the type of font and size leading.
HPDF_STATUS HPDF_Page_ShowText(HPDF_Page page, const char *text)
Put text at the current text position on the page.
HPDF_STATUS HPDF_Page_BeginText(HPDF_Page page)
Begin text object and set text position to (0, 0).
HPDF_STATUS HPDF_Page_EndText(HPDF_Page page)
Finish text object.
HPDF_STATUS HPDF_Page_MoveTextPos(HPDF_Page page, HPDF_REAL x, HPDF_REAL y)
Change current text position using the specified offset values.
HPDF_STATUS HPDF_Outline_SetOpened(HPDF_Outline outline, HPDF_BOOL opened)
Set whether this outline node is opened when the outline is displayed for the first time.
HPDF_STATUS HPDF_Outline_SetDestination(HPDF_Outline outline, HPDF_Destination dst)
Set target destination object to jump to when outline object is clicked.
HPDF_REAL HPDF_Page_GetHeight(HPDF_Page page)
Get page height.
HPDF_Page HPDF_AddPage(HPDF_Doc pdf)
Create new page and add it after the last page of document.
HPDF_STATUS HPDF_SetPageMode(HPDF_Doc pdf, HPDF_PageMode mode)
Set document display mode.
HPDF_STATUS HPDF_Page_SetWidth(HPDF_Page page, HPDF_REAL value)
Change page width.
HPDF_STATUS HPDF_Page_SetHeight(HPDF_Page page, HPDF_REAL value)
Change page height.
#define HPDF_TRUE
Definition: hpdf_consts.h:26
@ HPDF_PAGE_MODE_USE_OUTLINE
Definition: hpdf_types.h:362
Definition: hpdf_objects.h:333
Definition: hpdf_objects.h:421
Definition: hpdf_doc.h:36