1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303
|
// Copyright (C) 2004-2024 Artifex Software, Inc.
//
// This file is part of MuPDF.
//
// MuPDF is free software: you can redistribute it and/or modify it under the
// terms of the GNU Affero General Public License as published by the Free
// Software Foundation, either version 3 of the License, or (at your option)
// any later version.
//
// MuPDF is distributed in the hope that it will be useful, but WITHOUT ANY
// WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS
// FOR A PARTICULAR PURPOSE. See the GNU Affero General Public License for more
// details.
//
// You should have received a copy of the GNU Affero General Public License
// along with MuPDF. If not, see <https://www.gnu.org/licenses/agpl-3.0.en.html>
//
// Alternative licensing terms are available from the licensor.
// For commercial licensing, see <https://www.artifex.com/> or contact
// Artifex Software, Inc., 39 Mesa Street, Suite 108A, San Francisco,
// CA 94129, USA, for further information.
#include "mupdf/fitz.h"
#include <string.h>
fz_text *
fz_new_text(fz_context *ctx)
{
fz_text *text = fz_malloc_struct(ctx, fz_text);
text->refs = 1;
return text;
}
fz_text *
fz_keep_text(fz_context *ctx, const fz_text *textc)
{
fz_text *text = (fz_text *)textc; /* Explicit cast away of const */
return fz_keep_imp(ctx, text, &text->refs);
}
void
fz_drop_text(fz_context *ctx, const fz_text *textc)
{
fz_text *text = (fz_text *)textc; /* Explicit cast away of const */
if (fz_drop_imp(ctx, text, &text->refs))
{
fz_text_span *span = text->head;
while (span)
{
fz_text_span *next = span->next;
fz_drop_font(ctx, span->font);
fz_free(ctx, span->items);
fz_free(ctx, span);
span = next;
}
fz_free(ctx, text);
}
}
static fz_text_span *
fz_new_text_span(fz_context *ctx, fz_font *font, int wmode, int bidi_level, fz_bidi_direction markup_dir, fz_text_language language, fz_matrix trm)
{
fz_text_span *span = fz_malloc_struct(ctx, fz_text_span);
span->font = fz_keep_font(ctx, font);
span->wmode = wmode;
span->bidi_level = bidi_level;
span->markup_dir = markup_dir;
span->language = language;
span->trm = trm;
span->trm.e = 0;
span->trm.f = 0;
return span;
}
static fz_text_span *
fz_add_text_span(fz_context *ctx, fz_text *text, fz_font *font, int wmode, int bidi_level, fz_bidi_direction markup_dir, fz_text_language language, fz_matrix trm)
{
if (!text->tail)
{
text->head = text->tail = fz_new_text_span(ctx, font, wmode, bidi_level, markup_dir, language, trm);
}
else if (text->tail->font != font ||
text->tail->wmode != wmode ||
text->tail->bidi_level != bidi_level ||
text->tail->markup_dir != markup_dir ||
text->tail->language != language ||
text->tail->trm.a != trm.a ||
text->tail->trm.b != trm.b ||
text->tail->trm.c != trm.c ||
text->tail->trm.d != trm.d)
{
text->tail = text->tail->next = fz_new_text_span(ctx, font, wmode, bidi_level, markup_dir, language, trm);
}
return text->tail;
}
static void
fz_grow_text_span(fz_context *ctx, fz_text_span *span, int n)
{
int new_cap = span->cap;
if (span->len + n < new_cap)
return;
while (span->len + n > new_cap)
new_cap = new_cap + 36;
span->items = fz_realloc_array(ctx, span->items, new_cap, fz_text_item);
span->cap = new_cap;
}
void
fz_show_glyph_aux(fz_context *ctx, fz_text *text, fz_font *font, fz_matrix trm, float adv, int gid, int ucs, int cid, int wmode, int bidi_level, fz_bidi_direction markup_dir, fz_text_language lang)
{
fz_text_span *span;
if (text->refs != 1)
fz_throw(ctx, FZ_ERROR_ARGUMENT, "cannot modify shared text objects");
span = fz_add_text_span(ctx, text, font, wmode, bidi_level, markup_dir, lang, trm);
fz_grow_text_span(ctx, span, 1);
span->items[span->len].ucs = ucs;
span->items[span->len].gid = gid;
span->items[span->len].cid = cid;
span->items[span->len].x = trm.e;
span->items[span->len].y = trm.f;
span->items[span->len].adv = adv;
span->len++;
}
void
fz_show_glyph(fz_context *ctx, fz_text *text, fz_font *font, fz_matrix trm, int gid, int ucs, int wmode, int bidi_level, fz_bidi_direction markup_dir, fz_text_language lang)
{
float adv = (gid >= 0) ? fz_advance_glyph(ctx, font, gid, wmode) : 0;
fz_show_glyph_aux(ctx, text, font, trm, adv, gid, ucs, ucs, wmode, bidi_level, markup_dir, lang);
}
fz_matrix
fz_show_string(fz_context *ctx, fz_text *text, fz_font *user_font, fz_matrix trm, const char *s,
int wmode, int bidi_level, fz_bidi_direction markup_dir, fz_text_language language)
{
fz_font *font;
int gid, ucs;
float adv;
while (*s)
{
s += fz_chartorune(&ucs, s);
gid = fz_encode_character_with_fallback(ctx, user_font, ucs, 0, language, &font);
if (gid >= 0)
adv = fz_advance_glyph(ctx, font, gid, wmode);
else
adv = 0;
fz_show_glyph_aux(ctx, text, font, trm, adv, gid, ucs, ucs, wmode, bidi_level, markup_dir, language);
if (wmode == 0)
trm = fz_pre_translate(trm, adv, 0);
else
trm = fz_pre_translate(trm, 0, -adv);
}
return trm;
}
fz_matrix
fz_measure_string(fz_context *ctx, fz_font *user_font, fz_matrix trm, const char *s,
int wmode, int bidi_level, fz_bidi_direction markup_dir, fz_text_language language)
{
fz_font *font;
int gid, ucs;
float adv;
while (*s)
{
s += fz_chartorune(&ucs, s);
gid = fz_encode_character_with_fallback(ctx, user_font, ucs, 0, language, &font);
adv = fz_advance_glyph(ctx, font, gid, wmode);
if (wmode == 0)
trm = fz_pre_translate(trm, adv, 0);
else
trm = fz_pre_translate(trm, 0, -adv);
}
return trm;
}
fz_rect
fz_bound_text(fz_context *ctx, const fz_text *text, const fz_stroke_state *stroke, fz_matrix ctm)
{
fz_text_span *span;
fz_matrix tm, trm;
fz_rect gbox;
fz_rect bbox;
int i;
bbox = fz_empty_rect;
for (span = text->head; span; span = span->next)
{
if (span->len > 0)
{
tm = span->trm;
for (i = 0; i < span->len; i++)
{
if (span->items[i].gid >= 0)
{
tm.e = span->items[i].x;
tm.f = span->items[i].y;
trm = fz_concat(tm, ctm);
gbox = fz_bound_glyph(ctx, span->font, span->items[i].gid, trm);
bbox = fz_union_rect(bbox, gbox);
}
}
}
}
if (!fz_is_empty_rect(bbox))
{
if (stroke)
bbox = fz_adjust_rect_for_stroke(ctx, bbox, stroke, ctm);
/* Compensate for the glyph cache limited positioning precision */
bbox.x0 -= 1;
bbox.y0 -= 1;
bbox.x1 += 1;
bbox.y1 += 1;
}
return bbox;
}
fz_text_language fz_text_language_from_string(const char *str)
{
fz_text_language lang;
if (str == NULL)
return FZ_LANG_UNSET;
if (!strcmp(str, "zh-Hant") ||
!strcmp(str, "zh-HK") ||
!strcmp(str, "zh-MO") ||
!strcmp(str, "zh-SG") ||
!strcmp(str, "zh-TW"))
return FZ_LANG_zh_Hant;
if (!strcmp(str, "zh-Hans") ||
!strcmp(str, "zh-CN"))
return FZ_LANG_zh_Hans;
/* 1st char */
if (str[0] >= 'a' && str[0] <= 'z')
lang = str[0] - 'a' + 1;
else if (str[0] >= 'A' && str[0] <= 'Z')
lang = str[0] - 'A' + 1;
else
return 0;
/* 2nd char */
if (str[1] >= 'a' && str[1] <= 'z')
lang += 27*(str[1] - 'a' + 1);
else if (str[1] >= 'A' && str[1] <= 'Z')
lang += 27*(str[1] - 'A' + 1);
else
return 0; /* There are no valid 1 char language codes */
/* 3nd char */
if (str[2] >= 'a' && str[2] <= 'z')
lang += 27*27*(str[2] - 'a' + 1);
else if (str[2] >= 'A' && str[2] <= 'Z')
lang += 27*27*(str[2] - 'A' + 1);
/* We don't support iso 639-6 4 char codes, cos the standard
* has been withdrawn, and no one uses them. */
return lang;
}
char *fz_string_from_text_language(char str[8], fz_text_language lang)
{
int c;
/* str is supposed to be at least 8 chars in size */
if (str == NULL)
return NULL;
if (lang == FZ_LANG_zh_Hant)
fz_strlcpy(str, "zh-Hant", 8);
else if (lang == FZ_LANG_zh_Hans)
fz_strlcpy(str, "zh-Hans", 8);
else
{
c = lang % 27;
lang = lang / 27;
str[0] = c == 0 ? 0 : c - 1 + 'a';
c = lang % 27;
lang = lang / 27;
str[1] = c == 0 ? 0 : c - 1 + 'a';
c = lang % 27;
str[2] = c == 0 ? 0 : c - 1 + 'a';
str[3] = 0;
}
return str;
}
|