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
|
/* This file is part of the GNU plotutils package. Copyright (C) 1995,
1996, 1997, 1998, 1999, 2000, 2005, 2008, Free Software Foundation, Inc.
The GNU plotutils package is free software. You may redistribute it
and/or modify it under the terms of the GNU General Public License as
published by the Free Software foundation; either version 2, or (at your
option) any later version.
The GNU plotutils package 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
General Public License for more details.
You should have received a copy of the GNU General Public License along
with the GNU plotutils package; see the file COPYING. If not, write to
the Free Software Foundation, Inc., 51 Franklin St., Fifth Floor,
Boston, MA 02110-1301, USA. */
/* This is the XAffText module, which was originally independent of
libplot. The header file that accompanies it is x_afftext.h.
To use the module independently of libplot, simply do not specify
"-DLIBPLOT" at compile time.
The module supplies two external functions, which are generalizations of
the core X11 function XDrawString: XAffDrawRotString and
XAffDrawAffString. They draw, respectively, a rotated text string and
(more generally) a matrix-transformed text string. In both cases a
specified core X font is used. The rotation angle and transformation
matrix are specified by the user. The matrix is passed as a 4-element
array, with the element ordering convention and sign convention being
those of the Matrix Extension to the XLFD (X Logical Font Description).
`XAffText' is an abbreviation of `X11 affinely transformed text'. The
module was inspired by Alan Richardson's xvertext module for displaying
rotated text strings in X11, using the core X fonts. It works in a
similar way. (It retrieves a bitmap from the X server into an XImage,
transforms the XImage, monochrome pixel by pixel, and sends it back to a
bitmap on the server, for use as a stipple.) But it supports arbitrary
transformation matrices, and pays extra attention to pixel-level
accuracy. It uses integer arithmetic when possible. */
#include "x_afftext.h"
#ifdef DEBUG
#ifdef __cplusplus
#include <cstdio>
#else /* not __cplusplus */
#include <stdio.h>
#endif /* not __cplusplus */
#endif /* DEBUG */
#ifdef LIBPLOT
#include "sys-defines.h" /* plotutils-specific */
#include "extern.h" /* libplot-specific */
#else /* not LIBPLOT */
#include <stdlib.h>
#include <string.h>
#include <limits.h>
#include <math.h>
#ifndef M_PI
#define M_PI 3.14159265358979323846264
#endif
#define IMAX(a,b) ((a) > (b) ? (a) : (b))
#define IMIN(a,b) ((a) < (b) ? (a) : (b))
#define IROUND(x) ((int) ((x) > 0 ? (x) + 0.5 : (x) - 0.5))
#define _pl_xmalloc malloc
#define _pl_xcalloc calloc
#endif /* not LIBPLOT */
#define XAFF_XPROD(v,a) ((v).x * (a)[0] + (v).y * (a)[2])
#define XAFF_YPROD(v,a) ((v).x * (a)[1] + (v).y * (a)[3])
typedef struct XAffVectorStruct
{
int x, y;
} XAffVector;
typedef struct XAffRealVectorStruct
{
double x, y;
} XAffRealVector;
typedef struct XAffSizeStruct
{
unsigned int x, y;
} XAffSize;
typedef struct XAffAffinedTextStruct
{
Pixmap bitmap; /* depth-1 Pixmap, i.e., bitmap */
XAffSize size; /* bitmap size */
XAffVector origin; /* location of text origin within bitmap */
} XAffAffinedText;
/* forward decls of internal ctors/dtors */
static XImage * XAffCreateXImage (Display *dpy, XAffSize size);
static void XAffFreeXImage (XImage *im);
static XAffAffinedText *XAffCreateAffinedText (Display *dpy, XFontStruct *font, double a[4], const char *text);
static void XAffFreeAffinedText (Display *dpy, XAffAffinedText *afftext);
/* other internal functions */
static int can_use_XDrawString (XFontStruct *font, double a[4], const char *text);
#ifdef DEBUG
static void print_image (const XImage *im_in, XAffSize size);
#endif /* DEBUG */
/**************************************************************************/
/* Create/destroy a depth-1 XImage object */
/**************************************************************************/
static XImage *
XAffCreateXImage (Display *dpy, XAffSize size)
{
XImage *im;
char *data;
if (size.x == 0 || size.y == 0)
return NULL;
data = (char *)_pl_xcalloc(size.y * ((size.x + 7) / 8), 1);
if (data == NULL)
return NULL;
im = XCreateImage (dpy, DefaultVisual(dpy, DefaultScreen(dpy)),
(unsigned int)1, /* depth = 1 */
XYBitmap,
0, /* origin = 0 */
data,
size.x, size.y,
8, /* pad: quantum of each scanline */
0); /* scanlines contigous in memory */
if (im == NULL)
return NULL;
im->bitmap_bit_order = MSBFirst;
im->byte_order = MSBFirst;
return im;
}
static void
XAffFreeXImage (XImage *im)
{
free (im->data);
XFree (im);
}
/**************************************************************************/
/* Create/destroy an affinely transformed text string */
/**************************************************************************/
static XAffAffinedText *
XAffCreateAffinedText (Display *dpy, XFontStruct *font, double a[4], const char *text)
{
XAffAffinedText *afftext = NULL;
GC gc;
XCharStruct bounds;
int direction, font_ascent, font_descent;
XAffSize size_in, size_out;
XAffRealVector corner_in[4];
XAffVector origin_in, origin_out;
XAffVector mincorner, maxcorner;
Pixmap bitmap_in, bitmap_out;
XImage *im_in, *im_out;
int scanline_len_in, scanline_len_out;
double aa[4], a_inverse[4], det;
int i, j;
/* allocate memory for new instance */
afftext = (XAffAffinedText *)_pl_xmalloc(sizeof(XAffAffinedText));
if (!afftext)
return NULL;
/* as passed, a[] is in the format used in the matrix LFD enhancement,
which assumes a right-handed coordinate system; so convert it to X11's
left-hand coordinate system (y grows downward) */
aa[0] = a[0];
aa[1] = -a[1];
aa[2] = -a[2];
aa[3] = a[3];
/* invert transformation matrix */
det = aa[0] * aa[3] - aa[1] * aa[2];
if (det == 0.0)
return NULL; /* don't support singular matrices */
a_inverse[0] = aa[3] / det;
a_inverse[1] = - aa[1] / det;
a_inverse[2] = - aa[2] / det;
a_inverse[3] = aa[0] / det;
/* to include all pixels in text, how large should bitmap be? */
XTextExtents (font, text, strlen (text),
&direction, &font_ascent, &font_descent, &bounds);
/* bitmap size, number-of-pixels by number-of-pixels */
size_in.x = - bounds.lbearing + bounds.rbearing;
size_in.y = bounds.ascent + bounds.descent;
/* within this bitmap, where is `origin' of text string? */
origin_in.x = - bounds.lbearing;
origin_in.y = bounds.ascent;
/* paranoia */
if (size_in.x == 0 || size_in.y == 0)
return NULL;
/* work around a possible bug: some X displays can't create pixmaps that
are only one pixel wide or high */
if (size_in.x == 1)
size_in.x = 2;
if (size_in.y == 1)
size_in.y = 2;
#ifdef DEBUG
fprintf (stderr, "string \"%s\": lbearing=%hd, rbearing=%hd, ascent=%hd, descent=%hd\n", text, bounds.lbearing, bounds.rbearing, bounds.ascent, bounds.descent);
fprintf (stderr, "\tsize=(%u,%u), origin=(%d,%d)\n", size_in.x, size_in.y, origin_in.x, origin_in.y);
#endif
/* create bitmap for text, and lightweight gc */
bitmap_in = XCreatePixmap (dpy, DefaultRootWindow (dpy),
size_in.x, size_in.y, (unsigned int)1);
gc = XCreateGC (dpy, bitmap_in, (unsigned long)0, (XGCValues *)NULL);
XSetBackground (dpy, gc, (unsigned long)0);
XSetFont (dpy, gc, font->fid);
/* clear the bitmap */
XSetForeground (dpy, gc, (unsigned long)0);
XFillRectangle (dpy, bitmap_in, gc, 0, 0, size_in.x, size_in.y);
XSetForeground (dpy, gc, (unsigned long)1);
/* draw text onto bitmap */
XDrawString (dpy, bitmap_in, gc, origin_in.x, origin_in.y,
text, strlen (text));
/* create local image */
im_in = XAffCreateXImage (dpy, size_in);
if (im_in == NULL)
return NULL;
/* copy bitmap to it */
XGetSubImage (dpy, bitmap_in, 0, 0, size_in.x, size_in.y,
(unsigned long)1, XYPixmap, im_in, 0, 0);
im_in->format = XYBitmap;
#ifdef DEBUG
print_image (im_in, size_in);
#endif /* DEBUG */
/* free now-unneeded bitmap */
XFreePixmap (dpy, bitmap_in);
/* vertices of image, in real coordinates, if each pixel is taken to be a
unit square */
corner_in[0].x = -0.5;
corner_in[0].y = -0.5;
corner_in[1].x = (int)size_in.x - 0.5;
corner_in[1].y = -0.5;
corner_in[2].x = (int)size_in.x - 0.5;
corner_in[2].y = (int)size_in.y - 0.5;
corner_in[3].x = -0.5;
corner_in[3].y = (int)size_in.y - 0.5;
/* compute vertices (in integer coordinates) of a rectangular array of
pixels that will snugly hold the affinely transformed image */
mincorner.x = mincorner.y = INT_MAX;
maxcorner.x = maxcorner.y = INT_MIN;
for (i = 0; i < 4; i++)
{
XAffRealVector v_shifted_in;
XAffVector corner_out[4];
v_shifted_in.x = corner_in[i].x - origin_in.x;
v_shifted_in.y = corner_in[i].y - origin_in.y;
corner_out[i].x = IROUND(XAFF_XPROD(v_shifted_in, aa)) + origin_in.x;
corner_out[i].y = IROUND(XAFF_YPROD(v_shifted_in, aa)) + origin_in.y;
mincorner.x = IMIN(mincorner.x, corner_out[i].x);
mincorner.y = IMIN(mincorner.y, corner_out[i].y);
maxcorner.x = IMAX(maxcorner.x, corner_out[i].x);
maxcorner.y = IMAX(maxcorner.y, corner_out[i].y);
}
size_out.x = maxcorner.x - mincorner.x + 1;
size_out.y = maxcorner.y - mincorner.y + 1;
origin_out.x = origin_in.x - mincorner.x;
origin_out.y = origin_in.y - mincorner.y;
/* work around a possible bug: some X displays can't create pixmaps that
are only one pixel wide or high */
if (size_out.x == 1)
size_out.x = 2;
if (size_out.y == 1)
size_out.y = 2;
#ifdef DEBUG
fprintf (stderr, "size_in = (%u,%u)\n", size_in.x, size_in.y);
fprintf (stderr, "size_out = (%u,%u)\n", size_out.x, size_out.y);
fprintf (stderr, "origin_in = (%d,%d)\n", origin_in.x, origin_in.y);
fprintf (stderr, "origin_out = (%d,%d)\n", origin_out.x, origin_out.y);
#endif
/* create 2nd image, to hold affinely transformed text */
im_out = XAffCreateXImage (dpy, size_out);
if (im_out == NULL)
return NULL;
/* copy from 1st image to this new one */
scanline_len_in = (size_in.x + 7) / 8;
scanline_len_out = (size_out.x + 7) / 8;
for (j = 0; j < (int)size_out.y; j++)
{
int scanline_hit;
XAffVector v_in, v_out, v_shifted_out;
scanline_hit = 0;
v_out.y = j;
v_shifted_out.y = v_out.y + mincorner.y - origin_in.y;
for (i = 0; i < (int)size_out.x; i++)
{
v_out.x = i;
v_shifted_out.x = v_out.x + mincorner.x - origin_in.x;
v_in.x = IROUND(XAFF_XPROD(v_shifted_out, a_inverse)) + origin_in.x;
v_in.y = IROUND(XAFF_YPROD(v_shifted_out, a_inverse)) + origin_in.y;
if ((!(v_in.x >= 0)) || (!(v_in.x < (int)size_in.x)) ||
(!(v_in.y >= 0)) || (!(v_in.y < (int)size_in.y)))
{
if (scanline_hit)
/* will be no more hits; so move to next scanline */
break;
else /* move to next position on this scanline */
continue;
}
else
scanline_hit = 1;
if (im_in->data[v_in.y * scanline_len_in + v_in.x / 8]
& (128 >> (v_in.x % 8)))
{
im_out->data[v_out.y * scanline_len_out + v_out.x / 8]
|= (128 >> (v_out.x % 8));
}
}
}
/* free now-unneeded 1st image */
XAffFreeXImage (im_in);
/* create bitmap to hold transformed text */
bitmap_out = XCreatePixmap (dpy, DefaultRootWindow (dpy),
size_out.x, size_out.y, (unsigned int)1);
/* copy transformed text from 2nd image */
XPutImage (dpy, bitmap_out, gc, im_out,
0, 0, 0, 0, size_out.x, size_out.y);
#ifdef DEBUG
print_image (im_out, size_out);
#endif
/* free 2nd image and GC */
XAffFreeXImage (im_out);
XFreeGC (dpy, gc);
/* fill in data members of instance */
afftext->bitmap = bitmap_out;
afftext->size = size_out;
afftext->origin = origin_out;
return afftext;
}
static void
XAffFreeAffinedText (Display *dpy, XAffAffinedText *afftext)
{
XFreePixmap (dpy, afftext->bitmap);
free (afftext);
}
/**************************************************************************/
/* Draw an affinely transformed text string */
/**************************************************************************/
int
XAffDrawAffString (Display *dpy, Drawable drawable, GC gc, XFontStruct *font, int x, int y, double a[4], const char *text)
{
XAffAffinedText *afftext;
GC our_gc;
if (text == NULL || strlen (text) == 0)
return 0;
if (can_use_XDrawString (font, a, text))
/* a[] must be equal to, or near the identity matrix */
return XDrawString (dpy, drawable, gc, x, y, text, strlen (text));
/* construct annotated bitmap, containing affinely transformed text */
afftext = XAffCreateAffinedText (dpy, font, a, text);
if (afftext == NULL)
return 0;
/* copy gc from user's gc */
our_gc = XCreateGC (dpy, drawable, (unsigned long)0, (XGCValues *)NULL);
XCopyGC (dpy, gc, GCForeground|GCFunction|GCPlaneMask, our_gc);
/* use stipple drawing technique (screen-door patterning) */
XSetFillStyle (dpy, our_gc, FillStippled);
XSetStipple (dpy, our_gc, afftext->bitmap);
XSetTSOrigin (dpy, our_gc,
x - afftext->origin.x, y - afftext->origin.y);
XFillRectangle (dpy, drawable, our_gc,
x - afftext->origin.x, y - afftext->origin.y,
afftext->size.x, afftext->size.y);
/* free resources */
XFreeGC (dpy, our_gc);
XAffFreeAffinedText (dpy, afftext);
return 0;
}
/**************************************************************************/
/* Special case: draw a rotated text string */
/**************************************************************************/
int
XAffDrawRotString (Display *dpy, Drawable drawable, GC gc, XFontStruct *font, int x, int y, double angle, const char *text)
{
double a[4];
/* convert rotation angle to radians */
angle *= (M_PI / 180.0);
/* construct transformation matrix (using the XLFD-matrix-extension sign
convention for the off-diagonal elements) */
a[0] = + cos (angle);
a[1] = + sin (angle);
a[2] = - sin (angle);
a[3] = + cos (angle);
return XAffDrawAffString (dpy, drawable, gc, font, x, y, a, text);
}
/**************************************************************************/
/* Can simply use core XDrawString function rather than transforming the */
/* resulting bitmap? (Yes, if the matrix a[] is near the identity.) */
/**************************************************************************/
static int
can_use_XDrawString (XFontStruct *font, double a[4], const char *text)
{
int direction, font_ascent, font_descent;
XCharStruct bounds;
XAffVector corner_in[4], corner_out[4];
XAffSize size_in;
XAffVector origin_in;
int i, can_do_it = 1;
double aa[4];
/* as passed, a[] is in the format used in the matrix LFD enhancement,
which assumes a right-handed coordinate system; so convert it to X11's
left-hand coordinate system (y grows downward) */
aa[0] = a[0];
aa[1] = -a[1];
aa[2] = -a[2];
aa[3] = a[3];
/* to include all pixels in text, how large should bitmap be? */
XTextExtents (font, text, strlen (text),
&direction, &font_ascent, &font_descent, &bounds);
/* bitmap size, number-of-pixels by number-of-pixels */
size_in.x = - bounds.lbearing + bounds.rbearing;
size_in.y = bounds.ascent + bounds.descent;
/* within this bitmap, where is `origin' of text string? */
origin_in.x = - bounds.lbearing;
origin_in.y = bounds.ascent;
/* corners in integer coordinates, relative to origin */
corner_in[0].x = 0;
corner_in[0].y = 0;
corner_in[1].x = size_in.x - 1;
corner_in[1].y = 0;
corner_in[2].x = size_in.x - 1;
corner_in[2].y = size_in.y - 1;
corner_in[3].x = 0;
corner_in[3].y = size_in.y - 1;
/* compute how corners are transformed by a[] */
for (i = 0; i < 4; i++)
{
XAffVector v_shifted_in;
v_shifted_in.x = corner_in[i].x - origin_in.x;
v_shifted_in.y = corner_in[i].y - origin_in.y;
corner_out[i].x = IROUND(XAFF_XPROD(v_shifted_in, aa)) + origin_in.x;
corner_out[i].y = IROUND(XAFF_YPROD(v_shifted_in, aa)) + origin_in.y;
if (corner_out[i].x != corner_in[i].x
|| corner_out[i].y != corner_in[i].y)
/* at least one corner moves, no good, alas */
{
can_do_it = 0;
break;
}
}
return can_do_it;
}
/**************************************************************************/
/* Print an image to stderr (used for debugging, if -DDEBUG is specified)*/
/**************************************************************************/
#ifdef DEBUG
static void
print_image (const XImage *im, XAffSize size)
{
int scanline_len;
int i, j;
scanline_len = (size.x + 7) / 8;
for (j = 0; j < (int)size.y; j++)
{
for (i = 0; i < (int)size.x; i++)
{
if (im->data[j * scanline_len + i / 8] & (128 >> (i % 8)))
fprintf (stderr, "*");
else
fprintf (stderr, " ");
}
fprintf (stderr, "\n");
}
}
#endif /* DEBUG */
|