1
0
mirror of https://github.com/VCMP-SqMod/SqMod.git synced 2025-02-07 13:27:13 +01:00
SqMod/vendor/POCO/PDF/src/hpdf_gstate.c
Sandu Liviu Catalin 4a6bfc086c Major plugin refactor and cleanup.
Switched to POCO library for unified platform/library interface.
Deprecated the external module API. It was creating more problems than solving.
Removed most built-in libraries in favor of system libraries for easier maintenance.
Cleaned and secured code with help from static analyzers.
2021-01-30 08:51:39 +02:00

124 lines
3.9 KiB
C

/*
* << Haru Free PDF Library >> -- hpdf_gstate.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.
*
*/
#include "hpdf_conf.h"
#include "hpdf_utils.h"
#include "hpdf_gstate.h"
HPDF_GState
HPDF_GState_New (HPDF_MMgr mmgr,
HPDF_GState current)
{
HPDF_GState gstate;
if (current && current->depth >= HPDF_LIMIT_MAX_GSTATE) {
HPDF_SetError (mmgr->error, HPDF_EXCEED_GSTATE_LIMIT, 0);
return NULL;
}
gstate = HPDF_GetMem (mmgr, sizeof(HPDF_GState_Rec));
if (!gstate)
return NULL;
if (current) {
gstate->trans_matrix = current->trans_matrix;
gstate->line_width = current->line_width;
gstate->line_cap = current->line_cap;
gstate->line_join = current->line_join;
gstate->miter_limit = current->miter_limit;
gstate->dash_mode = current->dash_mode;
gstate->flatness = current->flatness;
gstate->char_space = current->char_space;
gstate->word_space = current->word_space;
gstate->h_scalling = current->h_scalling;
gstate->text_leading = current->text_leading;
gstate->rendering_mode = current->rendering_mode;
gstate->text_rise = current->text_rise;
gstate->cs_stroke = current->cs_stroke;
gstate->cs_fill = current->cs_fill;
gstate->rgb_fill = current->rgb_fill;
gstate->rgb_stroke = current->rgb_stroke;
gstate->cmyk_fill = current->cmyk_fill;
gstate->cmyk_stroke = current->cmyk_stroke;
gstate->gray_fill = current->gray_fill;
gstate->gray_stroke = current->gray_stroke;
gstate->font = current->font;
gstate->font_size = current->font_size;
gstate->writing_mode = current->writing_mode;
gstate->prev = current;
gstate->depth = current->depth + 1;
} else {
HPDF_TransMatrix DEF_MATRIX = {1, 0, 0, 1, 0, 0};
HPDF_RGBColor DEF_RGB_COLOR = {0, 0, 0};
HPDF_CMYKColor DEF_CMYK_COLOR = {0, 0, 0, 0};
HPDF_DashMode DEF_DASH_MODE = {{0, 0, 0, 0, 0, 0, 0, 0}, 0, 0};
gstate->trans_matrix = DEF_MATRIX;
gstate->line_width = HPDF_DEF_LINEWIDTH;
gstate->line_cap = HPDF_DEF_LINECAP;
gstate->line_join = HPDF_DEF_LINEJOIN;
gstate->miter_limit = HPDF_DEF_MITERLIMIT;
gstate->dash_mode = DEF_DASH_MODE;
gstate->flatness = HPDF_DEF_FLATNESS;
gstate->char_space = HPDF_DEF_CHARSPACE;
gstate->word_space = HPDF_DEF_WORDSPACE;
gstate->h_scalling = HPDF_DEF_HSCALING;
gstate->text_leading = HPDF_DEF_LEADING;
gstate->rendering_mode = HPDF_DEF_RENDERING_MODE;
gstate->text_rise = HPDF_DEF_RISE;
gstate->cs_stroke = HPDF_CS_DEVICE_GRAY;
gstate->cs_fill = HPDF_CS_DEVICE_GRAY;
gstate->rgb_fill = DEF_RGB_COLOR;
gstate->rgb_stroke = DEF_RGB_COLOR;
gstate->cmyk_fill = DEF_CMYK_COLOR;
gstate->cmyk_stroke = DEF_CMYK_COLOR;
gstate->gray_fill = 0;
gstate->gray_stroke = 0;
gstate->font = NULL;
gstate->font_size = 0;
gstate->writing_mode = HPDF_WMODE_HORIZONTAL;
gstate->prev = NULL;
gstate->depth = 1;
}
return gstate;
}
HPDF_GState
HPDF_GState_Free (HPDF_MMgr mmgr,
HPDF_GState gstate)
{
HPDF_GState current = NULL;
if (gstate) {
current = gstate->prev;
HPDF_FreeMem (mmgr, gstate);
}
return current;
}