Haru Free PDF Library
png_demo.c
/*
* << Haru Free PDF Library 2.0.0 >> -- png_demo.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"
#include "handler.h"
#include "utils.h"
#ifdef LIBHPDF_HAVE_LIBPNG
void
draw_image (HPDF_Doc pdf,
const char *filename,
float x,
float y,
const char *text)
{
char filename1[255];
HPDF_Image image;
strcpy(filename1, "pngsuite");
strcat(filename1, FILE_SEPARATOR);
strcat(filename1, filename);
image = HPDF_LoadPngImageFromFile (pdf, filename1);
/* Draw image to the canvas. */
HPDF_Page_DrawImage (page, image, x, y, HPDF_Image_GetWidth (image),
/* Print the text. */
HPDF_Page_MoveTextPos (page, x, y);
HPDF_Page_ShowTextNextLine (page, filename);
}
int main (int argc, char **argv)
{
HPDF_Doc pdf;
HPDF_Font font;
HPDF_Page page;
char fname[256];
strcpy (fname, argv[0]);
strcat (fname, ".pdf");
pdf = HPDF_New (demo_error_handler, NULL);
if (!pdf) {
printf ("error: cannot create PdfDoc object\n");
return 1;
}
/* error-handler */
if (setjmp(env)) {
HPDF_Free (pdf);
return 1;
}
/* create default-font */
font = HPDF_GetFont (pdf, "Helvetica", NULL);
/* add a new page object. */
page = HPDF_AddPage (pdf);
HPDF_Page_SetWidth (page, 550);
HPDF_Page_SetHeight (page, 650);
HPDF_SetOpenAction(pdf, dst);
HPDF_Page_SetFontAndSize (page, font, 20);
HPDF_Page_MoveTextPos (page, 220, HPDF_Page_GetHeight (page) - 70);
HPDF_Page_ShowText (page, "PngDemo");
HPDF_Page_SetFontAndSize (page, font, 12);
draw_image (pdf, "basn0g01.png", 100, HPDF_Page_GetHeight (page) - 150,
"1bit grayscale.");
draw_image (pdf, "basn0g02.png", 200, HPDF_Page_GetHeight (page) - 150,
"2bit grayscale.");
draw_image (pdf, "basn0g04.png", 300, HPDF_Page_GetHeight (page) - 150,
"4bit grayscale.");
draw_image (pdf, "basn0g08.png", 400, HPDF_Page_GetHeight (page) - 150,
"8bit grayscale.");
draw_image (pdf, "basn2c08.png", 100, HPDF_Page_GetHeight (page) - 250,
"8bit color.");
draw_image (pdf, "basn2c16.png", 200, HPDF_Page_GetHeight (page) - 250,
"16bit color.");
draw_image (pdf, "basn3p01.png", 100, HPDF_Page_GetHeight (page) - 350,
"1bit pallet.");
draw_image (pdf, "basn3p02.png", 200, HPDF_Page_GetHeight (page) - 350,
"2bit pallet.");
draw_image (pdf, "basn3p04.png", 300, HPDF_Page_GetHeight (page) - 350,
"4bit pallet.");
draw_image (pdf, "basn3p08.png", 400, HPDF_Page_GetHeight (page) - 350,
"8bit pallet.");
draw_image (pdf, "basn4a08.png", 100, HPDF_Page_GetHeight (page) - 450,
"8bit alpha.");
draw_image (pdf, "basn4a16.png", 200, HPDF_Page_GetHeight (page) - 450,
"16bit alpha.");
draw_image (pdf, "basn6a08.png", 100, HPDF_Page_GetHeight (page) - 550,
"8bit alpha.");
draw_image (pdf, "basn6a16.png", 200, HPDF_Page_GetHeight (page) - 550,
"16bit alpha.");
/* save the document to a file */
HPDF_SaveToFile (pdf, fname);
/* clean up */
HPDF_Free (pdf);
return 0;
}
#else /* LIBHPDF_HAVE_LIBPNG */
int main()
{
printf("WARNING: png_demo was not built correctly. \n"
"Make sure libpng is installed and CMake is able to find it.\n");
return 0;
}
#endif /* LIBHPDF_HAVE_LIBPNG */
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_Font HPDF_GetFont(HPDF_Doc pdf, const char *font_name, const char *encoding_name)
Get requested font object handle.
HPDF_STATUS HPDF_Page_ShowTextNextLine(HPDF_Page page, const char *text)
Move current text position to the start of the next line, then put the text at the current text posit...
HPDF_STATUS HPDF_Page_SetTextLeading(HPDF_Page page, HPDF_REAL value)
Set text leading (line spacing).
HPDF_STATUS HPDF_Page_DrawImage(HPDF_Page page, HPDF_Image image, HPDF_REAL x, HPDF_REAL y, HPDF_REAL width, HPDF_REAL height)
Show an image in one operation.
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_UINT HPDF_Image_GetWidth(HPDF_Image image)
Get image width of an image object.
HPDF_Image HPDF_LoadPngImageFromFile(HPDF_Doc pdf, const char *filename)
Load external PNG image file.
HPDF_UINT HPDF_Image_GetHeight(HPDF_Image image)
Get image height of an image object.
HPDF_REAL HPDF_Page_GetHeight(HPDF_Page page)
Get page height.
HPDF_STATUS HPDF_SetOpenAction(HPDF_Doc pdf, HPDF_Destination open_action)
Set the first page to appear when a document is opened.
HPDF_Page HPDF_AddPage(HPDF_Doc pdf)
Create new page and add it after the last page of document.
HPDF_STATUS HPDF_Page_SetWidth(HPDF_Page page, HPDF_REAL value)
Change page width.
HPDF_Page HPDF_GetCurrentPage(HPDF_Doc pdf)
Get handle of current page object.
HPDF_STATUS HPDF_Page_SetHeight(HPDF_Page page, HPDF_REAL value)
Change page height.
HPDF_STATUS HPDF_SetCompressionMode(HPDF_Doc pdf, HPDF_UINT mode)
Set compression mode.
#define HPDF_COMP_ALL
Definition: hpdf_consts.h:82
Definition: hpdf_objects.h:333
Definition: hpdf_objects.h:421
Definition: hpdf_doc.h:36