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 1051 1052 1053 1054 1055 1056 1057 1058 1059 1060 1061 1062 1063 1064 1065 1066 1067 1068 1069 1070 1071 1072 1073 1074 1075 1076 1077 1078 1079 1080 1081 1082 1083 1084 1085 1086 1087 1088 1089 1090 1091 1092 1093 1094 1095 1096 1097 1098 1099 1100 1101 1102 1103 1104 1105 1106 1107 1108 1109 1110 1111 1112 1113 1114 1115 1116 1117 1118 1119 1120 1121 1122 1123 1124 1125 1126 1127 1128 1129 1130 1131 1132 1133 1134 1135 1136 1137 1138 1139 1140 1141 1142 1143 1144 1145 1146 1147 1148 1149 1150 1151 1152 1153 1154 1155 1156 1157 1158 1159 1160 1161 1162 1163 1164 1165 1166 1167 1168 1169 1170 1171 1172 1173 1174 1175 1176 1177 1178 1179 1180 1181 1182 1183 1184 1185 1186 1187 1188 1189 1190 1191 1192 1193 1194 1195 1196 1197 1198 1199 1200 1201 1202 1203 1204 1205 1206 1207 1208 1209 1210 1211 1212 1213 1214 1215 1216 1217 1218 1219 1220 1221 1222 1223 1224 1225 1226 1227 1228 1229 1230 1231 1232 1233 1234 1235 1236 1237 1238 1239 1240 1241 1242 1243 1244 1245 1246 1247 1248 1249 1250 1251 1252 1253 1254 1255
|
// November 8, 2006
//
// PLplot driver for SVG 1.1 (http://www.w3.org/Graphics/SVG/)
//
// Copyright (C) 2006 Hazen Babcock
//
// This file is part of PLplot.
//
// PLplot is free software; you can redistribute it and/or modify
// it under the terms of the GNU Library General Public License as published
// by the Free Software Foundation; either version 2 of the License, or
// (at your option) any later version.
//
// PLplot 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 Library General Public License for more details.
//
// You should have received a copy of the GNU Library General Public License
// along with PLplot; if not, write to the Free Software
// Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
//
//
//---------------------------------------------
// Header files, defines and local variables
// ---------------------------------------------
#include <stdarg.h>
#include <math.h>
// PLplot header files
#include "plplotP.h"
#include "drivers.h"
// constants
#define SVG_Default_X 720
#define SVG_Default_Y 540
#define POINTS_PER_INCH 72
#define MAX_STRING_LEN 1000
// This has been generated empirically by looking carefully at results from
// examples 1 and 2.
#define FONT_SIZE_RATIO 1.34
#define FONT_SHIFT_RATIO 0.705
#define FONT_SHIFT_OFFSET 0.5
// local variables
PLDLLIMPEXP_DRIVER const char* plD_DEVICE_INFO_svg = "svg:Scalable Vector Graphics (SVG 1.1):1:svg:57:svg\n";
static int already_warned = 0;
static int text_clipping = 1;
static DrvOpt svg_options[] = { { "text_clipping", DRV_INT, &text_clipping, "Use text clipping (text_clipping=0|1)" } };
typedef struct
{
short textClipping;
int canvasXSize;
int canvasYSize;
PLFLT scale;
int svgIndent;
FILE *svgFile;
int gradient_index;
// char curColor[7];
} SVG;
// font stuff
// Debugging extras
//-----------------------------------------------
// function declarations
// -----------------------------------------------
// Functions for writing XML SVG tags to a file
static void svg_open( SVG *, const char * );
static void svg_open_end( SVG * );
static void svg_attr_value( SVG *, const char *, const char * );
static void svg_attr_values( SVG *, const char *, const char *, ... );
static void svg_close( SVG *, const char * );
static void svg_general( SVG *, const char * );
static void svg_indent( SVG * );
static void svg_stroke_width( PLStream * );
static void svg_stroke_color( PLStream * );
static void svg_fill_color( PLStream * );
static void svg_fill_background_color( PLStream * );
static int svg_family_check( PLStream * );
// General
static void poly_line( PLStream *, short *, short *, PLINT, short );
static void gradient( PLStream *, short *, short *, PLINT );
static void write_hex( FILE *, unsigned char );
static void write_unicode( FILE *, PLUNICODE );
static void specify_font( FILE *, PLUNICODE );
// String processing
static void proc_str( PLStream *, EscText * );
// PLplot interface functions
void plD_dispatch_init_svg( PLDispatchTable *pdt );
void plD_init_svg( PLStream * );
void plD_line_svg( PLStream *, short, short, short, short );
void plD_polyline_svg( PLStream *, short *, short *, PLINT );
void plD_eop_svg( PLStream * );
void plD_bop_svg( PLStream * );
void plD_tidy_svg( PLStream * );
void plD_state_svg( PLStream *, PLINT );
void plD_esc_svg( PLStream *, PLINT, void * );
//--------------------------------------------------------------------------
// dispatch_init_init()
//
// Initialize device dispatch table
//--------------------------------------------------------------------------
void plD_dispatch_init_svg( PLDispatchTable *pdt )
{
#ifndef ENABLE_DYNDRIVERS
pdt->pl_MenuStr = "Scalable Vector Graphics (SVG 1.1)";
pdt->pl_DevName = "svg";
#endif
pdt->pl_type = plDevType_FileOriented;
pdt->pl_seq = 57;
pdt->pl_init = (plD_init_fp) plD_init_svg;
pdt->pl_line = (plD_line_fp) plD_line_svg;
pdt->pl_polyline = (plD_polyline_fp) plD_polyline_svg;
pdt->pl_eop = (plD_eop_fp) plD_eop_svg;
pdt->pl_bop = (plD_bop_fp) plD_bop_svg;
pdt->pl_tidy = (plD_tidy_fp) plD_tidy_svg;
pdt->pl_state = (plD_state_fp) plD_state_svg;
pdt->pl_esc = (plD_esc_fp) plD_esc_svg;
}
//--------------------------------------------------------------------------
// svg_init()
//
// Initialize device
//--------------------------------------------------------------------------
void plD_init_svg( PLStream *pls )
{
SVG *aStream;
pls->termin = 0; // not an interactive device
pls->color = 1; // supports color
pls->width = 1;
pls->verbose = 1;
pls->bytecnt = 0;
//pls->debug = 1;
pls->dev_text = 1; // handles text
pls->dev_unicode = 1; // wants text as unicode
pls->page = 0;
pls->dev_fill0 = 1; // driver generates solid fills
pls->dev_fill1 = 0; // Use PLplot core fallback for pattern fills
pls->dev_gradient = 1; // driver renders gradient
pls->graphx = GRAPHICS_MODE;
if ( !pls->colorset )
pls->color = 1;
// Initialize family file info
plFamInit( pls );
// Prompt for a file name if not already set
plOpenFile( pls );
// Allocate and initialize device-specific data
if ( pls->dev != NULL )
free( (void *) pls->dev );
pls->dev = calloc( 1, (size_t) sizeof ( SVG ) );
if ( pls->dev == NULL )
plexit( "plD_init_svg: Out of memory." );
aStream = (SVG *) pls->dev;
// Set the bounds for plotting in points (unit of 1/72 of an inch). Default is SVG_Default_X points x SVG_Default_Y points unless otherwise specified by plspage or -geometry option.
if ( pls->xlength <= 0 || pls->ylength <= 0 )
{
aStream->canvasXSize = SVG_Default_X;
aStream->canvasYSize = SVG_Default_Y;
}
else
{
aStream->canvasXSize = pls->xlength;
aStream->canvasYSize = pls->ylength;
}
// Calculate ratio of (larger) internal PLplot coordinates to external
// coordinates used for svg file.
if ( aStream->canvasXSize > aStream->canvasYSize )
aStream->scale = (PLFLT) ( PIXELS_X - 1 ) / (PLFLT) aStream->canvasXSize;
else
aStream->scale = (PLFLT) PIXELS_Y / (PLFLT) aStream->canvasYSize;
plP_setphy( (PLINT) 0, (PLINT) ( aStream->scale * aStream->canvasXSize ), (PLINT) 0, (PLINT) ( aStream->scale * aStream->canvasYSize ) ); // Scaled points.
plP_setpxl( aStream->scale * POINTS_PER_INCH / 25.4, aStream->scale * POINTS_PER_INCH / 25.4 ); // Scaled points/mm.
aStream->svgFile = pls->OutFile;
// Handle the text clipping option
plParseDrvOpts( svg_options );
// Turn on text clipping if the user desires this
if ( text_clipping )
{
aStream->textClipping = 1;
}
aStream->textClipping = (short) text_clipping;
aStream->svgIndent = 0;
aStream->gradient_index = 0;
svg_general( aStream, "<?xml version=\"1.0\" encoding=\"UTF-8\"?>\n" );
svg_general( aStream, "<!DOCTYPE svg PUBLIC \"-//W3C//DTD SVG 1.1//EN\"\n" );
svg_general( aStream, " \"http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd\">\n" );
}
//--------------------------------------------------------------------------
// svg_bop()
//
// Set up for the next page.
//--------------------------------------------------------------------------
void plD_bop_svg( PLStream *pls )
{
SVG *aStream;
// Plot familying stuff. Not really understood, just copying gd.c
plGetFam( pls );
// n.b. pls->dev can change because of an indirect call to plD_init_svg
// from plGetFam if familying is enabled. Thus, wait to define aStream until
// now.
aStream = pls->dev;
pls->famadv = 1;
pls->page++;
if ( svg_family_check( pls ) )
{
return;
}
// write opening svg tag for the new page
svg_open( aStream, "svg" );
svg_attr_value( aStream, "xmlns", "http://www.w3.org/2000/svg" );
svg_attr_value( aStream, "xmlns:xlink", "http://www.w3.org/1999/xlink" );
svg_attr_value( aStream, "version", "1.1" );
// svg_attr_values("width", "%dcm", (int)((double)canvasXSize/POINTS_PER_INCH * 2.54));
// svg_attr_values("height", "%dcm", (int)((double)canvasYSize/POINTS_PER_INCH * 2.54));
svg_attr_values( aStream, "width", "%dpt", aStream->canvasXSize );
svg_attr_values( aStream, "height", "%dpt", aStream->canvasYSize );
svg_attr_values( aStream, "viewBox", "%d %d %d %d", 0, 0, aStream->canvasXSize, aStream->canvasYSize );
svg_general( aStream, ">\n" );
// set the background by drawing a rectangle that is the size of
// of the canvas and filling it with the background color.
svg_open( aStream, "rect" );
svg_attr_values( aStream, "x", "%d", 0 );
svg_attr_values( aStream, "y", "%d", 0 );
svg_attr_values( aStream, "width", "%d", aStream->canvasXSize );
svg_attr_values( aStream, "height", "%d", aStream->canvasYSize );
svg_attr_value( aStream, "stroke", "none" );
svg_fill_background_color( pls );
svg_open_end( aStream );
// invert the coordinate system so that PLplot graphs appear right side up
svg_open( aStream, "g" );
svg_attr_values( aStream, "transform", "matrix(1 0 0 -1 0 %d)", aStream->canvasYSize );
svg_general( aStream, ">\n" );
}
//--------------------------------------------------------------------------
// svg_line()
//
// Draw a line in the current color from (x1,y1) to (x2,y2).
//--------------------------------------------------------------------------
void plD_line_svg( PLStream *pls, short x1a, short y1a, short x2a, short y2a )
{
SVG *aStream;
aStream = pls->dev;
if ( svg_family_check( pls ) )
{
return;
}
svg_open( aStream, "polyline" );
svg_stroke_width( pls );
svg_stroke_color( pls );
svg_attr_value( aStream, "fill", "none" );
// svg_attr_value(aStream, "shape-rendering", "crispEdges");
svg_attr_values( aStream, "points", "%r,%r %r,%r", (double) x1a / aStream->scale, (double) y1a / aStream->scale, (double) x2a / aStream->scale, (double) y2a / aStream->scale );
svg_open_end( aStream );
}
//--------------------------------------------------------------------------
// svg_polyline()
//
// Draw a polyline in the current color.
//--------------------------------------------------------------------------
void plD_polyline_svg( PLStream *pls, short *xa, short *ya, PLINT npts )
{
if ( svg_family_check( pls ) )
{
return;
}
poly_line( pls, xa, ya, npts, 0 );
}
//--------------------------------------------------------------------------
// svg_eop()
//
// End of page
//--------------------------------------------------------------------------
void plD_eop_svg( PLStream *pls )
{
SVG *aStream;
aStream = pls->dev;
if ( svg_family_check( pls ) )
{
return;
}
// write the closing svg tag
svg_close( aStream, "g" );
svg_close( aStream, "svg" );
}
//--------------------------------------------------------------------------
// svg_tidy()
//
// Close graphics file or otherwise clean up.
//--------------------------------------------------------------------------
void plD_tidy_svg( PLStream *pls )
{
if ( svg_family_check( pls ) )
{
return;
}
plCloseFile( pls );
}
//--------------------------------------------------------------------------
// plD_state_svg()
//
// Handle change in PLStream state (color, pen width, fill attribute, etc).
//
// Nothing is done here because these attributes are aquired from
// PLStream for each element that is drawn.
//--------------------------------------------------------------------------
void plD_state_svg( PLStream *PL_UNUSED( pls ), PLINT PL_UNUSED( op ) )
{
}
//--------------------------------------------------------------------------
// svg_esc()
//
// Escape function.
//--------------------------------------------------------------------------
void plD_esc_svg( PLStream *pls, PLINT op, void *ptr )
{
if ( svg_family_check( pls ) )
{
return;
}
switch ( op )
{
case PLESC_FILL: // fill polygon
poly_line( pls, pls->dev_x, pls->dev_y, pls->dev_npts, 1 );
break;
case PLESC_GRADIENT: // render gradient inside polygon
gradient( pls, pls->dev_x, pls->dev_y, pls->dev_npts );
break;
case PLESC_HAS_TEXT: // render text
proc_str( pls, (EscText *) ptr );
break;
}
}
//--------------------------------------------------------------------------
// poly_line()
//
// Handles drawing filled and unfilled polygons
//--------------------------------------------------------------------------
void poly_line( PLStream *pls, short *xa, short *ya, PLINT npts, short fill )
{
int i;
SVG *aStream;
aStream = pls->dev;
svg_open( aStream, "polyline" );
if ( fill )
{
// Two adjacent regions will put non-zero width boundary strokes on top
// of each other on their common boundary. Thus, a stroke on the boundary
// of a filled region is generally a bad idea when the fill is partially
// opaque because the partial opacity of the two boundary strokes which
// are on top of each other will mutually interfere and produce a
// bad-looking result. On the other hand, for completely opaque fills
// a boundary stroke is a good idea since if it is of sufficient width
// it will keep the background from leaking through at the anti-aliased
// edges of filled regions that have a common boundary with other
// filled regions.
if ( pls->curcolor.a < 0.99 )
{
svg_attr_value( aStream, "stroke", "none" );
}
else
{
svg_stroke_width( pls );
svg_stroke_color( pls );
}
svg_fill_color( pls );
if ( pls->dev_eofill )
svg_attr_value( aStream, "fill-rule", "evenodd" );
else
svg_attr_value( aStream, "fill-rule", "nonzero" );
}
else
{
svg_stroke_width( pls );
svg_stroke_color( pls );
svg_attr_value( aStream, "fill", "none" );
}
//svg_attr_value(aStream, "shape-rendering", "crispEdges");
svg_indent( aStream );
fprintf( aStream->svgFile, "points=\"" );
for ( i = 0; i < npts; i++ )
{
fprintf( aStream->svgFile, "%.2f,%.2f ", (double) xa[i] / aStream->scale, (double) ya[i] / aStream->scale );
if ( ( ( i + 1 ) % 10 ) == 0 )
{
fprintf( aStream->svgFile, "\n" );
svg_indent( aStream );
}
}
fprintf( aStream->svgFile, "\"/>\n" );
aStream->svgIndent -= 2;
}
//--------------------------------------------------------------------------
// gradient()
//
// Draws gradient
//--------------------------------------------------------------------------
void gradient( PLStream *pls, short *xa, short *ya, PLINT npts )
{
int i;
// 27 should be the maximum needed below, but be generous.
char buffer[50];
SVG *aStream;
aStream = pls->dev;
svg_open( aStream, "g>" );
svg_open( aStream, "defs>" );
svg_open( aStream, "linearGradient" );
// Allows ~2^31 unique gradient id's, gradient_index incremented below.
sprintf( buffer, "MyGradient%010d", aStream->gradient_index );
svg_attr_value( aStream, "id", buffer );
svg_attr_value( aStream, "gradientUnits", "userSpaceOnUse" );
sprintf( buffer, "%.2f", pls->xgradient[0] / aStream->scale );
svg_attr_value( aStream, "x1", buffer );
sprintf( buffer, "%.2f", pls->ygradient[0] / aStream->scale );
svg_attr_value( aStream, "y1", buffer );
sprintf( buffer, "%.2f", pls->xgradient[1] / aStream->scale );
svg_attr_value( aStream, "x2", buffer );
sprintf( buffer, "%.2f", pls->ygradient[1] / aStream->scale );
svg_attr_value( aStream, "y2", buffer );
svg_general( aStream, ">\n" );
for ( i = 0; i < pls->ncol1; i++ )
{
svg_indent( aStream );
fprintf( aStream->svgFile, "<stop offset=\"%.3f\" ",
(double) i / (double) ( pls->ncol1 - 1 ) );
fprintf( aStream->svgFile, "stop-color=\"#" );
write_hex( aStream->svgFile, pls->cmap1[i].r );
write_hex( aStream->svgFile, pls->cmap1[i].g );
write_hex( aStream->svgFile, pls->cmap1[i].b );
fprintf( aStream->svgFile, "\" " );
fprintf( aStream->svgFile, "stop-opacity=\"%.3f\"/>\n", pls->cmap1[i].a );
}
svg_close( aStream, "linearGradient" );
svg_close( aStream, "defs" );
svg_open( aStream, "polyline" );
sprintf( buffer, "url(#MyGradient%010d)", aStream->gradient_index++ );
svg_attr_value( aStream, "fill", buffer );
svg_indent( aStream );
fprintf( aStream->svgFile, "points=\"" );
for ( i = 0; i < npts; i++ )
{
fprintf( aStream->svgFile, "%.2f,%.2f ", (double) xa[i] / aStream->scale, (double) ya[i] / aStream->scale );
if ( ( ( i + 1 ) % 10 ) == 0 )
{
fprintf( aStream->svgFile, "\n" );
svg_indent( aStream );
}
}
fprintf( aStream->svgFile, "\"/>\n" );
aStream->svgIndent -= 2;
svg_close( aStream, "g" );
}
//--------------------------------------------------------------------------
// proc_str()
//
// Processes strings for display.
//
// NOTE:
//
// (1) This was tested on Firefox and Camino where it seemed to display
// text properly. However, it isn't obvious to me that these browsers
// conform to the specification. Basically the issue is that some of
// the text properties (i.e. dy) that you specify inside a tspan element
// remain in force until the end of the text element. It would seem to
// me that they should only apply inside the tspan tag. To get around
// this, and because it was easier anyway, I used what is essentially
// a list of tspan tags rather than a tree of tspan tags. Perhaps
// better described as a tree with one branch?
//
// (2) To deal with the some whitespace annoyances, the entire text
// element must be written on a single line. If there are lots of
// format characters then this line might end up being too long
// for some SVG implementations.
//
// (3) Text placement is not ideal. Vertical offset seems to be
// particularly troublesome.
//
// (4) See additional notes in specify_font re. to sans / serif
//
//--------------------------------------------------------------------------
void proc_str( PLStream *pls, EscText *args )
{
char plplot_esc;
static short which_clip = 0;
short i;
short totalTags = 1;
short ucs4Len = (short) args->unicode_array_len;
double ftHt, scaled_offset, scaled_ftHt;
PLUNICODE fci;
PLINT rcx[4], rcy[4];
static PLINT prev_rcx[4], prev_rcy[4];
PLFLT rotation, shear, stride, cos_rot, sin_rot, sin_shear, cos_shear;
PLFLT t[4];
int glyph_size, sum_glyph_size;
short if_write;
// PLFLT *t = args->xform;
PLUNICODE *ucs4 = args->unicode_array;
SVG *aStream;
PLFLT old_sscale, sscale, old_soffset, soffset, old_dup, ddup;
PLINT level;
PLINT same_clip;
// check that we got unicode
if ( ucs4Len == 0 )
{
printf( "Non unicode string passed to SVG driver, ignoring\n" );
return;
}
// get plplot escape character and the current font
plgesc( &plplot_esc );
plgfci( &fci );
// determine the font height in points.
ftHt = FONT_SIZE_RATIO * pls->chrht * POINTS_PER_INCH / 25.4;
// Setup & apply text clipping area if desired
aStream = (SVG *) pls->dev;
if ( aStream->textClipping )
{
// Use PLplot core routine difilt_clip to appropriately
// transform the coordinates of the clipping rectangle
difilt_clip( rcx, rcy );
same_clip = TRUE;
if ( which_clip == 0 )
{
same_clip = FALSE;
}
else
{
for ( i = 0; i < 4; i++ )
{
if ( rcx[i] != prev_rcx[i] ||
rcy[i] != prev_rcy[i] )
same_clip = FALSE;
}
}
if ( !same_clip )
{
svg_open( aStream, "clipPath" );
svg_attr_values( aStream, "id", "text-clipping%d", which_clip );
svg_general( aStream, ">\n" );
// Output a polygon to represent the clipping region.
svg_open( aStream, "polygon" );
svg_attr_values( aStream,
"points",
"%f,%f %f,%f %f,%f %f,%f",
( (PLFLT) rcx[0] ) / aStream->scale,
( (PLFLT) rcy[0] ) / aStream->scale,
( (PLFLT) rcx[1] ) / aStream->scale,
( (PLFLT) rcy[1] ) / aStream->scale,
( (PLFLT) rcx[2] ) / aStream->scale,
( (PLFLT) rcy[2] ) / aStream->scale,
( (PLFLT) rcx[3] ) / aStream->scale,
( (PLFLT) rcy[3] ) / aStream->scale );
svg_open_end( aStream );
svg_close( aStream, "clipPath" );
for ( i = 0; i < 4; i++ )
{
prev_rcx[i] = rcx[i];
prev_rcy[i] = rcy[i];
}
which_clip++;
}
svg_open( aStream, "g" );
svg_attr_values( aStream, "clip-path",
"url(#text-clipping%d)", which_clip - 1 );
svg_general( aStream, ">\n" );
}
// This draws the clipping region on the screen which can
// be very helpful for debugging.
//
// svg_open(aStream, "polygon");
// svg_attr_values(aStream,
// "points",
// "%f,%f %f,%f %f,%f %f,%f",
// ((PLFLT)rcx[0])/aStream->scale,
// ((PLFLT)rcy[0])/aStream->scale,
// ((PLFLT)rcx[1])/aStream->scale,
// ((PLFLT)rcy[1])/aStream->scale,
// ((PLFLT)rcx[2])/aStream->scale,
// ((PLFLT)rcy[2])/aStream->scale,
// ((PLFLT)rcx[3])/aStream->scale,
// ((PLFLT)rcy[3])/aStream->scale);
// svg_stroke_width(pls);
// svg_stroke_color(pls);
// svg_attr_value(aStream, "fill", "none");
// svg_open_end(aStream);
//
// Calculate the tranformation matrix for SVG based on the
// transformation matrix provided by PLplot.
plRotationShear( args->xform, &rotation, &shear, &stride );
// N.B. Experimentally, I (AWI) have found the svg rotation angle is
// the negative of the libcairo rotation angle, and the svg shear angle
// is pi minus the libcairo shear angle.
rotation -= pls->diorot * PI / 2.0;
cos_rot = cos( rotation );
sin_rot = -sin( rotation );
sin_shear = sin( shear );
cos_shear = -cos( shear );
t[0] = cos_rot * stride;
t[1] = -sin_rot * stride;
t[2] = cos_rot * sin_shear + sin_rot * cos_shear;
t[3] = -sin_rot * sin_shear + cos_rot * cos_shear;
//--------------
// open text tag
// --------------
svg_open( aStream, "text" );
svg_attr_value( aStream, "dominant-baseline", "no-change" );
// set font color
svg_fill_color( pls );
// white space preserving mode
svg_attr_value( aStream, "xml:space", "preserve" );
// set the font size
svg_attr_values( aStream, "font-size", "%d", (int) ftHt );
// Apply coordinate transform for text display.
// The transformation also defines the location of the text in x and y.
svg_attr_values( aStream, "transform", "matrix(%f %f %f %f %f %f)",
t[0], t[1], t[2], t[3],
(double) ( args->x / aStream->scale ),
(double) ( args->y / aStream->scale ) );
//----------------------------------------------------------
// Write the text with formatting
// We just keep stacking up tspan tags, then close them all
// after we have written out all of the text.
// ----------------------------------------------------------
// For if_write = 0, we write nothing and instead accumulate the
// sum_glyph_size from the fontsize of the individual glyphs which
// is then used to figure out the initial x position from text-anchor and
// args->just that is used to write out the SVG xml for if_write = 1.
glyph_size = (int) ftHt;
sum_glyph_size = 0;
if_write = 0;
while ( if_write < 2 )
{
if ( if_write == 1 )
{
//printf("number of characters = %f\n", sum_glyph_size/ftHt);
// The above coordinate transform defines the _raw_ x position of the
// text without justification so this attribute value depends on
// text-anchor and args->just*sum_glyph_size
// N.B. sum_glyph_size calculation only correct for monospaced fonts
// so generally sum_glyph_size will be overestimated by various amounts
// depending on what glyphs are to be rendered, the font, etc. However,
// this correction is differential respect to the end points or the
// middle so you should be okay so long as you don't deviate too far
// from those anchor points.
if ( args->just < 0.33 )
{
svg_attr_value( aStream, "text-anchor", "start" ); // left justification
svg_attr_values( aStream, "x", "%f", (double) ( -args->just * sum_glyph_size ) );
}
else if ( args->just > 0.66 )
{
svg_attr_value( aStream, "text-anchor", "end" ); // right justification
svg_attr_values( aStream, "x", "%f", (double) ( ( 1. - args->just ) * sum_glyph_size ) );
}
else
{
svg_attr_value( aStream, "text-anchor", "middle" ); // center
svg_attr_values( aStream, "x", "%f", (double) ( ( 0.5 - args->just ) * sum_glyph_size ) );
}
// The text goes at zero in y since the above
// coordinate transform defines the y position of the text
svg_attr_values( aStream, "y", "%f",
FONT_SHIFT_RATIO * 0.5 * ftHt +
FONT_SHIFT_OFFSET );
fprintf( aStream->svgFile, ">" );
// specify the initial font
specify_font( aStream->svgFile, fci );
}
i = 0;
scaled_ftHt = ftHt;
level = 0;
ddup = 0.;
while ( i < ucs4Len )
{
if ( ucs4[i] < PL_FCI_MARK ) // not a font change
{
if ( ucs4[i] != (PLUNICODE) plplot_esc ) // a character to display
{
if ( if_write )
{
write_unicode( aStream->svgFile, ucs4[i] );
}
else
{
sum_glyph_size += glyph_size;
}
i++;
continue;
}
i++;
if ( ucs4[i] == (PLUNICODE) plplot_esc ) // a escape character to display
{
if ( if_write )
{
write_unicode( aStream->svgFile, ucs4[i] );
}
else
{
sum_glyph_size += glyph_size;
}
i++;
continue;
}
else
{
// super/subscript logic follows that in plstr routine (plsym.c)
// for Hershey fonts. Factor of FONT_SHIFT_RATIO*0.80 is empirical
// adjustment.
if ( ucs4[i] == (PLUNICODE) 'u' ) // Superscript
{
plP_script_scale( TRUE, &level,
&old_sscale, &sscale, &old_soffset, &soffset );
// The correction for the difference in magnitude
// between the baseline and middle coordinate systems
// for superscripts should be
// 0.5*(base font size - superscript/subscript font size).
old_dup = ddup;
ddup = 0.5 * ( 1.0 - sscale );
if ( level <= 0 )
{
scaled_offset = FONT_SHIFT_RATIO * ftHt * ( 0.80 * ( soffset - old_soffset ) - ( ddup - old_dup ) );
}
else
{
scaled_offset = -FONT_SHIFT_RATIO * ftHt * ( 0.80 * ( soffset - old_soffset ) + ( ddup - old_dup ) );
}
scaled_ftHt = sscale * ftHt;
if ( if_write )
{
totalTags++;
fprintf( aStream->svgFile, "<tspan dy=\"%f\" font-size=\"%d\">", scaled_offset, (int) scaled_ftHt );
}
else
{
glyph_size = (int) scaled_ftHt;
}
}
if ( ucs4[i] == (PLUNICODE) 'd' ) // Subscript
{
plP_script_scale( FALSE, &level,
&old_sscale, &sscale, &old_soffset, &soffset );
// The correction for the difference in magnitude
// between the baseline and middle coordinate systems
// for superscripts should be
// 0.5*(base font size - superscript/subscript font size).
old_dup = ddup;
ddup = 0.5 * ( 1.0 - sscale );
if ( level < 0 )
{
scaled_offset = FONT_SHIFT_RATIO * ftHt * ( 0.80 * ( soffset - old_soffset ) - ( ddup - old_dup ) );
}
else
{
scaled_offset = -FONT_SHIFT_RATIO * ftHt * ( 0.80 * ( soffset - old_soffset ) + ( ddup - old_dup ) );
}
scaled_ftHt = sscale * ftHt;
if ( if_write )
{
totalTags++;
fprintf( aStream->svgFile, "<tspan dy=\"%f\" font-size=\"%d\">", scaled_offset, (int) scaled_ftHt );
}
else
{
glyph_size = (int) scaled_ftHt;
}
}
i++;
}
}
else // a font change
{
if ( if_write )
{
specify_font( aStream->svgFile, ucs4[i] );
totalTags++;
}
i++;
}
}
if_write++;
}
//----------------------------------------------
// close out all the tspan tags and the text tag
// ----------------------------------------------
for ( i = 0; i < totalTags; i++ )
{
fprintf( aStream->svgFile, "</tspan>" );
}
// The following commented out (by AWI) because it is a bad idea to
// put line ends in the middle of a text tag. This was the key to
// all the text rendering issues we had.
//fprintf(svgFile,"\n");
// For the same reason use fprintf and svgIndent -= 2;
// to close the text tag rather than svg_close("text"); since
// we don't want indentation spaces entering the text.
// svg_close("text");
fprintf( aStream->svgFile, "</text>\n" );
aStream->svgIndent -= 2;
if ( aStream->textClipping )
{
svg_close( aStream, "g" );
}
}
//--------------------------------------------------------------------------
// svg_open ()
//
// Used to open a new XML expression, sets the indent level appropriately
//--------------------------------------------------------------------------
void svg_open( SVG *aStream, const char *tag )
{
svg_indent( aStream );
fprintf( aStream->svgFile, "<%s\n", tag );
aStream->svgIndent += 2;
}
//--------------------------------------------------------------------------
// svg_open_end ()
//
// Used to end the opening of a new XML expression i.e. add
// the final ">".
//--------------------------------------------------------------------------
void svg_open_end( SVG *aStream )
{
svg_indent( aStream );
fprintf( aStream->svgFile, "/>\n" );
aStream->svgIndent -= 2;
}
//--------------------------------------------------------------------------
// svg_attr_value ()
//
// Prints two strings to svgFile as a XML attribute value pair
// i.e. foo="bar"
//--------------------------------------------------------------------------
void svg_attr_value( SVG *aStream, const char *attribute, const char *value )
{
svg_indent( aStream );
fprintf( aStream->svgFile, "%s=\"%s\"\n", attribute, value );
}
//--------------------------------------------------------------------------
// svg_attr_values ()
//
// Prints a string and a bunch of numbers / strings as a XML attribute
// value pair i.e. foo="0 10 1.0 5.3 bar"
//
// This function is derived from an example in
// "The C Programming Language" by Kernighan and Ritchie.
//
//--------------------------------------------------------------------------
void svg_attr_values( SVG *aStream, const char *attribute, const char *format, ... )
{
va_list ap;
const char *p, *sval;
int ival;
double dval;
svg_indent( aStream );
fprintf( aStream->svgFile, "%s=\"", attribute );
va_start( ap, format );
for ( p = format; *p; p++ )
{
if ( *p != '%' )
{
fprintf( aStream->svgFile, "%c", *p );
continue;
}
switch ( *++p )
{
case 'd':
ival = va_arg( ap, int );
fprintf( aStream->svgFile, "%d", ival );
break;
case 'f':
dval = va_arg( ap, double );
fprintf( aStream->svgFile, "%f", dval );
break;
case 'r':
// r is non-standard, but use it here to format rounded value
dval = va_arg( ap, double );
fprintf( aStream->svgFile, "%.2f", dval );
break;
case 's':
sval = va_arg( ap, char * );
fprintf( aStream->svgFile, "%s", sval );
break;
default:
fprintf( aStream->svgFile, "%c", *p );
break;
}
}
fprintf( aStream->svgFile, "\"\n" );
va_end( ap );
}
//--------------------------------------------------------------------------
// svg_close ()
//
// Used to close a XML expression, sets the indent level appropriately
//--------------------------------------------------------------------------
void svg_close( SVG *aStream, const char *tag )
{
aStream->svgIndent -= 2;
svg_indent( aStream );
if ( strlen( tag ) > 0 )
{
fprintf( aStream->svgFile, "</%s>\n", tag );
}
else
{
fprintf( aStream->svgFile, "/>\n" );
}
}
//--------------------------------------------------------------------------
// svg_general ()
//
// Used to print any text into the svgFile
//--------------------------------------------------------------------------
void svg_general( SVG *aStream, const char *text )
{
svg_indent( aStream );
fprintf( aStream->svgFile, "%s", text );
}
//--------------------------------------------------------------------------
// svg_indent ()
//
// Indents properly based on the current indent level
//--------------------------------------------------------------------------
void svg_indent( SVG *aStream )
{
short i;
for ( i = 0; i < aStream->svgIndent; i++ )
{
fprintf( aStream->svgFile, " " );
}
}
//--------------------------------------------------------------------------
// svg_stroke_width ()
//
// sets the stroke width based on the current width
//--------------------------------------------------------------------------
void svg_stroke_width( PLStream *pls )
{
SVG *aStream;
aStream = pls->dev;
svg_indent( aStream );
fprintf( aStream->svgFile, "stroke-width=\"%e\"\n", pls->width );
}
//--------------------------------------------------------------------------
// svg_stroke_color ()
//
// sets the stroke color based on the current color
//--------------------------------------------------------------------------
void svg_stroke_color( PLStream *pls )
{
SVG *aStream;
aStream = pls->dev;
svg_indent( aStream );
fprintf( aStream->svgFile, "stroke=\"#" );
write_hex( aStream->svgFile, pls->curcolor.r );
write_hex( aStream->svgFile, pls->curcolor.g );
write_hex( aStream->svgFile, pls->curcolor.b );
fprintf( aStream->svgFile, "\"\n" );
svg_indent( aStream );
fprintf( aStream->svgFile, "stroke-opacity=\"%f\"\n", pls->curcolor.a );
}
//--------------------------------------------------------------------------
// svg_fill_color ()
//
// sets the fill color based on the current color
//--------------------------------------------------------------------------
void svg_fill_color( PLStream *pls )
{
SVG *aStream;
aStream = pls->dev;
svg_indent( aStream );
fprintf( aStream->svgFile, "fill=\"#" );
write_hex( aStream->svgFile, pls->curcolor.r );
write_hex( aStream->svgFile, pls->curcolor.g );
write_hex( aStream->svgFile, pls->curcolor.b );
fprintf( aStream->svgFile, "\"\n" );
svg_indent( aStream );
fprintf( aStream->svgFile, "fill-opacity=\"%f\"\n", pls->curcolor.a );
}
//--------------------------------------------------------------------------
// svg_fill_background_color ()
//
// sets the background fill color based on the current background color
//--------------------------------------------------------------------------
void svg_fill_background_color( PLStream *pls )
{
SVG *aStream;
aStream = pls->dev;
svg_indent( aStream );
fprintf( aStream->svgFile, "fill=\"#" );
write_hex( aStream->svgFile, pls->cmap0[0].r );
write_hex( aStream->svgFile, pls->cmap0[0].g );
write_hex( aStream->svgFile, pls->cmap0[0].b );
fprintf( aStream->svgFile, "\"\n" );
svg_indent( aStream );
fprintf( aStream->svgFile, "fill-opacity=\"%f\"\n", pls->cmap0[0].a );
}
//--------------------------------------------------------------------------
// svg_family_check ()
//
// support function to help supress more than one page if family file
// output not specified by the user (e.g., with the -fam command-line option).
//--------------------------------------------------------------------------
int svg_family_check( PLStream *pls )
{
if ( pls->family || pls->page == 1 )
{
return 0;
}
else
{
if ( !already_warned )
{
already_warned = 1;
plwarn( "All pages after the first skipped because family file output not specified.\n" );
}
return 1;
}
}
//--------------------------------------------------------------------------
// write_hex ()
//
// writes a unsigned char as an appropriately formatted hex value
//--------------------------------------------------------------------------
void write_hex( FILE *svgFile, unsigned char val )
{
if ( val < 16 )
{
fprintf( svgFile, "0%X", val );
}
else
{
fprintf( svgFile, "%X", val );
}
}
//--------------------------------------------------------------------------
// write_unicode ()
//
// writes a unicode character, appropriately formatted (i.e. &#xNNN)
// with invalid xml characters replaced by ' '.
//--------------------------------------------------------------------------
void write_unicode( FILE *svgFile, PLUNICODE ucs4_char )
{
if ( ucs4_char >= ' ' || ucs4_char == '\t' || ucs4_char == '\n' || ucs4_char == '\r' )
fprintf( svgFile, "&#x%x;", ucs4_char );
else
fprintf( svgFile, "&#x%x;", ' ' );
}
//--------------------------------------------------------------------------
// specify_font ()
//
// Note:
// We don't actually specify a font, just the fonts properties.
// The hope is that this will give the display program the freedom
// to choose the font with the glyphs that it needs to display
// the text.
//
// Known Issues:
// (1) On OS-X 10.4 with Firefox and Camino the "serif" font-family
// looks more like the "italic" font-style.
//
//--------------------------------------------------------------------------
void specify_font( FILE *svgFile, PLUNICODE ucs4_char )
{
fprintf( svgFile, "<tspan " );
// sans, serif, mono, script, symbol
if ( ( ucs4_char & 0x00F ) == 0x000 )
{
fprintf( svgFile, "font-family=\"sans-serif\" " );
}
else if ( ( ucs4_char & 0x00F ) == 0x001 )
{
fprintf( svgFile, "font-family=\"serif\" " );
}
else if ( ( ucs4_char & 0x00F ) == 0x002 )
{
fprintf( svgFile, "font-family=\"mono-space\" " );
}
else if ( ( ucs4_char & 0x00F ) == 0x003 )
{
fprintf( svgFile, "font-family=\"cursive\" " );
}
else if ( ( ucs4_char & 0x00F ) == 0x004 )
{
// this should be symbol, but that doesn't seem to be available
fprintf( svgFile, "font-family=\"sans-serif\" " );
}
// normal, italic, oblique
if ( ( ucs4_char & 0x0F0 ) == 0x000 )
{
fprintf( svgFile, "font-style=\"normal\" " );
}
else if ( ( ucs4_char & 0x0F0 ) == 0x010 )
{
fprintf( svgFile, "font-style=\"italic\" " );
}
else if ( ( ucs4_char & 0x0F0 ) == 0x020 )
{
fprintf( svgFile, "font-style=\"oblique\" " );
}
// normal, bold
if ( ( ucs4_char & 0xF00 ) == 0x000 )
{
fprintf( svgFile, "font-weight=\"normal\">" );
}
else if ( ( ucs4_char & 0xF00 ) == 0x100 )
{
fprintf( svgFile, "font-weight=\"bold\">" );
}
}
|