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 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466 467 468 469 470 471 472 473 474 475 476 477 478 479 480 481 482 483 484 485 486 487 488 489 490 491 492 493 494 495 496 497 498 499 500 501 502 503 504 505 506 507 508 509 510 511 512 513 514 515 516 517 518 519 520 521 522 523 524 525 526 527 528 529 530 531 532 533 534 535 536 537 538 539 540 541 542 543 544 545 546 547 548 549 550 551 552 553 554 555 556 557 558 559 560 561 562 563 564
|
/* Copyright (C) 2018-2025 Artifex Software, Inc.
All Rights Reserved.
This software is provided AS-IS with no warranty, either express or
implied.
This software is distributed under license and may not be copied,
modified or distributed except as expressly authorized under the terms
of the license contained in the file LICENSE in this distribution.
Refer to licensing information at http://www.artifex.com or contact
Artifex Software, Inc., 39 Mesa Street, Suite 108A, San Francisco,
CA 94129, USA, for further information.
*/
#include "doc_common.h"
#include "gxfont.h"
#include "gserrors.h"
#include "gxfcid.h"
#include "gsagl.h"
#include "gxdevcli.h"
#include "gxgstate.h"
#include <string.h>
extern single_glyph_list_t SingleGlyphList[];
extern double_glyph_list_t DoubleGlyphList[];
extern treble_glyph_list_t TrebleGlyphList[];
extern quad_glyph_list_t QuadGlyphList[];
static int
font_orig_matrix(const gs_font *font, gs_glyph cid, gs_matrix *pmat)
{
int code;
switch (font->FontType) {
case ft_composite: /* subfonts have their own FontMatrix */
case ft_TrueType:
case ft_CID_TrueType:
/* The TrueType FontMatrix is 1 unit per em, which is what we want. */
gs_make_identity(pmat);
return 0;
case ft_encrypted:
case ft_encrypted2:
case ft_CID_encrypted:
case ft_user_defined:
case ft_PDF_user_defined:
case ft_PCL_user_defined:
case ft_GL2_stick_user_defined:
case ft_GL2_531:
/*
* Type 1 fonts are supposed to use a standard FontMatrix of
* [0.001 0 0 0.001 0 0], with a 1000-unit cell. However,
* Windows NT 4.0 creates Type 1 fonts, apparently derived from
* TrueType fonts, that use a 2048-unit cell and corresponding
* FontMatrix. Also, some PS programs perform font scaling by
* replacing FontMatrix like this :
*
* /f12 /Times-Roman findfont
* copyfont % (remove FID)
* dup /FontMatrix [0.012 0 0 0.012 0 0] put
* definefont
* /f12 1 selectfont
*
* Such fonts are their own "base font", but the orig_matrix
* must still be set to 0.001, not 0.012 .
*
* The old code used a heuristic to detect and correct for this here.
* Unfortunately it doesn't work properly when it meets a font
* with FontMatrix like this :
*
* /FontMatrix [1 2288 div 0 0 1 2288 div 0 0 ] def
*
* (the bug 686970). Also comparefiles\455690.pdf appears to
* have similar problem. Therefore we added a support to lib/gs_fonts.ps,
* src/zbfont.c, src/gsfont.c that provides an acces to the original
* font via a special key OrigFont added to the font dictionary while definefont.
* Now we work through this access with PS interpreter,
* but keep the old heuristic for other clients.
*/
{
const gs_font *base_font = font;
while (base_font->base != base_font)
base_font = base_font->base;
if (font->FontType == ft_user_defined ||
font->FontType == ft_PCL_user_defined ||
font->FontType == ft_GL2_stick_user_defined ||
font->FontType == ft_GL2_531)
*pmat = base_font->FontMatrix;
else if (base_font->orig_FontMatrix.xx != 0 || base_font->orig_FontMatrix.xy != 0 ||
base_font->orig_FontMatrix.yx != 0 || base_font->orig_FontMatrix.yy != 0)
*pmat = base_font->orig_FontMatrix;
else {
/* Must not happen with PS interpreter.
Provide a hewuristic for other clients.
*/
if (base_font->FontMatrix.xx == 1.0/2048 &&
base_font->FontMatrix.xy == 0 &&
base_font->FontMatrix.yx == 0 &&
any_abs(base_font->FontMatrix.yy) == 1.0/2048
)
*pmat = base_font->FontMatrix;
else
gs_make_scaling(0.001, 0.001, pmat);
}
}
if (font->FontType == ft_CID_encrypted && cid != -1) {
int fidx;
if (cid < GS_MIN_CID_GLYPH)
cid = GS_MIN_CID_GLYPH;
code = ((gs_font_cid0 *)font)->cidata.glyph_data((gs_font_base *)font,
cid, NULL, &fidx);
if (code < 0) {
code = ((gs_font_cid0 *)font)->cidata.glyph_data((gs_font_base *)font,
(gs_glyph)GS_MIN_CID_GLYPH, NULL, &fidx);
}
if (code >= 0) {
gs_matrix_multiply(&(gs_cid0_indexed_font(font, fidx)->FontMatrix),
pmat, pmat);
}
}
return 0;
default:
return_error(gs_error_rangecheck);
}
}
/*
* Special version of font_orig_matrix(), that considers FDArray font's FontMatrix too.
* Called only by txt_glyph_width().
* 'cid' is only consulted if 'font' is a CIDFontType 0 CID font.
*/
static int
glyph_orig_matrix(const gs_font *font, gs_glyph cid, gs_matrix *pmat)
{
int code = font_orig_matrix(font, cid, pmat);
if (code >= 0) {
if (font->FontType == ft_CID_encrypted) {
int fidx;
if (cid < GS_MIN_CID_GLYPH)
cid = GS_MIN_CID_GLYPH;
code = ((gs_font_cid0 *)font)->cidata.glyph_data((gs_font_base *)font,
cid, NULL, &fidx);
if (code < 0) {
code = ((gs_font_cid0 *)font)->cidata.glyph_data((gs_font_base *)font,
(gs_glyph)GS_MIN_CID_GLYPH, NULL, &fidx);
}
if (code >= 0) {
gs_matrix_multiply(&(gs_cid0_indexed_font(font, fidx)->FontMatrix),
pmat, pmat);
}
}
}
return code;
}
float txt_calculate_text_size(gs_gstate *pgs, gs_font *ofont,
const gs_matrix *pfmat, gs_matrix *smat, gs_matrix *tmat,
gs_font *font, gx_device *pdev)
{
gs_matrix orig_matrix;
double
sx = pdev->HWResolution[0] / 72.0,
sy = pdev->HWResolution[1] / 72.0;
float size;
/* Get the original matrix of the base font. */
font_orig_matrix(ofont, -1, &orig_matrix);
/* Compute the scaling matrix and combined matrix. */
if (gs_matrix_invert(&orig_matrix, smat) < 0) {
gs_make_identity(smat);
return 1; /* Arbitrary */
}
gs_matrix_multiply(smat, pfmat, smat);
*tmat = ctm_only(pgs);
tmat->tx = tmat->ty = 0;
gs_matrix_multiply(smat, tmat, tmat);
/* Try to find a reasonable size value. */
size = hypot(tmat->yx, tmat->yy) / sy;
if (size < 0.01)
size = hypot(tmat->xx, tmat->xy) / sx;
if (size < 0.01)
size = 1;
return(size);
}
static int
store_glyph_width(txt_glyph_width_t *pwidth, int wmode, const gs_matrix *scale,
const gs_glyph_info_t *pinfo)
{
double w, v;
gs_distance_transform(pinfo->width[wmode].x, pinfo->width[wmode].y, scale, &pwidth->xy);
if (wmode)
w = pwidth->xy.y, v = pwidth->xy.x;
else
w = pwidth->xy.x, v = pwidth->xy.y;
if (v != 0)
return 1;
pwidth->w = w;
gs_distance_transform(pinfo->v.x, pinfo->v.y, scale, &pwidth->v);
return 0;
}
static int
get_missing_width(gs_font *font, int wmode, const gs_matrix *scale_c,
txt_glyph_widths_t *pwidths)
{
gs_font_info_t finfo;
int code;
code = font->procs.font_info((gs_font *)font, NULL,
FONT_INFO_MISSING_WIDTH, &finfo);
if (code < 0)
return code;
if (!(finfo.members & FONT_INFO_MISSING_WIDTH))
return_error(gs_error_undefined);
if (wmode) {
gs_distance_transform(0.0, -finfo.MissingWidth, scale_c, &pwidths->real_width.xy);
pwidths->Width.xy.x = 0;
pwidths->Width.xy.y = pwidths->real_width.xy.y;
pwidths->Width.w = pwidths->real_width.w =
pwidths->Width.xy.y;
pwidths->Width.v.x = - pwidths->Width.xy.y / 2;
pwidths->Width.v.y = - pwidths->Width.xy.y;
} else {
gs_distance_transform(finfo.MissingWidth, 0.0, scale_c, &pwidths->real_width.xy);
pwidths->Width.xy.x = pwidths->real_width.xy.x;
pwidths->Width.xy.y = 0;
pwidths->Width.w = pwidths->real_width.w =
pwidths->Width.xy.x;
pwidths->Width.v.x = pwidths->Width.v.y = 0;
}
/*
* Don't mark the width as known, just in case this is an
* incrementally defined font.
*/
return 1;
}
/*
* Get the widths (unmodified from the copied font,
* and possibly modified from the original font) of a given glyph.
* Return 1 if the width was defaulted to MissingWidth.
* Return TEXT_PROCESS_CDEVPROC if a CDevProc callout is needed.
* cdevproc_result != NULL if we restart after a CDevProc callout.
*/
int
txt_glyph_widths(gs_font *font, int wmode, gs_glyph glyph,
gs_font *orig_font, txt_glyph_widths_t *pwidths,
const double cdevproc_result[10])
{
gs_font *ofont = orig_font;
gs_glyph_info_t info;
gs_matrix scale_c, scale_o;
int code, rcode = 0;
gs_point v;
int allow_cdevproc_callout = (orig_font->FontType == ft_CID_TrueType
|| orig_font->FontType == ft_CID_encrypted
? GLYPH_INFO_CDEVPROC : 0); /* fixme : allow more font types. */
if (ofont->FontType == ft_composite)
return_error(gs_error_unregistered); /* Must not happen. */
code = glyph_orig_matrix((const gs_font *)font, glyph, &scale_c);
if (code < 0)
return code;
code = glyph_orig_matrix(ofont, glyph, &scale_o);
if (code < 0)
return code;
gs_matrix_scale(&scale_c, 1000.0, 1000.0, &scale_c);
gs_matrix_scale(&scale_o, 1000.0, 1000.0, &scale_o);
pwidths->Width.v.x = pwidths->Width.v.y = pwidths->Width.xy.x = pwidths->Width.xy.y = 0;
pwidths->real_width.v.x = pwidths->real_width.v.y = pwidths->real_width.xy.x = pwidths->real_width.xy.y = 0;
pwidths->Width.w = pwidths->real_width.w = 0.0;
pwidths->replaced_v = false;
if (glyph == GS_NO_GLYPH)
return get_missing_width(font, wmode, &scale_c, pwidths);
code = font->procs.glyph_info((gs_font *)font, glyph, NULL,
GLYPH_INFO_WIDTH0 |
(GLYPH_INFO_WIDTH0 << wmode) |
GLYPH_INFO_OUTLINE_WIDTHS |
(GLYPH_INFO_VVECTOR0 << wmode),
&info);
/* For CID fonts the PDF spec requires the x-component of v-vector
to be equal to half glyph width, and AR5 takes it from W, DW.
So make a compatibe data here.
*/
if (font->FontType != ft_PCL_user_defined && font->FontType != ft_GL2_stick_user_defined &&
font->FontType != ft_GL2_531
&& (code == gs_error_undefined || !(info.members & (GLYPH_INFO_WIDTH0 << wmode)))) {
code = get_missing_width(font, wmode, &scale_c, pwidths);
if (code < 0)
return code;
else
v.y = pwidths->Width.v.y;
if (wmode && (ofont->FontType == ft_CID_encrypted ||
ofont->FontType == ft_CID_TrueType)) {
txt_glyph_widths_t widths1;
if (get_missing_width(font, 0, &scale_c, &widths1) < 0)
v.x = 0;
else
v.x = widths1.Width.w / 2;
} else
v.x = pwidths->Width.v.x;
} else if (code < 0)
return code;
else {
code = store_glyph_width(&pwidths->Width, wmode, &scale_c, &info);
if (code < 0)
return code;
rcode |= code;
if (info.members & (GLYPH_INFO_VVECTOR0 << wmode))
gs_distance_transform(info.v.x, info.v.y, &scale_c, &v);
else
v.x = v.y = 0;
if (wmode && (ofont->FontType == ft_CID_encrypted ||
ofont->FontType == ft_CID_TrueType)) {
if (info.members & (GLYPH_INFO_WIDTH0 << wmode)) {
gs_point xy;
gs_distance_transform(info.width[0].x, info.width[0].y, &scale_c, &xy);
v.x = xy.x / 2;
} else {
txt_glyph_widths_t widths1;
if (get_missing_width(font, 0, &scale_c, &widths1) < 0)
v.x = 0;
else
v.x = widths1.Width.w / 2;
}
}
}
pwidths->Width.v = v;
/* Skip only if not paralel to the axis. */
if (code > 0 && ofont->FontType != ft_CID_encrypted &&
ofont->FontType != ft_CID_TrueType)
pwidths->Width.xy.x = pwidths->Width.xy.y = pwidths->Width.w = 0;
if (cdevproc_result == NULL) {
info.members = 0;
code = ofont->procs.glyph_info(ofont, glyph, NULL,
(GLYPH_INFO_WIDTH0 << wmode) |
(GLYPH_INFO_VVECTOR0 << wmode) |
allow_cdevproc_callout,
&info);
/* fixme : Move this call before cfont->procs.glyph_info. */
if (info.members & GLYPH_INFO_CDEVPROC) {
if (allow_cdevproc_callout)
return TEXT_PROCESS_CDEVPROC;
else
return_error(gs_error_rangecheck);
}
} else {
info.width[0].x = cdevproc_result[0];
info.width[0].y = cdevproc_result[1];
info.width[1].x = cdevproc_result[6];
info.width[1].y = cdevproc_result[7];
info.v.x = (wmode ? cdevproc_result[8] : 0);
info.v.y = (wmode ? cdevproc_result[9] : 0);
info.members = (GLYPH_INFO_WIDTH0 << wmode) |
(wmode ? GLYPH_INFO_VVECTOR1 : 0);
code = 0;
}
if (code == gs_error_undefined || !(info.members & (GLYPH_INFO_WIDTH0 << wmode)))
pwidths->real_width = pwidths->Width;
else if (code < 0)
return code;
else {
if ((info.members & (GLYPH_INFO_VVECTOR0 | GLYPH_INFO_VVECTOR1)) != 0)
pwidths->replaced_v = true;
else
info.v.x = info.v.y = 0;
code = store_glyph_width(&pwidths->real_width, wmode, &scale_o, &info);
if (code < 0)
return code;
rcode |= code;
gs_distance_transform(info.v.x, info.v.y, &scale_o, &pwidths->real_width.v);
}
return rcode;
}
void
txt_char_widths_to_uts(gs_font *font /* may be NULL for non-Type3 */,
txt_glyph_widths_t *pwidths)
{
if (font && (font->FontType == ft_user_defined ||
font->FontType == ft_PCL_user_defined ||
font->FontType == ft_GL2_stick_user_defined ||
font->FontType == ft_GL2_531)) {
gs_matrix *pmat = &font->orig_FontMatrix;
pwidths->Width.xy.x *= pmat->xx; /* formula simplified based on wy in glyph space == 0 */
pwidths->Width.xy.y = 0.0; /* WMode == 0 for PDF Type 3 fonts */
gs_distance_transform(pwidths->real_width.xy.x, pwidths->real_width.xy.y, pmat, &pwidths->real_width.xy);
} else {
/*
* For other font types:
* - PDF design->text space is a simple scaling by 0.001.
* - The Width.xy.x/y that should be zeroed-out per 5.3.3 "Text Space Details" is already 0.
*/
pwidths->Width.xy.x /= 1000.0;
pwidths->Width.xy.y /= 1000.0;
pwidths->real_width.xy.x /= 1000.0;
pwidths->real_width.xy.y /= 1000.0;
}
}
int txt_get_unicode(gx_device *dev, gs_font *font, gs_glyph glyph, gs_char ch, unsigned short *Buffer)
{
int code;
gs_const_string gnstr;
unsigned short fallback = ch;
ushort *unicode = NULL;
int length;
length = font->procs.decode_glyph((gs_font *)font, glyph, ch, NULL, 0);
if (length == 0) {
if (glyph != GS_NO_GLYPH) {
code = font->procs.glyph_name(font, glyph, &gnstr);
if (code >= 0 && gnstr.size == 7) {
if (!memcmp(gnstr.data, "uni", 3)) {
static const char *hexdigits = "0123456789ABCDEF";
char *d0 = strchr(hexdigits, gnstr.data[3]);
char *d1 = strchr(hexdigits, gnstr.data[4]);
char *d2 = strchr(hexdigits, gnstr.data[5]);
char *d3 = strchr(hexdigits, gnstr.data[6]);
if (d0 != NULL && d1 != NULL && d2 != NULL && d3 != NULL) {
*Buffer++ = ((d0 - hexdigits) << 12) + ((d1 - hexdigits) << 8) + ((d2 - hexdigits) << 4) + (d3 - hexdigits);
return 1;
}
}
}
if (code >= 0 && length == 0) {
single_glyph_list_t *sentry = SingleGlyphList;
double_glyph_list_t *dentry = DoubleGlyphList;
treble_glyph_list_t *tentry = TrebleGlyphList;
quad_glyph_list_t *qentry = QuadGlyphList;
/* Search glyph to single Unicode value table */
while (sentry->Glyph != 0) {
if (sentry->Glyph[0] < gnstr.data[0]) {
sentry++;
continue;
}
if (sentry->Glyph[0] > gnstr.data[0]){
break;
}
if (strlen(sentry->Glyph) == gnstr.size) {
if(memcmp(gnstr.data, sentry->Glyph, gnstr.size) == 0) {
*Buffer = sentry->Unicode;
return 1;
}
}
sentry++;
}
/* Search glyph to double Unicode value table */
while (dentry->Glyph != 0) {
if (dentry->Glyph[0] < gnstr.data[0]) {
dentry++;
continue;
}
if (dentry->Glyph[0] > gnstr.data[0]){
break;
}
if (strlen(dentry->Glyph) == gnstr.size) {
if(memcmp(gnstr.data, dentry->Glyph, gnstr.size) == 0) {
memcpy(Buffer, dentry->Unicode, 2 * sizeof(unsigned short));
return 2;
}
}
dentry++;
}
/* Search glyph to triple Unicode value table */
while (tentry->Glyph != 0) {
if (tentry->Glyph[0] < gnstr.data[0]) {
tentry++;
continue;
}
if (tentry->Glyph[0] > gnstr.data[0]){
break;
}
if (strlen(tentry->Glyph) == gnstr.size) {
if(memcmp(gnstr.data, tentry->Glyph, gnstr.size) == 0) {
memcpy(Buffer, tentry->Unicode, 3 * sizeof(unsigned short));
return 3;
}
}
tentry++;
}
/* Search glyph to quadruple Unicode value table */
while (qentry->Glyph != 0) {
if (qentry->Glyph[0] < gnstr.data[0]) {
qentry++;
continue;
}
if (qentry->Glyph[0] > gnstr.data[0]){
break;
}
if (strlen(qentry->Glyph) == gnstr.size) {
if(memcmp(gnstr.data, qentry->Glyph, gnstr.size) == 0) {
memcpy(Buffer, qentry->Unicode, 4 * sizeof(unsigned short));
return 4;
}
}
qentry++;
}
}
}
*Buffer = fallback;
return 1;
} else {
char *b, *u;
int l;
/* Real Unicode values should be at least 2 bytes. In fact I think the code assumes exactly
* 2 bytes. If we got an odd number, give up and return the character code.
*
* The magic number here is due to the clients calling this code. Currently txtwrite and docxwrite
* allow up to 4 Unicode values per character/glyph, if the length would exceed that we can't
* write it. For now, again, fall back to the character code.
*/
if (length & 1 || length > 4 * sizeof(unsigned short)) {
*Buffer = fallback;
return 1;
}
unicode = (ushort *)gs_alloc_bytes(dev->memory, length, "temporary Unicode array");
if (unicode == NULL) {
*Buffer = fallback;
return 1;
}
length = font->procs.decode_glyph((gs_font *)font, glyph, ch, unicode, length);
#if ARCH_IS_BIG_ENDIAN
memcpy(Buffer, unicode, length);
#else
b = (char *)Buffer;
u = (char *)unicode;
for (l=0;l<length;l+=2, u+=2){
*b++ = *(u+1);
*b++ = *u;
}
#endif
gs_free_object(dev->memory, unicode, "free temporary unicode buffer");
return length / sizeof(short);
}
}
|