Haru Free PDF Library
utf8.c
Multi-byte UTF-8 example.

This is an UTF-8 example for multi-byte encoded text. It is important to have font with appropriate characters (Chinese in this example). Noto Sans font is used here.

/*
* << Haru Free PDF Library 2.4.4 >> -- utf8.c
*
* Copyright (c) 1999-2006 Takeshi Kanno <takeshi_kanno@est.hi-ho.ne.jp>
* Copyright (c) 2023 Dmitry Solomennikov
*
* 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 <stdio.h>
#include <string.h>
#include <setjmp.h>
#include "hpdf.h"
#include "handler.h"
int
main (int argc, char **argv)
{
HPDF_Doc pdf;
HPDF_Page page;
char fname[256];
strcpy (fname, argv[0]);
strcat (fname, ".pdf");
/* create document object*/
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;
}
page = HPDF_AddPage(pdf);
HPDF_Font font;
const char *font_name;
HPDF_SetCurrentEncoder (pdf, "UTF-8");
font_name = HPDF_LoadTTFontFromFile (pdf, "ttfont/NotoSansSC-Regular.ttf", HPDF_TRUE);
font = HPDF_GetFont (pdf, font_name, "UTF-8");
HPDF_Page_SetFontAndSize (page, font, 36);
gstate = HPDF_CreateExtGState (pdf);
HPDF_Page_SetExtGState (page, gstate);
HPDF_Page_SetRGBFill(page, 0,0,0.7);
HPDF_Page_MoveTextPos(page, 100, HPDF_Page_GetHeight (page) - 100);
HPDF_Page_ShowText(page, "Привет, мир!");
HPDF_Page_MoveTextPos(page, 0, -100);
HPDF_Page_ShowText(page, "Peña, ¿cómo va, mundo?");
HPDF_Page_MoveTextPos(page, 0, -100);
HPDF_Page_ShowText(page, "你好,世界!");
HPDF_SaveToFile(pdf, fname);
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_STATUS HPDF_SetCurrentEncoder(HPDF_Doc pdf, const char *encoding_name)
Set current encoder for document.
HPDF_STATUS HPDF_UseUTFEncodings(HPDF_Doc pdf)
Enable UTF-8 encoding.
const char * HPDF_LoadTTFontFromFile(HPDF_Doc pdf, const char *filename, HPDF_BOOL embedding)
Load TrueType font from external .ttf file and register it in the document object.
HPDF_Font HPDF_GetFont(HPDF_Doc pdf, const char *font_name, const char *encoding_name)
Get requested font object handle.
HPDF_STATUS HPDF_Page_SetRGBFill(HPDF_Page page, HPDF_REAL r, HPDF_REAL g, HPDF_REAL b)
Set filling color (RGB).
HPDF_STATUS HPDF_Page_GSave(HPDF_Page page)
Save the page's current graphics state to the stack.
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_SetExtGState(HPDF_Page page, HPDF_ExtGState ext_gstate)
Apply graphics state to page.
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_GRestore(HPDF_Page page)
Restore graphics state which is saved by HPDF_Page_GSave().
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_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_Page_SetSize(HPDF_Page page, HPDF_PageSizes size, HPDF_PageDirection direction)
Change page size and direction to a predefined ones.
HPDF_ExtGState HPDF_CreateExtGState(HPDF_Doc pdf)
HPDF_STATUS HPDF_ExtGState_SetAlphaFill(HPDF_ExtGState ext_gstate, HPDF_REAL value)
#define HPDF_TRUE
Definition: hpdf_consts.h:26
@ HPDF_PAGE_SIZE_A4
ISO 216 "A4" page size (210.0mm x 297.0mm)
Definition: hpdf_page_sizes.h:137
@ HPDF_PAGE_LANDSCAPE
Landscape orientation (longest size horizontal)
Definition: hpdf_types.h:577
Definition: hpdf_objects.h:421
Definition: hpdf_doc.h:36