/* static int N_pages; */
/* static point Pages; */
-static double Scale;
static double Dpi;
static double DevScale;
static double CompScale;
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)
/* int page_number; */
/* point sz; */
- Scale = scale;
- CompScale = Zoom * Scale * DevScale;
Rot = rot;
/* page_number = page.x + page.y * Pages.x + 1; */
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;
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),
static int SP;
#endif
-static double Scale;
static double Dpi;
static double DevScale;
static double CompScale;
GraphFocus.y = (GD_bb(g).UR.y - GD_bb(g).LL.y) / 2.;
Zoom = 1.0;
}
+ CompScale = Zoom * DevScale;
if (onetime) {
init_imap();
{
char *url;
- Scale = scale;
- CompScale = Zoom * Scale * DevScale;
Rot = rot;
if (Output_lang == CMAPX) {
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);
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
}