added contructor
[swftools.git] / lib / devices / rescale.c
index 53d3623..b8530b9 100644 (file)
@@ -137,31 +137,37 @@ void rescale_startpage(gfxdevice_t*dev, int width, int height)
     i->origwidth = width;
     i->origheight = height;
 
-    if(i->targetwidth && i->targetheight) {
+    if(i->targetwidth || i->targetheight) {
+        int targetwidth = i->targetwidth;
+        if(!targetwidth)
+            targetwidth = width*i->targetheight/height;
+        int targetheight = i->targetheight;
+        if(!targetheight)
+            targetheight = height*i->targetwidth/width;
        if(i->keepratio) {
-           double rx = (double)i->targetwidth / (double)width;
-           double ry = (double)i->targetheight / (double)height;
+           double rx = (double)targetwidth / (double)width;
+           double ry = (double)targetheight / (double)height;
            if(rx<ry) {
                i->matrix.m00 = rx;
                i->matrix.m11 = rx;
                i->matrix.tx = 0;
                if(i->centery) {
-                   i->matrix.ty = (i->targetheight - height*rx) / 2;
+                   i->matrix.ty = (targetheight - height*rx) / 2;
                }
            } else {
                i->matrix.m00 = ry;
                i->matrix.m11 = ry;
                if(i->centerx) {
-                   i->matrix.tx = (i->targetwidth - width*ry) / 2;
+                   i->matrix.tx = (targetwidth - width*ry) / 2;
                }
                i->matrix.ty = 0;
            }
        } else {
-           i->matrix.m00 = (double)i->targetwidth / (double)width;
-           i->matrix.m11 = (double)i->targetheight / (double)height;
+           i->matrix.m00 = (double)targetwidth / (double)width;
+           i->matrix.m11 = (double)targetheight / (double)height;
        }
        i->zoomwidth = sqrt(i->matrix.m00*i->matrix.m11);
-       i->out->startpage(i->out,i->targetwidth,i->targetheight);
+       i->out->startpage(i->out,targetwidth,targetheight);
     } else {
        i->out->startpage(i->out,(int)(width*i->matrix.m00),(int)(height*i->matrix.m11));
     }
@@ -211,7 +217,7 @@ void rescale_fillgradient(gfxdevice_t*dev, gfxline_t*line, gfxgradient_t*gradien
 {
     internal_t*i = (internal_t*)dev->internal;
     gfxline_t*line2 = transformgfxline(i, line);
-    i->out->fillgradient(i->out, line, gradient, type, matrix);
+    i->out->fillgradient(i->out, line2, gradient, type, matrix);
     gfxline_free(line2);
 }
 
@@ -233,7 +239,7 @@ void rescale_drawlink(gfxdevice_t*dev, gfxline_t*line, const char*action)
 {
     internal_t*i = (internal_t*)dev->internal;
     gfxline_t*line2 = transformgfxline(i, line);
-    i->out->drawlink(i->out, line, action);
+    i->out->drawlink(i->out, line2, action);
     gfxline_free(line2);
 }