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 565 566 567 568 569 570 571 572 573 574 575 576 577 578 579 580 581 582 583 584 585 586 587 588 589 590 591 592 593 594 595 596 597 598 599 600 601 602 603 604 605 606 607 608 609 610 611 612 613 614 615 616 617 618 619 620 621 622 623 624 625 626 627 628 629 630 631 632 633 634 635 636 637 638 639 640 641 642 643 644 645 646 647 648 649 650 651 652 653 654 655 656 657 658 659 660 661 662 663 664 665 666 667 668 669 670 671 672 673 674 675 676 677 678 679 680 681 682 683 684 685 686 687 688 689 690 691 692 693 694 695 696 697 698 699 700 701 702 703 704 705 706 707 708 709 710 711 712 713 714 715 716 717 718 719 720 721 722 723 724 725 726 727 728 729 730 731 732 733 734 735 736 737 738 739 740 741 742 743 744 745 746 747 748 749 750 751 752 753 754 755 756 757 758 759 760 761 762 763 764 765 766 767 768 769 770 771 772 773 774 775 776 777 778 779 780 781 782 783 784 785 786 787 788 789 790 791 792 793 794 795 796 797 798 799 800 801 802 803 804 805 806 807 808 809 810 811 812 813 814 815 816 817 818 819 820 821 822 823 824 825 826 827 828 829 830 831 832 833 834 835 836 837 838 839 840 841 842 843 844 845 846 847 848 849 850 851 852 853 854 855 856 857 858 859 860 861 862 863 864 865 866 867 868 869 870 871 872 873 874 875 876 877 878 879 880 881 882 883 884 885 886 887 888 889 890 891 892 893 894 895 896 897 898 899 900 901 902 903 904 905 906 907 908 909 910 911 912 913 914 915 916 917 918 919 920 921 922 923 924 925 926 927 928 929 930 931 932 933 934 935 936 937 938 939 940 941 942 943 944 945 946 947 948 949 950 951 952 953 954 955 956 957 958 959 960 961 962 963 964 965 966 967 968 969 970 971 972 973 974 975 976 977 978 979 980 981 982 983 984 985 986 987 988 989 990 991 992 993 994 995 996 997 998 999 1000 1001 1002 1003 1004 1005 1006 1007 1008 1009 1010 1011 1012 1013 1014 1015 1016 1017 1018 1019 1020 1021 1022 1023 1024 1025 1026 1027 1028 1029 1030 1031 1032 1033 1034 1035 1036 1037 1038 1039 1040 1041 1042 1043 1044 1045 1046 1047 1048 1049 1050
|
// 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"
#define SUBSCRIPT_OFFSET 0.2f
#define SUPERSCRIPT_OFFSET -0.2f
#include <ft2build.h>
#include FT_FREETYPE_H
// Text black color when converted from DeviceCMYK to RGB
#define CMYK_BLACK 0x221f1f
static void
scale_run(fz_context *ctx, fz_stext_block *block, float scale)
{
fz_matrix m = fz_scale(scale, scale);
fz_stext_line *line;
fz_stext_char *ch;
while (block)
{
block->bbox = fz_transform_rect(block->bbox, m);
switch (block->type)
{
case FZ_STEXT_BLOCK_TEXT:
for (line = block->u.t.first_line; line; line = line->next)
{
line->bbox = fz_transform_rect(block->bbox, m);
for (ch = line->first_char; ch; ch = ch->next)
{
ch->origin = fz_transform_point(ch->origin, m);
ch->quad = fz_transform_quad(ch->quad, m);
ch->size = ch->size * scale;
}
}
break;
case FZ_STEXT_BLOCK_IMAGE:
block->u.i.transform = fz_post_scale(block->u.i.transform, scale, scale);
break;
case FZ_STEXT_BLOCK_STRUCT:
if (block->u.s.down)
scale_run(ctx, block->u.s.down->first_block, scale);
break;
}
block = block->next;
}
}
static void fz_scale_stext_page(fz_context *ctx, fz_stext_page *page, float scale)
{
scale_run(ctx, page->first_block, scale);
}
/* HTML output (visual formatting with preserved layout) */
static int
detect_super_script(fz_stext_line *line, fz_stext_char *ch)
{
if (line->wmode == 0 && line->dir.x == 1 && line->dir.y == 0)
return ch->origin.y < line->first_char->origin.y - ch->size * 0.1f;
return 0;
}
static const char *
font_full_name(fz_context *ctx, fz_font *font)
{
const char *name = fz_font_name(ctx, font);
const char *s = strchr(name, '+');
return s ? s + 1 : name;
}
static const char *
html_clean_font_name(const char *fontname)
{
if (strstr(fontname, "Times"))
return "Times New Roman";
if (strstr(fontname, "Arial") || strstr(fontname, "Helvetica"))
{
if (strstr(fontname, "Narrow") || strstr(fontname, "Condensed"))
return "Arial Narrow";
return "Arial";
}
if (strstr(fontname, "Courier"))
return "Courier";
return fontname;
}
static void
font_family_name(fz_context *ctx, fz_font *font, char *buf, int size, int is_mono, int is_serif)
{
const char *name = html_clean_font_name(font_full_name(ctx, font));
char *s;
fz_strlcpy(buf, name, size);
s = strrchr(buf, '-');
if (s)
*s = 0;
if (is_mono)
fz_strlcat(buf, ",monospace", size);
else
fz_strlcat(buf, is_serif ? ",serif" : ",sans-serif", size);
}
static void
fz_print_style_begin_html(fz_context *ctx, fz_output *out, fz_font *font, float size, int sup, int color)
{
char family[80];
int is_bold = fz_font_is_bold(ctx, font);
int is_italic = fz_font_is_italic(ctx, font);
int is_serif = fz_font_is_serif(ctx, font);
int is_mono = fz_font_is_monospaced(ctx, font);
font_family_name(ctx, font, family, sizeof family, is_mono, is_serif);
if (sup) fz_write_string(ctx, out, "<sup>");
if (is_mono) fz_write_string(ctx, out, "<tt>");
if (is_bold) fz_write_string(ctx, out, "<b>");
if (is_italic) fz_write_string(ctx, out, "<i>");
fz_write_printf(ctx, out, "<span style=\"font-family:%s;font-size:%.1fpt", family, size);
if (color != 0 && color != CMYK_BLACK)
fz_write_printf(ctx, out, ";color:#%06x", color & 0xffffff);
fz_write_printf(ctx, out, "\">");
}
static void
fz_print_style_end_html(fz_context *ctx, fz_output *out, fz_font *font, float size, int sup, int color)
{
int is_mono = fz_font_is_monospaced(ctx, font);
int is_bold = fz_font_is_bold(ctx,font);
int is_italic = fz_font_is_italic(ctx, font);
fz_write_string(ctx, out, "</span>");
if (is_italic) fz_write_string(ctx, out, "</i>");
if (is_bold) fz_write_string(ctx, out, "</b>");
if (is_mono) fz_write_string(ctx, out, "</tt>");
if (sup) fz_write_string(ctx, out, "</sup>");
}
static void
fz_print_stext_image_as_html(fz_context *ctx, fz_output *out, fz_stext_block *block)
{
fz_matrix ctm = block->u.i.transform;
#define USE_CSS_MATRIX_TRANSFORMS
#ifdef USE_CSS_MATRIX_TRANSFORMS
/* Matrix maths notes.
* When we get here ctm maps the unit square to the position in device
* space occupied by the image.
*
* That is to say that mapping the 4 corners of the unit square through
* the transform, give us the 4 target corners. We extend the corners
* by adding an extra '1' into them to allow transforms to work. Thus
* (x,y) maps through ctm = (a b c d e f) as:
*
* (x y 1) (a b 0) = (X Y 1)
* (c d 0)
* (e f 1)
*
* To simplify reading of matrix maths, we use the trick where we
* 'drop' the first matrix down the page. Thus the corners c0=(0,0),
* c1=(1,0), c2=(1,1), c3=(0,1) map to C0, C1, C2, C3 respectively:
*
* ( a b 0)
* ( c d 0)
* ( e f 1)
* (0 0 1) ( e f 1)
* (0 1 1) ( c+e d+f 1)
* (1 1 1) (a+c+e b+d+f 1)
* (1 0 1) ( a+e b+f 1)
*
* where C0 = (e,f), C1=(c+e, d+f) C2=(a+c+e, b+d+f), C3=(a+e, b+f)
*
* Unfortunately, the CSS matrix transform, does not map the unit square.
* Rather it does something moderately mad. As far as I can work out, the
* top left corner of a (0,0) -> (w, h) box is transformed using the .e
* and .f entries of the matrix. Then the image from within that square
* is transformed using the centre of that square as the origin.
*
* So, an image placed at (0,0) in destination space with 1:1 transform
* will result in an image a (0,0) as you'd expect. But an image at (0,0)
* with a scale of 2, will result in 25% of the image off the left of the
* screen, and 25% off the top.
*
* Accordingly, we have to adjust the ctm in several steps.
*/
/* Move to moving the centre of the image. */
ctm.e += (ctm.a+ctm.c)/2;
ctm.f += (ctm.b+ctm.d)/2;
/* Move from transforming the unit square to w/h */
ctm.a /= block->u.i.image->w;
ctm.b /= block->u.i.image->w;
ctm.c /= block->u.i.image->h;
ctm.d /= block->u.i.image->h;
/* Move from points to pixels */
ctm.a *= 96.0f/72;
ctm.b *= 96.0f/72;
ctm.c *= 96.0f/72;
ctm.d *= 96.0f/72;
ctm.e *= 96.0f/72;
ctm.f *= 96.0f/72;
/* Move to moving the top left of the untransformed image box, cos HTML is bonkers. */
ctm.e -= block->u.i.image->w/2;
ctm.f -= block->u.i.image->h/2;
fz_write_printf(ctx, out, "<img style=\"position:absolute;transform:matrix(%g,%g,%g,%g,%g,%g)\" src=\"",
ctm.a, ctm.b, ctm.c, ctm.d, ctm.e, ctm.f);
#else
/* Alternative version of the code that uses scaleX/Y and rotate
* instead, but only copes with axis aligned cases. */
int t;
int x = block->bbox.x0;
int y = block->bbox.y0;
int w = block->bbox.x1 - block->bbox.x0;
int h = block->bbox.y1 - block->bbox.y0;
const char *flip = "";
if (ctm.b == 0 && ctm.c == 0)
{
if (ctm.a < 0 && ctm.d < 0)
flip = "transform: scaleX(-1) scaleY(-1);";
else if (ctm.a < 0)
{
flip = "transform: scaleX(-1);";
}
else if (ctm.d < 0)
{
flip = "transform: scaleY(-1);";
}
} else if (ctm.a == 0 && ctm.d == 0) {
if (ctm.b < 0 && ctm.c < 0)
{
flip = "transform: scaleY(-1) rotate(90deg);";
x += (w-h)/2;
y -= (w-h)/2;
t = w; w = h; h = t;
}
else if (ctm.b < 0)
{
flip = "transform: scaleX(-1) scaleY(-1) rotate(90deg);";
x += (w-h)/2;
y -= (w-h)/2;
t = w; w = h; h = t;
}
else if (ctm.c < 0)
{
flip = "transform: scaleX(-1) scaleY(-1) rotate(270deg);";
x += (w-h)/2;
y -= (w-h)/2;
t = w; w = h; h = t;
}
else
{
flip = "transform: scaleY(-1) rotate(270deg);";
x += (w-h)/2;
y -= (w-h)/2;
t = w; w = h; h = t;
}
}
fz_write_printf(ctx, out, "<img style=\"position:absolute;%stop:%dpt;left:%dpt;width:%dpt;height:%dpt\" src=\"", flip, y, x, w, h);
#endif
fz_write_image_as_data_uri(ctx, out, block->u.i.image);
fz_write_string(ctx, out, "\">\n");
}
void
fz_print_stext_block_as_html(fz_context *ctx, fz_output *out, fz_stext_block *block)
{
fz_stext_line *line;
fz_stext_char *ch;
float x, y, h;
fz_font *font = NULL;
float size = 0;
int sup = 0;
uint32_t color = 0;
for (line = block->u.t.first_line; line; line = line->next)
{
x = line->bbox.x0;
y = line->bbox.y0;
h = line->bbox.y1 - line->bbox.y0;
if (line->first_char)
{
h = line->first_char->size;
y = line->first_char->origin.y - h * 0.8f;
}
fz_write_printf(ctx, out, "<p style=\"top:%.1fpt;left:%.1fpt;line-height:%.1fpt\">", y, x, h);
font = NULL;
for (ch = line->first_char; ch; ch = ch->next)
{
int ch_sup = detect_super_script(line, ch);
if (ch->font != font || ch->size != size || ch_sup != sup || ch->argb != color)
{
if (font)
fz_print_style_end_html(ctx, out, font, size, sup, color);
font = ch->font;
size = ch->size;
color = ch->argb;
sup = ch_sup;
fz_print_style_begin_html(ctx, out, font, size, sup, color);
}
switch (ch->c)
{
default:
if (ch->c >= 32 && ch->c <= 127)
fz_write_byte(ctx, out, ch->c);
else
fz_write_printf(ctx, out, "&#x%x;", ch->c);
break;
case '<': fz_write_string(ctx, out, "<"); break;
case '>': fz_write_string(ctx, out, ">"); break;
case '&': fz_write_string(ctx, out, "&"); break;
case '"': fz_write_string(ctx, out, """); break;
case '\'': fz_write_string(ctx, out, "'"); break;
}
}
if (font)
fz_print_style_end_html(ctx, out, font, size, sup, color);
fz_write_string(ctx, out, "</p>\n");
}
}
void
fz_print_stext_page_as_html(fz_context *ctx, fz_output *out, fz_stext_page *page, int id)
{
fz_stext_block *block;
float w = page->mediabox.x1 - page->mediabox.x0;
float h = page->mediabox.y1 - page->mediabox.y0;
fz_write_printf(ctx, out, "<div id=\"page%d\" style=\"width:%.1fpt;height:%.1fpt\">\n", id, w, h);
for (block = page->first_block; block; block = block->next)
{
if (block->type == FZ_STEXT_BLOCK_IMAGE)
fz_print_stext_image_as_html(ctx, out, block);
else if (block->type == FZ_STEXT_BLOCK_TEXT)
fz_print_stext_block_as_html(ctx, out, block);
}
fz_write_string(ctx, out, "</div>\n");
}
void
fz_print_stext_header_as_html(fz_context *ctx, fz_output *out)
{
fz_write_string(ctx, out, "<!DOCTYPE html>\n");
fz_write_string(ctx, out, "<html>\n");
fz_write_string(ctx, out, "<head>\n");
fz_write_string(ctx, out, "<style>\n");
fz_write_string(ctx, out, "body{background-color:slategray}\n");
fz_write_string(ctx, out, "div{position:relative;background-color:white;margin:1em auto;box-shadow:1px 1px 8px -2px black}\n");
fz_write_string(ctx, out, "p{position:absolute;white-space:pre;margin:0}\n");
fz_write_string(ctx, out, "</style>\n");
fz_write_string(ctx, out, "</head>\n");
fz_write_string(ctx, out, "<body>\n");
}
void
fz_print_stext_trailer_as_html(fz_context *ctx, fz_output *out)
{
fz_write_string(ctx, out, "</body>\n");
fz_write_string(ctx, out, "</html>\n");
}
/* XHTML output (semantic, little layout, suitable for reflow) */
static void
fz_print_stext_image_as_xhtml(fz_context *ctx, fz_output *out, fz_stext_block *block)
{
int w = block->bbox.x1 - block->bbox.x0;
int h = block->bbox.y1 - block->bbox.y0;
fz_write_printf(ctx, out, "<p><img width=\"%d\" height=\"%d\" src=\"", w, h);
fz_write_image_as_data_uri(ctx, out, block->u.i.image);
fz_write_string(ctx, out, "\"/></p>\n");
}
static void
fz_print_style_begin_xhtml(fz_context *ctx, fz_output *out, fz_font *font, int sup)
{
int is_mono = fz_font_is_monospaced(ctx, font);
int is_bold = fz_font_is_bold(ctx, font);
int is_italic = fz_font_is_italic(ctx, font);
if (sup)
fz_write_string(ctx, out, "<sup>");
if (is_mono)
fz_write_string(ctx, out, "<tt>");
if (is_bold)
fz_write_string(ctx, out, "<b>");
if (is_italic)
fz_write_string(ctx, out, "<i>");
}
static void
fz_print_style_end_xhtml(fz_context *ctx, fz_output *out, fz_font *font, int sup)
{
int is_mono = fz_font_is_monospaced(ctx, font);
int is_bold = fz_font_is_bold(ctx, font);
int is_italic = fz_font_is_italic(ctx, font);
if (is_italic)
fz_write_string(ctx, out, "</i>");
if (is_bold)
fz_write_string(ctx, out, "</b>");
if (is_mono)
fz_write_string(ctx, out, "</tt>");
if (sup)
fz_write_string(ctx, out, "</sup>");
}
static float avg_font_size_of_line(fz_stext_char *ch)
{
float size = 0;
int n = 0;
if (!ch)
return 0;
while (ch)
{
size += ch->size;
++n;
ch = ch->next;
}
return size / n;
}
static const char *tag_from_font_size(float size)
{
if (size >= 20) return "h1";
if (size >= 15) return "h2";
if (size >= 12) return "h3";
return "p";
}
static void fz_print_stext_block_as_xhtml(fz_context *ctx, fz_output *out, fz_stext_block *block)
{
fz_stext_line *line;
fz_stext_char *ch;
fz_font *font = NULL;
int sup = 0;
int sp = 1;
const char *tag = NULL;
const char *new_tag;
for (line = block->u.t.first_line; line; line = line->next)
{
new_tag = tag_from_font_size(avg_font_size_of_line(line->first_char));
if (tag != new_tag)
{
if (tag)
{
if (font)
fz_print_style_end_xhtml(ctx, out, font, sup);
fz_write_printf(ctx, out, "</%s>", tag);
}
tag = new_tag;
fz_write_printf(ctx, out, "<%s>", tag);
if (font)
fz_print_style_begin_xhtml(ctx, out, font, sup);
}
if (!sp)
fz_write_byte(ctx, out, ' ');
for (ch = line->first_char; ch; ch = ch->next)
{
int ch_sup = detect_super_script(line, ch);
if (ch->font != font || ch_sup != sup)
{
if (font)
fz_print_style_end_xhtml(ctx, out, font, sup);
font = ch->font;
sup = ch_sup;
fz_print_style_begin_xhtml(ctx, out, font, sup);
}
sp = (ch->c == ' ');
switch (ch->c)
{
default:
if (ch->c >= 32 && ch->c <= 127)
fz_write_byte(ctx, out, ch->c);
else
fz_write_printf(ctx, out, "&#x%x;", ch->c);
break;
case '<': fz_write_string(ctx, out, "<"); break;
case '>': fz_write_string(ctx, out, ">"); break;
case '&': fz_write_string(ctx, out, "&"); break;
case '"': fz_write_string(ctx, out, """); break;
case '\'': fz_write_string(ctx, out, "'"); break;
}
}
}
if (font)
fz_print_style_end_xhtml(ctx, out, font, sup);
fz_write_printf(ctx, out, "</%s>\n", tag);
}
static void
run_to_xhtml(fz_context *ctx, fz_stext_block *block, fz_output *out)
{
while (block)
{
switch(block->type)
{
case FZ_STEXT_BLOCK_IMAGE:
fz_print_stext_image_as_xhtml(ctx, out, block);
break;
case FZ_STEXT_BLOCK_TEXT:
fz_print_stext_block_as_xhtml(ctx, out, block);
break;
case FZ_STEXT_BLOCK_STRUCT:
fz_write_printf(ctx, out, "<struct idx=\"%d\"",
block->u.s.index);
if (block->u.s.down)
fz_write_printf(ctx, out, " raw=\"%s\" std=\"%s\"",
block->u.s.down->raw, fz_structure_to_string(block->u.s.down->standard));
fz_write_printf(ctx, out, ">\n");
if (block->u.s.down)
run_to_xhtml(ctx, block->u.s.down->first_block, out);
fz_write_printf(ctx, out, "</struct>\n");
break;
}
block = block->next;
}
}
void
fz_print_stext_page_as_xhtml(fz_context *ctx, fz_output *out, fz_stext_page *page, int id)
{
fz_write_printf(ctx, out, "<div id=\"page%d\">\n", id);
run_to_xhtml(ctx, page->first_block, out);
fz_write_string(ctx, out, "</div>\n");
}
void
fz_print_stext_header_as_xhtml(fz_context *ctx, fz_output *out)
{
fz_write_string(ctx, out, "<?xml version=\"1.0\"?>\n");
fz_write_string(ctx, out, "<!DOCTYPE html");
fz_write_string(ctx, out, " PUBLIC \"-//W3C//DTD XHTML 1.0 Strict//EN\"");
fz_write_string(ctx, out, " \"http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd\">\n");
fz_write_string(ctx, out, "<html xmlns=\"http://www.w3.org/1999/xhtml\">\n");
fz_write_string(ctx, out, "<head>\n");
fz_write_string(ctx, out, "<style>\n");
fz_write_string(ctx, out, "p{white-space:pre-wrap}\n");
fz_write_string(ctx, out, "</style>\n");
fz_write_string(ctx, out, "</head>\n");
fz_write_string(ctx, out, "<body>\n");
}
void
fz_print_stext_trailer_as_xhtml(fz_context *ctx, fz_output *out)
{
fz_write_string(ctx, out, "</body>\n");
fz_write_string(ctx, out, "</html>\n");
}
/* Detailed XML dump of the entire structured text data */
static void
as_xml(fz_context *ctx, fz_stext_block *block, fz_output *out)
{
fz_stext_line *line;
fz_stext_char *ch;
int i;
while (block)
{
switch (block->type)
{
case FZ_STEXT_BLOCK_TEXT:
fz_write_printf(ctx, out, "<block bbox=\"%g %g %g %g\">\n",
block->bbox.x0, block->bbox.y0, block->bbox.x1, block->bbox.y1);
for (line = block->u.t.first_line; line; line = line->next)
{
fz_font *font = NULL;
float size = 0;
const char *name = NULL;
fz_write_printf(ctx, out, "<line bbox=\"%g %g %g %g\" wmode=\"%d\" dir=\"%g %g\">\n",
line->bbox.x0, line->bbox.y0, line->bbox.x1, line->bbox.y1,
line->wmode,
line->dir.x, line->dir.y);
for (ch = line->first_char; ch; ch = ch->next)
{
if (ch->font != font || ch->size != size)
{
if (font)
fz_write_string(ctx, out, "</font>\n");
font = ch->font;
size = ch->size;
name = font_full_name(ctx, font);
fz_write_printf(ctx, out, "<font name=\"%s\" size=\"%g\">\n", name, size);
}
fz_write_printf(ctx, out, "<char quad=\"%g %g %g %g %g %g %g %g\" x=\"%g\" y=\"%g\" bidi=\"%d\" color=\"#%06x\" alpha=\"#%02x\" flags=\"%d\" c=\"",
ch->quad.ul.x, ch->quad.ul.y,
ch->quad.ur.x, ch->quad.ur.y,
ch->quad.ll.x, ch->quad.ll.y,
ch->quad.lr.x, ch->quad.lr.y,
ch->origin.x, ch->origin.y,
ch->bidi,
ch->argb & 0xFFFFFF,
ch->argb>>24,
ch->flags);
switch (ch->c)
{
case '<': fz_write_string(ctx, out, "<"); break;
case '>': fz_write_string(ctx, out, ">"); break;
case '&': fz_write_string(ctx, out, "&"); break;
case '"': fz_write_string(ctx, out, """); break;
case '\'': fz_write_string(ctx, out, "'"); break;
default:
if (ch->c >= 32 && ch->c <= 127)
fz_write_printf(ctx, out, "%c", ch->c);
else
fz_write_printf(ctx, out, "&#x%x;", ch->c);
break;
}
fz_write_string(ctx, out, "\"/>\n");
}
if (font)
fz_write_string(ctx, out, "</font>\n");
fz_write_string(ctx, out, "</line>\n");
}
fz_write_string(ctx, out, "</block>\n");
break;
case FZ_STEXT_BLOCK_IMAGE:
fz_write_printf(ctx, out, "<image bbox=\"%g %g %g %g\" />\n",
block->bbox.x0, block->bbox.y0, block->bbox.x1, block->bbox.y1);
break;
case FZ_STEXT_BLOCK_STRUCT:
fz_write_printf(ctx, out, "<struct idx=\"%d\"", block->u.s.index);
if (block->u.s.down)
fz_write_printf(ctx, out, " raw=\"%s\" std=\"%s\"",
block->u.s.down->raw, fz_structure_to_string(block->u.s.down->standard));
fz_write_printf(ctx, out, ">\n");
if (block->u.s.down)
as_xml(ctx, block->u.s.down->first_block, out);
fz_write_printf(ctx, out, "</struct>\n");
break;
case FZ_STEXT_BLOCK_VECTOR:
fz_write_printf(ctx, out, "<vector bbox=\"%g %g %g %g\" stroke=\"%d\" argb=\"%08x\"/>\n",
block->bbox.x0, block->bbox.y0, block->bbox.x1, block->bbox.y1,
!!block->u.v.stroked, block->u.v.argb);
break;
case FZ_STEXT_BLOCK_GRID:
fz_write_printf(ctx, out, "<grid xpos=\"");
for (i = 0; i < block->u.b.xs->len; i++)
fz_write_printf(ctx, out, "%g ", block->u.b.xs->list[i].pos);
fz_write_printf(ctx, out, "\" xuncertainty=\"");
for (i = 0; i < block->u.b.xs->len; i++)
fz_write_printf(ctx, out, "%d ", block->u.b.xs->list[i].uncertainty);
fz_write_printf(ctx, out, "\" xmaxuncertainty=\"%d\" ypos=\"", block->u.b.xs->max_uncertainty);
for (i = 0; i < block->u.b.ys->len; i++)
fz_write_printf(ctx, out, "%g ", block->u.b.ys->list[i].pos);
fz_write_printf(ctx, out, "\" yuncertainty=\"");
for (i = 0; i < block->u.b.ys->len; i++)
fz_write_printf(ctx, out, "%d ", block->u.b.ys->list[i].uncertainty);
fz_write_printf(ctx, out, "\" ymaxuncertainty=\"%d\" />\n", block->u.b.ys->max_uncertainty);
break;
}
block = block->next;
}
}
void
fz_print_stext_page_as_xml(fz_context *ctx, fz_output *out, fz_stext_page *page, int id)
{
fz_write_printf(ctx, out, "<page id=\"page%d\" width=\"%g\" height=\"%g\">\n", id,
page->mediabox.x1 - page->mediabox.x0,
page->mediabox.y1 - page->mediabox.y0);
as_xml(ctx, page->first_block, out);
fz_write_string(ctx, out, "</page>\n");
}
/* JSON dump */
static void
as_json(fz_context *ctx, fz_stext_block *block, fz_output *out, float scale)
{
fz_stext_line *line;
fz_stext_char *ch;
int comma = 0;
while (block)
{
if (comma)
fz_write_string(ctx, out, ",");
comma = 1;
switch (block->type)
{
case FZ_STEXT_BLOCK_TEXT:
fz_write_printf(ctx, out, "{%q:%q,", "type", "text");
fz_write_printf(ctx, out, "%q:{", "bbox");
fz_write_printf(ctx, out, "%q:%d,", "x", (int)(block->bbox.x0 * scale));
fz_write_printf(ctx, out, "%q:%d,", "y", (int)(block->bbox.y0 * scale));
fz_write_printf(ctx, out, "%q:%d,", "w", (int)((block->bbox.x1 - block->bbox.x0) * scale));
fz_write_printf(ctx, out, "%q:%d},", "h", (int)((block->bbox.y1 - block->bbox.y0) * scale));
fz_write_printf(ctx, out, "%q:[", "lines");
for (line = block->u.t.first_line; line; line = line->next)
{
if (line != block->u.t.first_line)
fz_write_string(ctx, out, ",");
fz_write_printf(ctx, out, "{%q:%d,", "wmode", line->wmode);
fz_write_printf(ctx, out, "%q:{", "bbox");
fz_write_printf(ctx, out, "%q:%d,", "x", (int)(line->bbox.x0 * scale));
fz_write_printf(ctx, out, "%q:%d,", "y", (int)(line->bbox.y0 * scale));
fz_write_printf(ctx, out, "%q:%d,", "w", (int)((line->bbox.x1 - line->bbox.x0) * scale));
fz_write_printf(ctx, out, "%q:%d},", "h", (int)((line->bbox.y1 - line->bbox.y0) * scale));
/* Since we force preserve-spans, the first char has the style for the entire line. */
if (line->first_char)
{
fz_font *font = line->first_char->font;
char *font_family = "sans-serif";
char *font_weight = "normal";
char *font_style = "normal";
if (fz_font_is_monospaced(ctx, font)) font_family = "monospace";
else if (fz_font_is_serif(ctx, font)) font_family = "serif";
if (fz_font_is_bold(ctx, font)) font_weight = "bold";
if (fz_font_is_italic(ctx, font)) font_style = "italic";
fz_write_printf(ctx, out, "%q:{", "font");
fz_write_printf(ctx, out, "%q:%q,", "name", fz_font_name(ctx, font));
fz_write_printf(ctx, out, "%q:%q,", "family", font_family);
fz_write_printf(ctx, out, "%q:%q,", "weight", font_weight);
fz_write_printf(ctx, out, "%q:%q,", "style", font_style);
fz_write_printf(ctx, out, "%q:%d},", "size", (int)(line->first_char->size * scale));
fz_write_printf(ctx, out, "%q:%d,", "x", (int)(line->first_char->origin.x * scale));
fz_write_printf(ctx, out, "%q:%d,", "y", (int)(line->first_char->origin.y * scale));
}
fz_write_printf(ctx, out, "%q:\"", "text");
for (ch = line->first_char; ch; ch = ch->next)
{
if (ch->c == '"' || ch->c == '\\')
fz_write_printf(ctx, out, "\\%c", ch->c);
else if (ch->c < 32)
fz_write_printf(ctx, out, "\\u%04x", ch->c);
else
fz_write_printf(ctx, out, "%C", ch->c);
}
fz_write_printf(ctx, out, "\"}");
}
fz_write_string(ctx, out, "]}");
break;
case FZ_STEXT_BLOCK_IMAGE:
fz_write_printf(ctx, out, "{%q:%q,", "type", "image");
fz_write_printf(ctx, out, "%q:{", "bbox");
fz_write_printf(ctx, out, "%q:%d,", "x", (int)(block->bbox.x0 * scale));
fz_write_printf(ctx, out, "%q:%d,", "y", (int)(block->bbox.y0 * scale));
fz_write_printf(ctx, out, "%q:%d,", "w", (int)((block->bbox.x1 - block->bbox.x0) * scale));
fz_write_printf(ctx, out, "%q:%d}}", "h", (int)((block->bbox.y1 - block->bbox.y0) * scale));
break;
case FZ_STEXT_BLOCK_STRUCT:
fz_write_printf(ctx, out, "{%q:%q,", "type", "structure");
fz_write_printf(ctx, out, "%q:%d", "index", block->u.s.index);
if (block->u.s.down)
{
fz_write_printf(ctx, out, ",%q:%q", "raw", block->u.s.down->raw);
fz_write_printf(ctx, out, ",%q:%q", "std", fz_structure_to_string(block->u.s.down->standard));
fz_write_printf(ctx, out, ",%q:[", "contents");
as_json(ctx, block->u.s.down->first_block, out, scale);
fz_write_printf(ctx, out, "]");
}
fz_write_printf(ctx, out, "}");
break;
}
block = block->next;
}
}
void
fz_print_stext_page_as_json(fz_context *ctx, fz_output *out, fz_stext_page *page, float scale)
{
fz_write_printf(ctx, out, "{%q:[", "blocks");
as_json(ctx, page->first_block, out, scale);
fz_write_string(ctx, out, "]}");
}
/* Plain text */
static void
do_as_text(fz_context *ctx, fz_output *out, fz_stext_block *first_block)
{
fz_stext_block *block;
fz_stext_line *line;
fz_stext_char *ch;
char utf[10];
int i, n;
for (block = first_block; block; block = block->next)
{
switch (block->type)
{
case FZ_STEXT_BLOCK_TEXT:
for (line = block->u.t.first_line; line; line = line->next)
{
for (ch = line->first_char; ch; ch = ch->next)
{
n = fz_runetochar(utf, ch->c);
for (i = 0; i < n; i++)
fz_write_byte(ctx, out, utf[i]);
}
fz_write_string(ctx, out, "\n");
}
fz_write_string(ctx, out, "\n");
break;
case FZ_STEXT_BLOCK_STRUCT:
if (block->u.s.down != NULL)
do_as_text(ctx, out, block->u.s.down->first_block);
break;
}
}
}
void
fz_print_stext_page_as_text(fz_context *ctx, fz_output *out, fz_stext_page *page)
{
do_as_text(ctx, out, page->first_block);
}
/* Text output writer */
enum {
FZ_FORMAT_TEXT,
FZ_FORMAT_HTML,
FZ_FORMAT_XHTML,
FZ_FORMAT_STEXT_XML,
FZ_FORMAT_STEXT_JSON,
};
typedef struct
{
fz_document_writer super;
int format;
int number;
fz_stext_options opts;
fz_stext_page *page;
fz_output *out;
} fz_text_writer;
static fz_device *
text_begin_page(fz_context *ctx, fz_document_writer *wri_, fz_rect mediabox)
{
fz_text_writer *wri = (fz_text_writer*)wri_;
float s = wri->opts.scale;
if (wri->page)
{
fz_drop_stext_page(ctx, wri->page);
wri->page = NULL;
}
wri->number++;
wri->page = fz_new_stext_page(ctx, fz_transform_rect(mediabox, fz_scale(s, s)));
return fz_new_stext_device(ctx, wri->page, &wri->opts);
}
static void
text_end_page(fz_context *ctx, fz_document_writer *wri_, fz_device *dev)
{
fz_text_writer *wri = (fz_text_writer*)wri_;
float s = wri->opts.scale;
fz_scale_stext_page(ctx, wri->page, s);
fz_try(ctx)
{
fz_close_device(ctx, dev);
switch (wri->format)
{
default:
case FZ_FORMAT_TEXT:
fz_print_stext_page_as_text(ctx, wri->out, wri->page);
break;
case FZ_FORMAT_HTML:
fz_print_stext_page_as_html(ctx, wri->out, wri->page, wri->number);
break;
case FZ_FORMAT_XHTML:
fz_print_stext_page_as_xhtml(ctx, wri->out, wri->page, wri->number);
break;
case FZ_FORMAT_STEXT_XML:
fz_print_stext_page_as_xml(ctx, wri->out, wri->page, wri->number);
break;
case FZ_FORMAT_STEXT_JSON:
if (wri->number > 1)
fz_write_string(ctx, wri->out, ",");
fz_print_stext_page_as_json(ctx, wri->out, wri->page, 1);
break;
}
}
fz_always(ctx)
{
fz_drop_device(ctx, dev);
fz_drop_stext_page(ctx, wri->page);
wri->page = NULL;
}
fz_catch(ctx)
fz_rethrow(ctx);
}
static void
text_close_writer(fz_context *ctx, fz_document_writer *wri_)
{
fz_text_writer *wri = (fz_text_writer*)wri_;
switch (wri->format)
{
case FZ_FORMAT_HTML:
fz_print_stext_trailer_as_html(ctx, wri->out);
break;
case FZ_FORMAT_XHTML:
fz_print_stext_trailer_as_xhtml(ctx, wri->out);
break;
case FZ_FORMAT_STEXT_XML:
fz_write_string(ctx, wri->out, "</document>\n");
break;
case FZ_FORMAT_STEXT_JSON:
fz_write_string(ctx, wri->out, "]\n");
break;
}
fz_close_output(ctx, wri->out);
}
static void
text_drop_writer(fz_context *ctx, fz_document_writer *wri_)
{
fz_text_writer *wri = (fz_text_writer*)wri_;
fz_drop_stext_page(ctx, wri->page);
fz_drop_output(ctx, wri->out);
}
fz_document_writer *
fz_new_text_writer_with_output(fz_context *ctx, const char *format, fz_output *out, const char *options)
{
fz_text_writer *wri = NULL;
fz_var(wri);
fz_try(ctx)
{
wri = fz_new_derived_document_writer(ctx, fz_text_writer, text_begin_page, text_end_page, text_close_writer, text_drop_writer);
fz_parse_stext_options(ctx, &wri->opts, options);
wri->format = FZ_FORMAT_TEXT;
if (!strcmp(format, "text"))
wri->format = FZ_FORMAT_TEXT;
else if (!strcmp(format, "html"))
wri->format = FZ_FORMAT_HTML;
else if (!strcmp(format, "xhtml"))
wri->format = FZ_FORMAT_XHTML;
else if (!strcmp(format, "stext"))
wri->format = FZ_FORMAT_STEXT_XML;
else if (!strcmp(format, "stext.xml"))
wri->format = FZ_FORMAT_STEXT_XML;
else if (!strcmp(format, "stext.json"))
{
wri->format = FZ_FORMAT_STEXT_JSON;
wri->opts.flags |= FZ_STEXT_PRESERVE_SPANS;
}
wri->out = out;
switch (wri->format)
{
case FZ_FORMAT_HTML:
fz_print_stext_header_as_html(ctx, wri->out);
break;
case FZ_FORMAT_XHTML:
fz_print_stext_header_as_xhtml(ctx, wri->out);
break;
case FZ_FORMAT_STEXT_XML:
fz_write_string(ctx, wri->out, "<?xml version=\"1.0\"?>\n");
fz_write_string(ctx, wri->out, "<document>\n");
break;
case FZ_FORMAT_STEXT_JSON:
fz_write_string(ctx, wri->out, "[");
break;
}
}
fz_catch(ctx)
{
fz_drop_output(ctx, out);
fz_free(ctx, wri);
fz_rethrow(ctx);
}
return (fz_document_writer*)wri;
}
fz_document_writer *
fz_new_text_writer(fz_context *ctx, const char *format, const char *path, const char *options)
{
fz_output *out = fz_new_output_with_path(ctx, path ? path : "out.txt", 0);
return fz_new_text_writer_with_output(ctx, format, out, options);
}
|