3 Various utility functions for dealing with gfxdevices.
5 Part of the swftools package.
7 Copyright (c) 2005 Matthias Kramm <kramm@quiss.org>
9 This program is free software; you can redistribute it and/or modify
10 it under the terms of the GNU General Public License as published by
11 the Free Software Foundation; either version 2 of the License, or
12 (at your option) any later version.
14 This program is distributed in the hope that it will be useful,
15 but WITHOUT ANY WARRANTY; without even the implied warranty of
16 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
17 GNU General Public License for more details.
19 You should have received a copy of the GNU General Public License
20 along with this program; if not, write to the Free Software
21 Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA */
32 typedef struct _linedraw_internal
38 } linedraw_internal_t;
40 static void linedraw_moveTo(gfxdrawer_t*d, gfxcoord_t x, gfxcoord_t y)
42 linedraw_internal_t*i = (linedraw_internal_t*)d->internal;
43 gfxline_t*l = (gfxline_t*)rfx_alloc(sizeof(gfxline_t));
58 static void linedraw_lineTo(gfxdrawer_t*d, gfxcoord_t x, gfxcoord_t y)
60 linedraw_internal_t*i = (linedraw_internal_t*)d->internal;
62 /* starts with a line, not with a moveto. As this is the first
63 entry in the list, this is probably *meant* to be a moveto */
64 linedraw_moveTo(d, x, y);
68 gfxline_t*l = (gfxline_t*)rfx_alloc(sizeof(gfxline_t));
80 static void linedraw_splineTo(gfxdrawer_t*d, gfxcoord_t sx, gfxcoord_t sy, gfxcoord_t x, gfxcoord_t y)
82 linedraw_internal_t*i = (linedraw_internal_t*)d->internal;
84 linedraw_moveTo(d, x, y);
88 gfxline_t*l = (gfxline_t*)rfx_alloc(sizeof(gfxline_t));
89 l->type = gfx_splineTo;
101 static void linedraw_close(gfxdrawer_t*d)
103 linedraw_internal_t*i = (linedraw_internal_t*)d->internal;
106 linedraw_lineTo(d, i->x0, i->y0);
111 static void* linedraw_result(gfxdrawer_t*d)
113 linedraw_internal_t*i = (linedraw_internal_t*)d->internal;
114 void*result = (void*)i->start;
116 memset(d, 0, sizeof(gfxdrawer_t));
120 void gfxdrawer_target_gfxline(gfxdrawer_t*d)
122 linedraw_internal_t*i = (linedraw_internal_t*)rfx_calloc(sizeof(linedraw_internal_t));
126 d->moveTo = linedraw_moveTo;
127 d->lineTo = linedraw_lineTo;
128 d->splineTo = linedraw_splineTo;
129 d->close = linedraw_close;
130 d->result = linedraw_result;
133 typedef struct _qspline_abc
139 typedef struct qspline_t
146 typedef struct cspline_t
154 static void mkspline(qspline_abc_t*s, double x, double y, gfxline_t*l)
157 Form 1: x = t*t*l->x + 2*t*(1-t)*l->sx + (1-t)*(1-t)*x;
158 Form 2: x = a*t*t + b*t + c
160 s->cx = x; s->bx = 2*l->sx - 2*x; s->ax = l->x - 2*l->sx + x;
161 s->cy = y; s->by = 2*l->sy - 2*y; s->ay = l->y - 2*l->sy + y;
164 static void spline_get_controlpoint(qspline_abc_t*q, double t1, double t2, double*dx, double*dy)
167 double nax = q->ax*dt*dt;
168 double nay = q->ay*dt*dt;
169 double nbx = 2*q->ax*dt*t1 + q->bx*dt;
170 double nby = 2*q->ay*dt*t1 + q->by*dt;
171 double ncx = q->ax*t1*t1 + q->bx*t1 + q->cx;
172 double ncy = q->ay*t1*t1 + q->by*t1 + q->cy;
177 static double get_spline_len(qspline_abc_t*s)
179 int parts = (int)(sqrt(fabs(s->ax) + fabs(s->ay))*3);
184 if(parts < 3) parts = 3;
186 r2 = 1.0/(parts*parts);
189 double dx = s->ax*(2*i+1)*r2 + s->bx*r;
190 double dy = s->ay*(2*i+1)*r2 + s->by*r;
191 len += sqrt(dx*dx+dy*dy);
193 /*printf("Spline from %f,%f to %f,%f has len %f (%f)\n", s->cx, s->cy,
194 s->cx + s->bx + s->ax,
195 s->cy + s->by + s->ay, len,
196 sqrt((s->bx + s->ax)*(s->bx + s->ax) + (s->by + s->ay)*(s->by + s->ay))
198 assert(len+0.5 >= sqrt((s->bx + s->ax)*(s->bx + s->ax) + (s->by + s->ay)*(s->by + s->ay)));
203 void gfxtool_draw_dashed_line(gfxdrawer_t*d, gfxline_t*line, float*r, float phase)
206 double linepos,nextpos;
210 if(line && line->type != gfx_moveTo) {
211 fprintf(stderr, "gfxtool: outline doesn't start with a moveTo");
217 for(i=0;r[i]>=0;i++) {
220 if(!r || (r[0]<=0 && r[0]>-0.01) || dashlen<0.001) {
221 // no dashing. just draw the thing
223 if(line->type == gfx_moveTo) {
224 d->moveTo(d, line->x, line->y);
225 } else if(line->type == gfx_lineTo) {
226 d->lineTo(d, line->x, line->y);
227 } else if(line->type == gfx_splineTo) {
228 d->splineTo(d, line->sx, line->sy, line->x, line->y);
234 if(r[0]<0 || phase<0) {
235 fprintf(stderr, "gfxtool: invalid (negative) dashes: %f, phase=%f", r[0], phase);
239 for(;line;line=line->next) {
240 if(line->type == gfx_moveTo) {
241 d->moveTo(d, line->x, line->y);
242 on = 1; nextpos = r[0]; apos = 0; linepos = 0;
243 x = line->x; y = line->y;
244 while(linepos < phase) {
245 //printf("[+] linepos: %f, phase: %f, on:%d, apos:%d nextpos:%f\n", linepos, phase, on, apos, nextpos);
247 if(linepos < phase) {
255 //printf("[k] linepos: %f, phase: %f, on:%d, apos:%d nextpos:%f \n", linepos, phase, on, apos, nextpos);
256 } else if(line->type == gfx_lineTo) {
257 double dx = line->x - x;
258 double dy = line->y - y;
259 double len = sqrt(dx*dx+dy*dy);
262 double lineend = linepos+len;
267 assert(nextpos>=linepos);
268 //printf("(line) on:%d apos: %d nextpos: %f, line pos: %f, line end: %f\n", on, apos, nextpos, linepos, linepos+len);
269 while(nextpos<lineend) {
270 double nx = x + vx*(nextpos-linepos);
271 double ny = y + vy*(nextpos-linepos);
272 if(on) {d->lineTo(d, nx,ny);/*printf("lineTo %f\n", nextpos);*/}
273 else {d->moveTo(d, nx,ny);/*printf("moveTo %f\n", nextpos);*/}
281 //printf("lineTo %f\n", 1.0);
282 d->lineTo(d, line->x,line->y);
284 x = line->x; y = line->y;
285 } else if(line->type == gfx_splineTo) {
287 double len, lineend,lastt;
288 mkspline(&q, x, y, line);
290 len = get_spline_len(&q);
291 //printf("%f %f -> %f %f, len: %f\n", x, y, line->x, line->y, len);
294 lineend = linepos+len;
297 printf("%f !< %f\n", nextpos, linepos);
298 assert(nextpos>=linepos);
299 //printf("(spline) on:%d apos: %d nextpos: %f, line pos: %f, line end: %f\n", on, apos, nextpos, linepos, linepos+len);
300 while(nextpos<lineend) {
301 double t = (nextpos-linepos)/len;
302 //printf("%f (%f-%f) apos=%d r[apos]=%f\n", t, nextpos, linepos, apos, r[apos]);
303 double nx = q.ax*t*t+q.bx*t+q.cx;
304 double ny = q.ay*t*t+q.by*t+q.cy;
307 spline_get_controlpoint(&q, lastt, t, &sx, &sy);
308 d->splineTo(d, sx, sy, nx,ny);
309 //printf("splineTo %f\n", nextpos);
312 //printf("moveTo %f\n", nextpos);
323 spline_get_controlpoint(&q, lastt, 1, &sx, &sy);
324 d->splineTo(d, sx, sy, line->x,line->y);
325 //printf("splineTo %f\n", 1.0);
327 x = line->x; y = line->y;
332 gfxline_t * gfxline_clone(gfxline_t*line)
337 gfxline_t*n = (gfxline_t*)rfx_calloc(sizeof(gfxline_t));
351 static char splineIsStraight(double x, double y, gfxline_t*l)
353 if(l->type == gfx_moveTo)
355 if(l->type == gfx_lineTo)
361 if(fabs(dx*sy - dy*sx) < 0.000001 && (dx*sx + dy*sy) >= 0) {
367 void gfxline_optimize(gfxline_t*line)
370 /* step 1: convert splines to lines, where possible */
373 if(l->type == gfx_splineTo && splineIsStraight(x,y,l)) {
374 l->type = gfx_lineTo;
380 /* step 2: combine adjacent lines and splines, where possible */
382 while(l && l->next) {
383 gfxline_t*next = l->next;
386 if(l->type == gfx_lineTo && next->type == gfx_lineTo) {
389 double nx = next->x-l->x;
390 double ny = next->y-l->y;
391 if(fabs(dx*ny - dy*nx) < 0.000001 && (dx*nx + dy*ny) >= 0) {
394 } else if(l->type == gfx_splineTo && next->type == gfx_splineTo) {
398 l->next = next->next;
413 gfxline_t* gfxtool_dash_line(gfxline_t*line, float*dashes, float phase)
417 gfxdrawer_target_gfxline(&d);
418 gfxtool_draw_dashed_line(&d, line, dashes, phase);
419 result= (gfxline_t*)d.result(&d);
423 void gfxline_show(gfxline_t*l, FILE*fi)
426 if(l->type == gfx_moveTo) {
427 fprintf(fi, "moveTo %.2f,%.2f\n", l->x, l->y);
429 if(l->type == gfx_lineTo) {
430 fprintf(fi, "lineTo %.2f,%.2f\n", l->x, l->y);
432 if(l->type == gfx_splineTo) {
433 fprintf(fi, "splineTo %.2f,%.2f %.2f,%.2f\n", l->sx, l->sy, l->x, l->y);
439 void gfxline_free(gfxline_t*l)
441 if(l && (l+1) == l->next) {
455 static inline gfxpoint_t cspline_getpoint(const struct cspline_t*s, double t)
461 double mtmt = mt*(1-t);
462 double mtmtmt = mtmt*(1-t);
463 p.x= s->end.x*ttt + 3*s->control2.x*tt*mt
464 + 3*s->control1.x*t*mtmt + s->start.x*mtmtmt;
465 p.y= s->end.y*ttt + 3*s->control2.y*tt*mt
466 + 3*s->control1.y*t*mtmt + s->start.y*mtmtmt;
469 static gfxpoint_t qspline_getpoint(const qspline_t*s, double t)
472 p.x= s->end.x*t*t + 2*s->control.x*t*(1-t) + s->start.x*(1-t)*(1-t);
473 p.y= s->end.y*t*t + 2*s->control.y*t*(1-t) + s->start.y*(1-t)*(1-t);
477 static int approximate3(const cspline_t*s, qspline_t*q, int size, double quality2)
479 unsigned int gran = 0;
480 unsigned int istep = 0x80000000;
481 unsigned int istart = 0;
485 while(istart<0x80000000)
487 unsigned int iend = istart + istep;
488 double start = istart/(double)0x80000000;
489 double end = iend/(double)0x80000000;
492 char left = 0,recurse=0;
497 /* create simple approximation: a qspline_t which run's through the
498 qspline_t point at 0.5 */
499 test.start = cspline_getpoint(s, start);
500 test.control = cspline_getpoint(s, (start+end)/2);
501 test.end = cspline_getpoint(s, end);
502 /* fix the control point:
503 move it so that the new spline does runs through it */
504 test.control.x = -(test.end.x + test.start.x)/2 + 2*(test.control.x);
505 test.control.y = -(test.end.y + test.start.y)/2 + 2*(test.control.y);
507 /* depending on where we are in the spline, we either try to match
508 the left or right tangent */
512 pos = left?start:end;
514 test.control.x = s->end.x*(3*qpos) + 3*s->control2.x*(2*pos-3*qpos) +
515 3*s->control1.x*(1-4*pos+3*qpos) + s->start.x*(-3+6*pos-3*qpos);
516 test.control.y = s->end.y*(3*qpos) + 3*s->control2.y*(2*pos-3*qpos) +
517 3*s->control1.y*(1-4*pos+3*qpos) + s->start.y*(-3+6*pos-3*qpos);
519 test.control.x *= (end-start)/2;
520 test.control.y *= (end-start)/2;
521 test.control.x += test.start.x;
522 test.control.y += test.start.y;
524 test.control.x *= -(end-start)/2;
525 test.control.y *= -(end-start)/2;
526 test.control.x += test.end.x;
527 test.control.y += test.end.y;
532 /* measure the spline's accurancy, by taking a number of probes */
533 for(t=0;t<probes;t++) {
534 gfxpoint_t qr1,qr2,cr1,cr2;
535 double pos = 0.5/(probes*2)*(t*2+1);
538 qr1 = qspline_getpoint(&test, pos);
539 cr1 = cspline_getpoint(s, start+pos*(end-start));
548 qr2 = qspline_getpoint(&test, (1-pos));
549 cr2 = cspline_getpoint(s, start+(1-pos)*(end-start));
559 #else // quadratic error: *much* faster!
561 /* convert control point representation to
562 d*x^3 + c*x^2 + b*x + a */
563 dx= s->end.x - s->control2.x*3 + s->control1.x*3 - s->start.x;
564 dy= s->end.y - s->control2.y*3 + s->control1.y*3 - s->start.y;
566 /* we need to do this for the subspline between [start,end], not [0,1]
567 as a transformation of t->a*t+b does nothing to highest coefficient
568 of the spline except multiply it with a^3, we just need to modify
570 {double m = end-start;
575 /* use the integral over (f(x)-g(x))^2 between 0 and 1
576 to measure the approximation quality.
577 (it boils down to const*d^2) */
578 recurse = (dx*dx + dy*dy > quality2);
581 if(recurse && istep>1 && size-level > num) {
588 while(!(istart & istep)) {
597 void gfxdraw_conicTo(gfxdrawer_t*draw, double cx, double cy, double tox, double toy, double quality)
599 double c1x = (draw->x + 2 * cx) / 3;
600 double c1y = (draw->y + 2 * cy) / 3;
601 double c2x = (2 * cx + tox) / 3;
602 double c2y = (2 * cy + toy) / 3;
603 gfxdraw_cubicTo(draw, c1x, c1y, c2x, c2y, tox, toy, quality);
607 void gfxdraw_cubicTo(gfxdrawer_t*draw, double c1x, double c1y, double c2x, double c2y, double x, double y, double quality)
611 double maxerror = quality>0 ? quality : 1.0;
623 num = approximate3(&c, q, 128, maxerror);
628 mid.x = q[t].control.x;
629 mid.y = q[t].control.y;
632 draw->splineTo(draw, mid.x, mid.y, to.x, to.y);
636 gfxbbox_t gfxbbox_expand_to_point(gfxbbox_t box, gfxcoord_t x, gfxcoord_t y)
638 if(box.xmin==0 && box.ymin==0 && box.xmax==0 && box.ymax==0) {
643 if(x==0 && y==0) box.xmax = 0.0000001;
657 void gfxbbox_intersect(gfxbbox_t*box1, gfxbbox_t*box2)
659 if(box2->xmin > box1->xmin)
660 box1->xmin = box2->xmin;
661 if(box2->ymin > box1->ymin)
662 box1->ymin = box2->ymin;
663 if(box2->xmax < box1->xmax)
664 box1->xmax = box2->xmax;
665 if(box2->ymax > box1->ymax)
666 box1->ymax = box2->ymax;
667 if(box1->xmin > box1->xmax)
668 box1->xmax = box1->xmin;
669 if(box1->ymin > box1->ymax)
670 box1->ymax = box1->ymin;
673 gfxbbox_t gfxline_getbbox(gfxline_t*line)
676 gfxbbox_t bbox = {0,0,0,0};
679 if(line->type == gfx_moveTo) {
681 } else if(line->type == gfx_lineTo) {
682 if(last) bbox = gfxbbox_expand_to_point(bbox, x, y);
683 bbox = gfxbbox_expand_to_point(bbox, line->x, line->y);
685 } else if(line->type == gfx_splineTo) {
686 if(last) bbox = gfxbbox_expand_to_point(bbox, x, y);
687 bbox = gfxbbox_expand_to_point(bbox, line->sx, line->sy);
688 bbox = gfxbbox_expand_to_point(bbox, line->x, line->y);
698 gfxline_t* gfxline_append(gfxline_t*line1, gfxline_t*line2)
700 gfxline_t*l = line1;;
710 void gfxline_transform(gfxline_t*line, gfxmatrix_t*matrix)
713 double x = matrix->m00*line->x + matrix->m10*line->y + matrix->tx;
714 double y = matrix->m01*line->x + matrix->m11*line->y + matrix->ty;
717 if(line->type == gfx_splineTo) {
718 double sx = matrix->m00*line->sx + matrix->m10*line->sy + matrix->tx;
719 double sy = matrix->m01*line->sx + matrix->m11*line->sy + matrix->ty;
727 void gfxmatrix_dump(gfxmatrix_t*m, FILE*fi, char*prefix)
729 fprintf(fi, "%f %f | %f\n", m->m00, m->m10, m->tx);
730 fprintf(fi, "%f %f | %f\n", m->m01, m->m11, m->ty);
733 void gfxmatrix_transform(gfxmatrix_t*m, double* v, double*dest)
735 dest[0] = m->m00*v[0] + m->m10*v[1] + m->tx;
736 dest[1] = m->m01*v[0] + m->m11*v[1] + m->ty;
738 void gfxmatrix_invert(gfxmatrix_t*m, gfxmatrix_t*dest)
740 double det = m->m00 * m->m11 - m->m10 * m->m01;
742 memset(dest, 0, sizeof(gfxmatrix_t));
746 dest->m00 = m->m11 * det;
747 dest->m01 = -m->m01 * det;
748 dest->m10 = -m->m10 * det;
749 dest->m11 = m->m00 * det;
750 dest->tx = -(dest->m00 * m->tx + dest->m10 * m->ty);
751 dest->ty = -(dest->m01 * m->tx + dest->m11 * m->ty);
753 void gfxmatrix_unit(gfxmatrix_t*m)
755 memset(m, 0, sizeof(gfxmatrix_t));
759 void gfxmatrix_multiply(gfxmatrix_t*m1, gfxmatrix_t*m2, gfxmatrix_t*dest)
761 dest->m00 = m1->m00*m2->m00 + m1->m10*m2->m01;
762 dest->m01 = m1->m01*m2->m00 + m1->m11*m2->m01;
763 dest->m10 = m1->m00*m2->m10 + m1->m10*m2->m11;
764 dest->m11 = m1->m01*m2->m10 + m1->m11*m2->m11;
765 dest->tx = m1->m00*m2->tx + m1->m10*m2->ty + m1->tx;
766 dest->ty = m1->m01*m2->tx + m1->m11*m2->ty + m1->ty;
769 gfxfontlist_t* gfxfontlist_create()
771 /* Initial list ist empty */
775 gfxfont_t*gfxfontlist_findfont(gfxfontlist_t*list, char*id)
777 gfxfontlist_t*l = list;
779 if(!strcmp((char*)l->font->id, id)) {
786 char gfxfontlist_hasfont(gfxfontlist_t*list, gfxfont_t*font)
788 gfxfontlist_t*l = list;
790 if(!strcmp((char*)l->font->id, font->id)) {
797 gfxfontlist_t*gfxfontlist_addfont(gfxfontlist_t*list, gfxfont_t*font)
799 gfxfontlist_t*last=0,*l = list;
802 if(l->font == font) {
803 return list; // we already know this font
808 fprintf(stderr, "Tried to add zero font\n");
810 l = (gfxfontlist_t*)rfx_calloc(sizeof(gfxfontlist_t));
820 void gfxfontlist_free(gfxfontlist_t*list, char deletefonts)
822 gfxfontlist_t*l = list;
824 gfxfontlist_t*next = l->next;
825 if(deletefonts && l->font) {
826 gfxfont_free(l->font);l->font=0;
834 gfxline_t*gfxline_makerectangle(int x1,int y1,int x2, int y2)
836 gfxline_t* line = (gfxline_t*)rfx_calloc(sizeof(gfxline_t)*5);
837 line[0].x = x1;line[0].y = y1;line[0].type = gfx_moveTo;line[0].next = &line[1];
838 line[1].x = x2;line[1].y = y1;line[1].type = gfx_lineTo;line[1].next = &line[2];
839 line[2].x = x2;line[2].y = y2;line[2].type = gfx_lineTo;line[2].next = &line[3];
840 line[3].x = x1;line[3].y = y2;line[3].type = gfx_lineTo;line[3].next = &line[4];
841 line[4].x = x1;line[4].y = y1;line[4].type = gfx_lineTo;
845 gfxline_t*gfxline_makecircle(double x,double y,double rx, double ry)
849 double begin = 0.7070;
850 gfxline_t** line = (gfxline_t**)rfx_calloc(sizeof(gfxline_t*)*9);
853 line[t] = rfx_calloc(sizeof(gfxline_t));
855 line[0]->type = gfx_moveTo;
856 line[0]->x = x+begin*rx;
857 line[0]->y = y+begin*ry;
859 line[t-1]->next = line[t];
860 line[t]->type = gfx_splineTo;
863 #define R(nr,cx,cy,mx,my) \
864 line[nr]->sx = line[nr-1]->x + (cx); \
865 line[nr]->sy = line[nr-1]->y + (cy); \
866 line[nr]->x = line[nr]->sx + (mx); \
867 line[nr]->y = line[nr]->sy + (my);
868 R(1, -C1*rx, C1*ry, -C2*rx, 0);
869 R(2, -C2*rx, 0, -C1*rx, -C1*ry);
870 R(3, -C1*rx, -C1*ry, 0, -C2*ry);
871 R(4, 0, -C2*ry, C1*rx, -C1*ry);
872 R(5, C1*rx, -C1*ry, C2*rx, 0);
873 R(6, C2*rx, 0, C1*rx, C1*ry);
874 R(7, C1*rx, C1*ry, 0, C2*ry);
875 R(8, 0, C2*ry, -C1*rx, C1*ry);
876 gfxline_t*l = line[0];
881 gfxbbox_t* gfxline_isrectangle(gfxline_t*_l)
886 gfxline_t*l = gfxline_clone(_l);
901 if(xc==2 && x!=x1 && x!=x2) {fail=1;break;}
902 else if(xc>=1 && x==x1) {left=0;}
903 else if(xc==2 && x==x2) {left=1;}
904 else if(xc==1 && x!=x1) {x2 = x; xc=2; left=1;}
905 else if(xc==0) {x1 = x; xc=1;left=0;}
906 else {fprintf(stderr, "Internal error in rectangle detection\n");}
908 if(yc==2 && y!=y1 && y!=y2) {fail=1;break;}
909 else if(yc>=1 && y==y1) {top=0;}
910 else if(yc==2 && y==y2) {top=1;}
911 else if(yc==1 && y!=y1) {y2 = y; yc=2; top=1;}
912 else if(yc==0) {y1 = y; yc=1;top=0;}
913 else {fprintf(stderr, "Internal error in rectangle detection\n");}
915 char pos=top<<1|left;
918 /* diagonal lines not allowed */
923 /* no corner except the first one may be touched twice */
924 if(pos && (corners & 1<<pos)) {
927 /* mark which corners have been touched so far */
935 if(corners!=0x0f) return 0; // not all 4 corners reached
937 if(x2<x1) {double x = x2;x2=x1;x1=x;}
938 if(y2<y1) {double y = y2;y2=y1;y1=y;}
940 gfxbbox_t*r = malloc(sizeof(gfxbbox_t));
941 r->xmin = x1; r->ymin = y1;
942 r->xmax = x2; r->ymax = y2;
946 void gfximage_transform(gfximage_t*img, gfxcxform_t*cxform)
949 int size = img->width*img->height;
955 rr = (int)(cxform->rr*256);gr = (int)(cxform->gr*256);
956 rg = (int)(cxform->rg*256);gg = (int)(cxform->gg*256);
957 rb = (int)(cxform->rb*256);gb = (int)(cxform->gb*256);
958 ra = (int)(cxform->ra*256);ga = (int)(cxform->ga*256);
959 br = (int)(cxform->br*256);ar = (int)(cxform->ar*256);tr = (int)(cxform->tr*256);
960 bg = (int)(cxform->bg*256);ag = (int)(cxform->ag*256);tg = (int)(cxform->tg*256);
961 bb = (int)(cxform->bb*256);ab = (int)(cxform->ab*256);tb = (int)(cxform->tb*256);
962 ba = (int)(cxform->ba*256);aa = (int)(cxform->aa*256);ta = (int)(cxform->ta*256);
964 for(t=0;t<size;t++) {
965 gfxcolor_t*pixel = &img->data[t];
966 unsigned char r = (pixel->r * rr + pixel->g * rg + pixel->b * rb + pixel->a * ra + tr) / 256;
967 unsigned char g = (pixel->r * gr + pixel->g * gg + pixel->b * gb + pixel->a * ga + tg) / 256;
968 unsigned char b = (pixel->r * br + pixel->g * bg + pixel->b * bb + pixel->a * ba + tb) / 256;
969 unsigned char a = (pixel->r * ar + pixel->g * ag + pixel->b * ab + pixel->a * aa + ta) / 256;
976 void gfxline_dump(gfxline_t*line, FILE*fi, char*prefix)
979 if(line->type == gfx_moveTo) {
980 fprintf(fi, "%smoveTo %.2f %.2f\n", prefix, line->x, line->y);
981 } else if(line->type == gfx_lineTo) {
982 fprintf(fi, "%slineTo %.2f %.2f\n", prefix, line->x, line->y);
983 } else if(line->type == gfx_splineTo) {
984 fprintf(fi, "%ssplineTo (%.2f %.2f) %.2f %.2f\n", prefix, line->sx, line->sy, line->x, line->y);