replaced libart with new polygon code
[swftools.git] / lib / devices / rescale.c
1 /* rescale.c
2
3    Part of the swftools package.
4
5    Copyright (c) 2006 Matthias Kramm <kramm@quiss.org> 
6  
7    This program is free software; you can redistribute it and/or modify
8    it under the terms of the GNU General Public License as published by
9    the Free Software Foundation; either version 2 of the License, or
10    (at your option) any later version.
11
12    This program is distributed in the hope that it will be useful,
13    but WITHOUT ANY WARRANTY; without even the implied warranty of
14    MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
15    GNU General Public License for more details.
16
17    You should have received a copy of the GNU General Public License
18    along with this program; if not, write to the Free Software
19    Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307  USA */
20
21 #include <stdlib.h>
22 #include <stdio.h>
23 #include <stdarg.h>
24 #ifndef WIN32
25 #include <unistd.h>
26 #endif
27 #include <memory.h>
28 #include <math.h>
29 #include <string.h>
30 #include "rescale.h"
31 #include "../types.h"
32 #include "../mem.h"
33 #include "../gfxdevice.h"
34 #include "../gfxtools.h"
35
36 typedef struct _internal {
37     gfxdevice_t*out;
38     int origwidth;
39     int origheight;
40     int targetwidth;
41     int targetheight;
42     int centerx, centery;
43     gfxmatrix_t matrix;
44     double zoomwidth;
45     int keepratio;
46 } internal_t;
47
48 static int verbose = 1;
49 static void dbg(char*format, ...)
50 {
51     if(!verbose)
52         return;
53     char buf[1024];
54     int l;
55     va_list arglist;
56     va_start(arglist, format);
57     vsnprintf(buf, sizeof(buf)-1, format, arglist);
58     va_end(arglist);
59     l = strlen(buf);
60     while(l && buf[l-1]=='\n') {
61         buf[l-1] = 0;
62         l--;
63     }
64     printf("(device-rescale) %s\n", buf);
65     fflush(stdout);
66 }
67
68 char gfxline_isRect(gfxline_t*line)
69 {
70     return 1;
71     if(!line)
72         return 0;
73     double x1=line->x,y1=line->x,x2=line->x,y2=line->y;
74     int nx1=0,nx2=0,ny1=0,ny2=0;
75     line = line->next;
76     while(line) {
77         if(line->type != gfx_lineTo)
78             return 0;
79         if(line->x < x1) {
80             x1 = line->x;
81             nx1++;
82         } else if(line->y < y1) {
83             y1 = line->y;
84             ny1++;
85         } else if(line->x > x2) {
86             x2 = line->x;
87             nx2++;
88         } else if(line->y > y1) {
89             y2 = line->y;
90             ny2++;
91         }
92         line = line->next;
93     }
94     return (nx1+nx2)==1 && (ny1+ny2)==1;
95 }
96
97 gfxline_t*transformgfxline(internal_t*i, gfxline_t*line)
98 {
99     /* special case: transformed rectangle 
100     if(gfxline_isRect(line)) {
101         gfxbbox_t bbox = gfxline_getbbox(line);
102         if(fabs(bbox.xmin)<0.1 && fabs(bbox.ymin)<0.1 &&
103            fabs(bbox.ymax-i->origwidth)<0.1 && fabs(bbox.ymax-i->origheight)<0.1) {
104             gfxline_t r[5];
105             r[0].x = 0;             r[0].y = 0;           r[0].type = gfx_moveTo;r[0].next = &r[1];
106             r[1].x = i->targetwidth;r[1].y = 0;           r[1].type = gfx_lineTo;r[1].next = &r[2];
107             r[2].x = i->targetwidth;r[2].y = i->targetheight;r[2].type = gfx_lineTo;r[2].next = &r[3];
108             r[3].x = 0;             r[3].y = i->targetheight;r[3].type = gfx_lineTo;r[3].next = &r[4];
109             r[4].x = 0;             r[4].y = 0;           r[4].type = gfx_lineTo;r[4].next = 0;
110             return gfxline_clone(r);
111         }
112     } */
113     gfxline_t*line2 = gfxline_clone(line);
114     gfxline_transform(line2, &i->matrix);
115     return line2;
116 }
117
118 int rescale_setparameter(gfxdevice_t*dev, const char*key, const char*value)
119 {
120     internal_t*i = (internal_t*)dev->internal;
121     if(!strcmp(key, "keepratio")) {
122         i->keepratio = atoi(value);
123         return 1;
124     } else {
125         if(i->out) {
126             return i->out->setparameter(i->out,key,value);
127         } else {
128             return 0;
129         }
130     }
131 }
132
133 void rescale_startpage(gfxdevice_t*dev, int width, int height)
134 {
135     internal_t*i = (internal_t*)dev->internal;
136
137     i->origwidth = width;
138     i->origheight = height;
139
140     if(i->targetwidth || i->targetheight) {
141         int targetwidth = i->targetwidth;
142         if(!targetwidth)
143             targetwidth = width*i->targetheight/height;
144         int targetheight = i->targetheight;
145         if(!targetheight)
146             targetheight = height*i->targetwidth/width;
147         if(i->keepratio) {
148             double rx = (double)targetwidth / (double)width;
149             double ry = (double)targetheight / (double)height;
150             if(rx<ry) {
151                 i->matrix.m00 = rx;
152                 i->matrix.m11 = rx;
153                 i->matrix.tx = 0;
154                 if(i->centery) {
155                     i->matrix.ty = (targetheight - height*rx) / 2;
156                 }
157             } else {
158                 i->matrix.m00 = ry;
159                 i->matrix.m11 = ry;
160                 if(i->centerx) {
161                     i->matrix.tx = (targetwidth - width*ry) / 2;
162                 }
163                 i->matrix.ty = 0;
164             }
165         } else {
166             i->matrix.m00 = (double)targetwidth / (double)width;
167             i->matrix.m11 = (double)targetheight / (double)height;
168         }
169         i->zoomwidth = sqrt(i->matrix.m00*i->matrix.m11);
170         i->out->startpage(i->out,targetwidth,targetheight);
171     } else {
172         i->out->startpage(i->out,(int)(width*i->matrix.m00),(int)(height*i->matrix.m11));
173     }
174 }
175
176 void rescale_startclip(gfxdevice_t*dev, gfxline_t*line)
177 {
178     internal_t*i = (internal_t*)dev->internal;
179     gfxline_t*line2 = transformgfxline(i, line);
180     i->out->startclip(i->out,line2);
181     gfxline_free(line2);
182 }
183
184 void rescale_endclip(gfxdevice_t*dev)
185 {
186     internal_t*i = (internal_t*)dev->internal;
187     i->out->endclip(i->out);
188 }
189
190 void rescale_stroke(gfxdevice_t*dev, gfxline_t*line, gfxcoord_t width, gfxcolor_t*color, gfx_capType cap_style, gfx_joinType joint_style, gfxcoord_t miterLimit)
191 {
192     internal_t*i = (internal_t*)dev->internal;
193     gfxline_t*line2 = transformgfxline(i, line);
194     i->out->stroke(i->out, line2, width*i->zoomwidth, color, cap_style, joint_style, miterLimit);
195     gfxline_free(line2);
196 }
197
198 void rescale_fill(gfxdevice_t*dev, gfxline_t*line, gfxcolor_t*color)
199 {
200     internal_t*i = (internal_t*)dev->internal;
201     gfxline_t*line2 = transformgfxline(i, line);
202     i->out->fill(i->out, line2, color);
203     gfxline_free(line2);
204 }
205
206 void rescale_fillbitmap(gfxdevice_t*dev, gfxline_t*line, gfximage_t*img, gfxmatrix_t*matrix, gfxcxform_t*cxform)
207 {
208     internal_t*i = (internal_t*)dev->internal;
209     gfxline_t*line2 = transformgfxline(i, line);
210     gfxmatrix_t m2;
211     gfxmatrix_multiply(&i->matrix, matrix, &m2);
212     i->out->fillbitmap(i->out, line2, img, &m2, cxform);
213     gfxline_free(line2);
214 }
215
216 void rescale_fillgradient(gfxdevice_t*dev, gfxline_t*line, gfxgradient_t*gradient, gfxgradienttype_t type, gfxmatrix_t*matrix)
217 {
218     internal_t*i = (internal_t*)dev->internal;
219     gfxline_t*line2 = transformgfxline(i, line);
220     i->out->fillgradient(i->out, line2, gradient, type, matrix);
221     gfxline_free(line2);
222 }
223
224 void rescale_addfont(gfxdevice_t*dev, gfxfont_t*font)
225 {
226     internal_t*i = (internal_t*)dev->internal;
227     i->out->addfont(i->out, font);
228 }
229
230 void rescale_drawchar(gfxdevice_t*dev, gfxfont_t*font, int glyphnr, gfxcolor_t*color, gfxmatrix_t*matrix)
231 {
232     internal_t*i = (internal_t*)dev->internal;
233     gfxmatrix_t m2;
234     gfxmatrix_multiply(&i->matrix, matrix, &m2);
235     i->out->drawchar(i->out, font, glyphnr, color, &m2);
236 }
237
238 void rescale_drawlink(gfxdevice_t*dev, gfxline_t*line, const char*action)
239 {
240     internal_t*i = (internal_t*)dev->internal;
241     gfxline_t*line2 = transformgfxline(i, line);
242     i->out->drawlink(i->out, line2, action);
243     gfxline_free(line2);
244 }
245
246 void rescale_endpage(gfxdevice_t*dev)
247 {
248     internal_t*i = (internal_t*)dev->internal;
249     i->out->endpage(i->out);
250 }
251
252 gfxresult_t* rescale_finish(gfxdevice_t*dev)
253 {
254     internal_t*i = (internal_t*)dev->internal;
255     gfxdevice_t*out = i->out;
256     free(dev->internal);dev->internal = 0;i=0;
257     if(out) {
258         return out->finish(out);
259     } else {
260         return 0;
261     }
262 }
263
264 void gfxdevice_rescale_init(gfxdevice_t*dev, gfxdevice_t*out, int width, int height, double scale)
265 {
266     internal_t*i = (internal_t*)rfx_calloc(sizeof(internal_t));
267     memset(dev, 0, sizeof(gfxdevice_t));
268
269     dev->name = "rescale";
270
271     dev->internal = i;
272
273     dev->setparameter = rescale_setparameter;
274     dev->startpage = rescale_startpage;
275     dev->startclip = rescale_startclip;
276     dev->endclip = rescale_endclip;
277     dev->stroke = rescale_stroke;
278     dev->fill = rescale_fill;
279     dev->fillbitmap = rescale_fillbitmap;
280     dev->fillgradient = rescale_fillgradient;
281     dev->addfont = rescale_addfont;
282     dev->drawchar = rescale_drawchar;
283     dev->drawlink = rescale_drawlink;
284     dev->endpage = rescale_endpage;
285     dev->finish = rescale_finish;
286
287     gfxmatrix_unit(&i->matrix);
288     i->targetwidth = width;
289     i->targetheight = height;
290     i->zoomwidth = 1.0;
291     i->centerx = 1;
292         
293     i->matrix.m00 = scale;
294     i->matrix.m01 = 0;
295     i->matrix.m11 = scale;
296     i->matrix.m10 = 0;
297     i->matrix.tx = 0;
298     i->matrix.ty = 0;
299     i->zoomwidth = scale;
300
301     i->out = out;
302 }
303
304 void gfxdevice_rescale_setzoom(gfxdevice_t*dev, double scale)
305 {
306     internal_t*i = (internal_t*)dev->internal;
307     if(strcmp(dev->name, "rescale")) {
308         fprintf(stderr, "Internal error: can't cast device %s to a rescale device\n", dev->name);
309         return;
310     }
311     i->matrix.m00 = scale;
312     i->matrix.m01 = 0;
313     i->matrix.m11 = scale;
314     i->matrix.m10 = 0;
315     i->matrix.tx = 0;
316     i->matrix.ty = 0;
317     i->zoomwidth = scale;
318 }
319 void gfxdevice_rescale_setdevice(gfxdevice_t*dev, gfxdevice_t*out)
320 {
321     internal_t*i = (internal_t*)dev->internal;
322     if(strcmp(dev->name, "rescale")) {
323         fprintf(stderr, "Internal error: can't cast device %s to a rescale device\n", dev->name);
324         return;
325     }
326     i->out = out;
327 }
328
329 gfxdevice_t* gfxdevice_rescale_new(gfxdevice_t*out, int width, int height, double scale)
330 {
331     gfxdevice_t* d = (gfxdevice_t*)malloc(sizeof(gfxdevice_t));
332     gfxdevice_rescale_init(d, out, width, height, scale);
333     return d;
334 }