]> granicus.if.org Git - graphviz/commitdiff
fix -Gsize
authorellson <devnull@localhost>
Sat, 26 Feb 2005 02:56:36 +0000 (02:56 +0000)
committerellson <devnull@localhost>
Sat, 26 Feb 2005 02:56:36 +0000 (02:56 +0000)
lib/common/emit.c

index e72f4ed2ce0e3f4c2b8e8bd96fd9c91b6a9e6009..479fc6ea0343e54987ec7a4a1978834df7adc5cc 100644 (file)
@@ -268,8 +268,8 @@ fprintf(stderr,"graph_sets_pageSize\n");
 
     job->boundingBox.LL.x = ROUND((job->margin.x + extra.x) * job->dpi / POINTS_PER_INCH);
     job->boundingBox.LL.y = ROUND((job->margin.y + extra.y) * job->dpi / POINTS_PER_INCH);
-    size.x = job->pageSize.x * job->dpi / POINTS_PER_INCH;
-    size.y = job->pageSize.y * job->dpi / POINTS_PER_INCH;
+    size.x = job->pageSize.x * job->zoom * job->dpi / POINTS_PER_INCH;
+    size.y = job->pageSize.y * job->zoom * job->dpi / POINTS_PER_INCH;
     if (GD_drawing(g)->landscape)
        size = exch_xyf(size);
     job->boundingBox.UR.x = job->boundingBox.LL.x + ROUND(size.x + 1);