]> granicus.if.org Git - graphviz/commitdiff
rearrange previous fix to give scale to old psgen.c
authorellson <devnull@localhost>
Thu, 27 Jan 2005 18:46:54 +0000 (18:46 +0000)
committerellson <devnull@localhost>
Thu, 27 Jan 2005 18:46:54 +0000 (18:46 +0000)
lib/common/gdgen.c
lib/common/mapgen.c
lib/gvc/gvrender.c

index c0c5e2aa55ad7510c45bb80f8a9ae21680f36b08..44ca50d6e527ee6b5acf7ef716a6c4a3884ebfeb 100644 (file)
@@ -62,7 +62,6 @@ static gdImagePtr im;
 
 /* static int  N_pages; */
 /* static point        Pages; */
-static double Scale;
 static double Dpi;
 static double DevScale;
 static double CompScale;
@@ -157,6 +156,7 @@ static void init1_gd(GVC_t * gvc, graph_t * g, box bb, point pb)
        GraphFocus.y = (GD_bb(g).UR.y - GD_bb(g).LL.y) / 2.;
        Zoom = 1.0;
     }
+    CompScale = Zoom * DevScale;
 }
 
 static void init2_gd(gdImagePtr im)
@@ -384,8 +384,6 @@ gd_begin_page(graph_t * g, point page, double scale, int rot, point offset)
 /*     int             page_number; */
 /*     point           sz; */
 
-    Scale = scale;
-    CompScale = Zoom * Scale * DevScale;
     Rot = rot;
 
 /*     page_number = page.x + page.y * Pages.x + 1; */
@@ -572,7 +570,7 @@ static void gd_textline(point p, textline_t * line)
        return;
 
     strex.flags = gdFTEX_RESOLUTION;
-    strex.hdpi = strex.vdpi = Dpi * Zoom * Scale;
+    strex.hdpi = strex.vdpi = Dpi * Zoom;
 
     if (cstk[SP].pen == P_NONE)
        return;
@@ -604,9 +602,9 @@ static void gd_textline(point p, textline_t * line)
     ep.x = mp.x + line->width;
 
     mp = gdpt(mp);
-    if (fontsz * Zoom * Scale <= FONTSIZE_MUCH_TOO_SMALL) {
+    if (fontsz * Zoom <= FONTSIZE_MUCH_TOO_SMALL) {
        /* ignore entirely */
-    } else if (fontsz * Zoom * Scale <= FONTSIZE_TOO_SMALL) {
+    } else if (fontsz * Zoom <= FONTSIZE_TOO_SMALL) {
        /* draw line in place of text */
        ep = gdpt(ep);
        gdImageLine(im, ROUND(mp.x), ROUND(mp.y),
index 7ad2fc2be6c646ace4c2b8984867e2a100385953..d6e39ec02a0bd7e4a08c0c0b89cee91aa95c1c32 100644 (file)
@@ -52,7 +52,6 @@ static context_t cstk[MAXNEST];
 static int SP;
 #endif
 
-static double Scale;
 static double Dpi;
 static double DevScale;
 static double CompScale;
@@ -314,6 +313,7 @@ static void map_begin_graph(GVC_t * gvc, graph_t * g, box bb, point pb)
        GraphFocus.y = (GD_bb(g).UR.y - GD_bb(g).LL.y) / 2.;
        Zoom = 1.0;
     }
+    CompScale = Zoom * DevScale;
 
     if (onetime) {
        init_imap();
@@ -330,8 +330,6 @@ map_begin_page(graph_t * g, point page, double scale, int rot,
 {
     char *url;
 
-    Scale = scale;
-    CompScale = Zoom * Scale * DevScale;
     Rot = rot;
 
     if (Output_lang == CMAPX) {
index 5fe4482ceda53d281ece4cd9eba124abb888017c..53022b9f522345d86c51321cf37ed43526dcb14b 100644 (file)
@@ -315,9 +315,7 @@ void gvrender_begin_page(GVC_t * gvc, double scale, int rot, point offset)
     gvrender_job_t *job = gvc->job;
     gvrender_engine_t *gvre = job->render_engine;
 
-//    gvc->scale = scale;
     job->rot = rot;
-//    gvc->offset = offset;
     if (gvre && gvre->begin_page)
        gvre->begin_page(job, gvc->g->name,
                          job->pagesArrayElem, job->pageNum, job->numPages);
@@ -327,7 +325,7 @@ void gvrender_begin_page(GVC_t * gvc, double scale, int rot, point offset)
        codegen_t *cg = job->codegen;
 
        if (cg && cg->begin_page)
-           cg->begin_page(gvc->g, job->pagesArrayElem, 1.0, rot, offset);
+           cg->begin_page(gvc->g, job->pagesArrayElem, job->zoom, rot, offset);
     }
 #endif
 }