5 #include "../gfxtools.h"
8 #include "renderpoly.h"
11 gfxline_t*mkstar(int x1, int y1, int x2, int y2)
13 gfxline_t*l=0,*line = 0;
15 for(x=x1;x<=x2;x+=50) {
16 l = rfx_calloc(sizeof(gfxline_t));
19 line = gfxline_append(line, l);
21 l = rfx_calloc(sizeof(gfxline_t));
23 l->x = x2-x;l->y = y2;
24 line = gfxline_append(line, l);
29 gfxline_t* mkrandomshape(int range, int n)
32 gfxline_t* line = malloc(sizeof(gfxline_t)*n);
34 line[i].type = i?gfx_lineTo:gfx_moveTo;
35 line[i].x = lrand48()%range - range/2;
36 line[i].y = lrand48()%range - range/2;
37 line[i].next = &line[i+1];
39 line[n-1].x = line[0].x;
40 line[n-1].y = line[0].y;
45 gfxline_t* mkchessboard()
54 char do_centerpiece=1;
58 //char do_centerpiece=0;
63 r = crc32_add_byte(r, x);r = crc32_add_byte(r, y);
67 box = gfxline_makerectangle(x*spacing,y*spacing,(x+1)*spacing,(y+1)*spacing);
69 box = gfxline_makerectangle((x+1)*spacing,y*spacing,x*spacing,(y+1)*spacing);
71 b = gfxline_append(b, box);
76 for(t=0;t<num_caros;t++) {
77 r = crc32_add_byte(r, t);
78 int x=(r%10-5)*spacing;
79 int y=((r>>4)%10-5)*spacing;
80 int sizex = ((r>>8)%4)*spacing;
84 gfxline_t*l = malloc(sizeof(gfxline_t)*5);
85 l[0].type = gfx_moveTo;l[0].next = &l[1];
86 l[1].type = gfx_lineTo;l[1].next = &l[2];
87 l[2].type = gfx_lineTo;l[2].next = &l[3];
88 l[3].type = gfx_lineTo;l[3].next = &l[4];
89 l[4].type = gfx_lineTo;l[4].next = 0;
100 gfxline_append(b, l);
104 gfxline_t*l = gfxline_makerectangle(-9*spacing,-10,9*spacing,10);
106 memset(&matrix, 0, sizeof(gfxmatrix_t));
108 matrix.m00=cos(ua);matrix.m10=sin(ua);
109 matrix.m01=-sin(ua);matrix.m11=cos(ua);
110 gfxline_transform(l, &matrix);
111 gfxline_append(b, l);
113 gfxline_append(b, gfxline_makecircle(100,100,100,100));
118 gfxline_t* make_circles(int n)
124 c = crc32_add_byte(c, t);
126 c = crc32_add_byte(c, t);
128 c = crc32_add_byte(c, t^0x55);
130 gfxline_t*c = gfxline_makecircle(x,y,r,r);
131 b = gfxline_append(b, c);
132 //b = gfxline_append(b, gfxline_makerectangle(10,10,100,100));
137 static windcontext_t onepolygon = {1};
138 static windcontext_t twopolygons = {2};
142 //gfxline_t* b = mkchessboard();
143 //gfxline_t* b = mkrandomshape(100,7);
144 gfxline_t* b = make_circles(30);
147 memset(&m, 0, sizeof(gfxmatrix_t));
151 m.m00 = cos(t*M_PI/180.0);
152 m.m01 = sin(t*M_PI/180.0);
153 m.m10 = -sin(t*M_PI/180.0);
154 m.m11 = cos(t*M_PI/180.0);
157 gfxline_t*l = gfxline_clone(b);
158 gfxline_transform(l, &m);
159 gfxpoly_t*poly = gfxpoly_from_fill(b, 0.05);
161 gfxpoly_t*poly2 = gfxpoly_process(poly, 0, &windrule_evenodd, &onepolygon);
162 gfxpoly_destroy(poly);
163 gfxpoly_destroy(poly2);
169 int test0(int argn, char*argv[])
171 gfxline_t*box1 = gfxline_makerectangle(-100,-100,100,100);
172 gfxline_t*box2 = gfxline_makerectangle(-100,-100,100,100);
173 gfxline_t*box3 = gfxline_makerectangle(-100,-100,100,100);
174 //gfxline_append(box2, box3);
176 gfxpoly_check(gfxpoly_from_stroke(box1, 2.0, gfx_capRound, gfx_joinRound, 0, 0.05));
179 memset(&matrix, 0, sizeof(gfxmatrix_t));
181 matrix.m00=cos(ua);matrix.m10=sin(ua);
182 matrix.m01=-sin(ua);matrix.m11=cos(ua);
183 //gfxline_transform(box1, &matrix);
186 //b = gfxline_append(b, box1);
187 //b = gfxline_append(b, box2);
188 //gfxline_dump(b, stderr, "");
190 gfxpoly_t*poly1 = gfxpoly_from_fill(box1, 0.05);
191 gfxpoly_t*poly2 = gfxpoly_from_fill(box2, 0.05);
195 gfxpoly_t*poly3 = gfxpoly_process(poly1, poly2, &windrule_intersect, &twopolygons);
197 gfxline_t*line = gfxline_from_gfxpoly(poly3);
198 gfxline_dump(line, stdout, "");
200 gfxpoly_destroy(poly1);
201 gfxpoly_destroy(poly2);
202 gfxpoly_destroy(poly3);
206 int test1(int argn, char*argv[])
208 gfxline_t*box1 = gfxline_makerectangle(50,50,150,150);
209 gfxline_t*box2 = gfxline_makerectangle(100,100,200,200);
210 gfxline_t*box3 = gfxline_makerectangle(100,100,200,200);
211 gfxline_t*star = mkstar(50,50, 150,150);
213 b = gfxline_append(b, box1);
214 b = gfxline_append(b, box2);
215 b = gfxline_append(b, box3);
218 memset(&matrix, 0, sizeof(gfxmatrix_t));
220 matrix.m00=cos(ua);matrix.m10=sin(ua);
221 matrix.m01=-sin(ua);matrix.m11=cos(ua);
223 //gfxline_transform(b, &matrix);
225 gfxline_dump(b, stderr, "");
226 gfxpoly_t*poly = gfxpoly_from_fill(b, 0.05);
234 gfxpoly_t*poly2 = gfxpoly_process(poly, 0, &windrule_evenodd, &onepolygon);
235 gfxpoly_destroy(poly);
236 gfxpoly_destroy(poly2);
239 int test_square(int width, int height, int num, double gridsize, char bitmaptest)
242 gfxline_t* line = malloc(sizeof(gfxline_t)*num);
244 line[t].type = t?gfx_lineTo:gfx_moveTo;
245 line[t].x = (lrand48()%width);
246 line[t].y = (lrand48()%height);
247 line[t].next = &line[t+1];
249 line[num-1].x = line[0].x;
250 line[num-1].y = line[0].y;
251 line[num-1].next = 0;
253 gfxpoly_t*poly1 = gfxpoly_from_fill(line, gridsize);
256 windrule_t*rule = &windrule_circular;
257 gfxpoly_t*poly2 = gfxpoly_process(poly1, 0, rule, &onepolygon);
259 intbbox_t bbox = intbbox_new(0, 0, width, height);
260 unsigned char*bitmap1 = render_polygon(poly1, &bbox, 1.0, rule, &onepolygon);
261 assert(bitmap_ok(&bbox, bitmap1));
262 unsigned char*bitmap2 = render_polygon(poly2, &bbox, 1.0, &windrule_evenodd, &onepolygon);
263 assert(bitmap_ok(&bbox, bitmap2));
264 if(!compare_bitmaps(&bbox, bitmap1, bitmap2)) {
265 save_two_bitmaps(&bbox, bitmap1, bitmap2, "error.png");
266 assert(!"bitmaps don't match");
269 gfxpoly_destroy(poly1);
270 gfxpoly_destroy(poly2);
273 int test2(int argn, char*argv[])
275 test_square(400,400, 3, 0.05, 1);
279 fprintf(stderr, "%d\n", t);
280 test_square(400,400, 50, 0.05, 1);
281 test_square(200,3, 1000, 1.0, 0);
282 test_square(3,200, 1000, 1.0, 0);
283 test_square(10,10, 200, 1.0, 0);
287 #include "../rfxswf.h"
288 void test3(int argn, char*argv[])
295 //gfxline_t*line = mkrandomshape(RANGE, N);
296 //windrule_t*rule = &windrule_circular;
297 //gfxline_t*line = mkchessboard();
298 gfxline_t*line = make_circles(30);
299 windrule_t*rule = &windrule_evenodd;
300 //windrule_t*rule = &windrule_circular;
303 memset(&m, 0, sizeof(m));
306 memset(&swf, 0, sizeof(SWF));
307 swf.movieSize.xmax = RANGE*20*1.41;
308 swf.movieSize.ymax = RANGE*20*1.41;
310 swf.frameRate = 25*0x100;
311 TAG * tag = swf.firstTag = swf_InsertTag(0, ST_SETBACKGROUNDCOLOR);
318 fprintf(stderr, "%d\n", t);
319 m.m00 = cos(t*M_PI/180.0);
320 m.m01 = sin(t*M_PI/180.0);
321 m.m10 = -sin(t*M_PI/180.0);
322 m.m11 = cos(t*M_PI/180.0);
326 gfxline_t*l = gfxline_clone(line);
327 gfxline_transform(l, &m);
329 gfxpoly_t*poly1 = gfxpoly_from_fill(l, 0.05);
331 gfxpoly_t*poly2 = gfxpoly_process(poly1, 0, rule, &onepolygon);
333 tag = swf_InsertTag(tag, ST_DEFINESHAPE);
337 rgb.r = rgb.g = 0x00; rgb.b = 0xff;
339 int fs = swf_ShapeAddSolidFillStyle(s,&rgb);
340 int ls = swf_ShapeAddLineStyle(s,20,&rgb);
342 swf_SetRect(tag,&swf.movieSize);
343 swf_SetShapeHeader(tag,s);
347 swf_ShapeSetAll(tag,s,UNDEFINED_COORD,UNDEFINED_COORD,0,fs,0);
350 gfxpolystroke_t*stroke = poly2->strokes;
351 for(;stroke;stroke=stroke->next) {
352 for(j=0;j<stroke->num_points-1;j++) {
353 point_t a = stroke->points[j];
354 point_t b = stroke->points[j+1];
357 swf_ShapeSetMove(tag, s, a.y, a.x);
358 swf_ShapeSetLine(tag, s, b.y - a.y, b.x - a.x);
360 swf_ShapeSetMove(tag, s, a.x, a.y);
361 swf_ShapeSetLine(tag, s, b.x - a.x, b.y - a.y);
366 swf_ShapeSetAll(tag,s,0,0,ls,0,0);
367 edge_t*e = poly2->edges;
369 swf_ShapeSetMove(tag, s, e->a.x, e->a.y);
370 swf_ShapeSetLine(tag, s, e->b.x - e->a.x, e->b.y - e->a.y);
372 swf_ShapeSetCircle(tag, s, e->a.x, e->a.y, 5*20, 5*20);
373 swf_ShapeSetCircle(tag, s, e->b.x, e->b.y, 5*20, 5*20);
378 swf_ShapeSetEnd(tag);
381 gfxpoly_destroy(poly1);
382 gfxpoly_destroy(poly2);
387 tag = swf_InsertTag(tag,ST_REMOVEOBJECT2);
390 tag = swf_InsertTag(tag,ST_PLACEOBJECT2);
391 swf_ObjectPlace(tag,t+1,t+1,NULL,NULL,NULL);
393 tag = swf_InsertTag(tag, ST_SHOWFRAME);
395 tag = swf_InsertTag(tag, ST_END);
397 swf_SaveSWF(&swf, "test.swf");
400 void rotate90(gfxpoly_t*poly)
403 gfxpolystroke_t*stroke = poly->strokes;
404 for(;stroke;stroke=stroke->next) {
405 for(j=0;j<stroke->num_points;j++) {
406 point_t a = stroke->points[j];
407 stroke->points[j].x = a.y;
408 stroke->points[j].y = a.x;
414 void test4(int argn, char*argv[])
417 DIR*_dir = opendir(dir);
421 file = readdir(_dir);
424 if(!strstr(file->d_name, ".ps"))
430 filename = allocprintf("%s/%s", dir, file->d_name);
434 windrule_t*rule = &windrule_evenodd;
435 gfxpoly_t*poly1 = gfxpoly_from_file(filename, 1.0);//0.01);
442 if(!gfxpoly_check(poly1)) {
443 printf("bad polygon\n");
447 gfxpoly_t*poly2 = gfxpoly_process(poly1, 0, rule, &onepolygon);
450 for(pass=0;pass<2;pass++) {
451 intbbox_t bbox = intbbox_from_polygon(poly1, zoom);
452 unsigned char*bitmap1 = render_polygon(poly1, &bbox, zoom, rule, &onepolygon);
453 unsigned char*bitmap2 = render_polygon(poly2, &bbox, zoom, &windrule_evenodd, &onepolygon);
454 if(!bitmap_ok(&bbox, bitmap1) || !bitmap_ok(&bbox, bitmap2)) {
455 save_two_bitmaps(&bbox, bitmap1, bitmap2, "error.png");
456 assert(!"error in bitmaps");
458 if(!compare_bitmaps(&bbox, bitmap1, bitmap2)) {
459 save_two_bitmaps(&bbox, bitmap1, bitmap2, "error.png");
460 assert(!"bitmaps don't match");
465 // second pass renders the 90° rotated version
470 gfxpoly_destroy(poly1);
471 gfxpoly_destroy(poly2);
478 #include "../gfxdevice.h"
479 #include "../pdf/pdf.h"
481 static int max_segments = 0;
482 static int max_any_segments = 0;
483 void extract_polygons_fill(gfxdevice_t*dev, gfxline_t*line, gfxcolor_t*color)
485 //gfxpoly_t*c = gfxpoly_from_fill(line, 0.05);
488 //gfxpoly_t*poly1 = gfxpoly_from_fill(line, 0.05);
489 gfxpoly_t*poly1 = gfxpoly_from_fill(line, 0.05);
491 //gfxline_dump(line, stderr, "");
492 //gfxpoly_dump(poly);
494 int size = gfxpoly_size(poly1);
496 //rectangles are boring.
497 gfxpoly_destroy(poly1);
501 max_any_segments = size > max_any_segments? size : max_any_segments;
503 fprintf(stderr, "%d segments (skipping)\n", size);
506 max_segments = size > max_segments? size : max_segments;
507 fprintf(stderr, "%d segments (max so far: %d/%d)\n", size, max_segments, max_any_segments);
510 if(!gfxpoly_check(poly1)) {
511 gfxpoly_destroy(poly1);
512 fprintf(stderr, "bad polygon\n");
516 windrule_t*rule = &windrule_evenodd;
519 intbbox_t bbox = intbbox_from_polygon(poly1, zoom);
520 unsigned char*bitmap1 = render_polygon(poly1, &bbox, zoom, rule, &onepolygon);
521 if(!bitmap_ok(&bbox, bitmap1)) {
522 fprintf(stderr, "bad polygon or error in renderer\n");
525 gfxpoly_t*poly2 = gfxpoly_process(poly1, 0, rule, &onepolygon);
526 unsigned char*bitmap2 = render_polygon(poly2, &bbox, zoom, &windrule_evenodd, &onepolygon);
527 if(!bitmap_ok(&bbox, bitmap2)) {
528 save_two_bitmaps(&bbox, bitmap1, bitmap2, "error.png");
529 assert(!"error in bitmap");
531 if(!compare_bitmaps(&bbox, bitmap1, bitmap2)) {
532 save_two_bitmaps(&bbox, bitmap1, bitmap2, "error.png");
533 assert(!"bitmaps don't match");
538 gfxpoly_destroy(poly1);
539 gfxpoly_destroy(poly2);
541 int extract_polygons_setparameter(gfxdevice_t*dev, const char*key, const char*value) {
544 void extract_polygons_startclip(gfxdevice_t*dev, gfxline_t*line)
546 extract_polygons_fill(dev, line, 0);
548 void extract_polygons_fillbitmap(gfxdevice_t*dev, gfxline_t*line, gfximage_t*img, gfxmatrix_t*imgcoord2devcoord, gfxcxform_t*cxform)
550 extract_polygons_fill(dev, line, 0);
552 void extract_polygons_fillgradient(gfxdevice_t*dev, gfxline_t*line, gfxgradient_t*gradient, gfxgradienttype_t type, gfxmatrix_t*gradcoord2devcoord)
554 extract_polygons_fill(dev, line, 0);
556 void extract_polygons_drawlink(gfxdevice_t*dev, gfxline_t*line, const char*action)
558 extract_polygons_fill(dev, line, 0);
560 void extract_polygons_addfont(gfxdevice_t*dev, gfxfont_t*font)
563 for(t=0;t<font->num_glyphs;t++) {
564 //extract_polygons_fill(dev, font->glyphs[t].line, 0);
567 void extract_polygons_endclip(gfxdevice_t*dev)
570 void extract_polygons_stroke(gfxdevice_t*dev, gfxline_t*line, gfxcoord_t width, gfxcolor_t*color, gfx_capType cap_style, gfx_joinType joint_style, gfxcoord_t miterLimit)
573 void extract_polygons_drawchar(gfxdevice_t*dev, gfxfont_t*font, int glyph, gfxcolor_t*color, gfxmatrix_t*matrix)
577 gfxdevice_t extract_polygons =
579 name: "extract polygons",
580 setparameter:extract_polygons_setparameter,
581 startclip: extract_polygons_startclip,
582 endclip: extract_polygons_endclip,
583 stroke: extract_polygons_stroke,
584 fill: extract_polygons_fill,
585 fillbitmap: extract_polygons_fillbitmap,
586 fillgradient: extract_polygons_fillgradient,
587 addfont: extract_polygons_addfont,
588 drawchar: extract_polygons_drawchar,
589 drawlink: extract_polygons_drawlink,
597 void test5(int argn, char*argv[])
599 gfxsource_t*driver = gfxsource_pdf_create();
601 DIR*_dir = opendir(dir);
605 file = readdir(_dir);
608 if(!strstr(file->d_name, ".pdf"))
610 char* filename = allocprintf("%s/%s", dir, file->d_name);
615 gfxdocument_t*doc = driver->open(driver, filename);
616 gfxdevice_t*out = &extract_polygons;
618 for(t=1;t<=doc->num_pages;t++) {
619 fprintf(stderr, "%s (page %d)\n", filename, t);
620 gfxpage_t* page = doc->getpage(doc, t);
621 page->render(page, out);
630 driver->destroy(driver);
633 int main(int argn, char*argv[])