job->pageBox.LL.x += extra.x / 2;
job->pageBox.LL.y += extra.y / 2;
}
- /* FIXME - this is used by begin_graph, but overwritten by setup_page
- so it will be wrong if two PS outputs generated from same graph.
- Perhaps it should be "pageBoundingBox" or somesuch ? */
- job->pageBox.UR = add_pointfs(job->pageBox.LL, job->pageSize);
+
+ /* FIXME, the treatment of margins doesn't look right. are margins
+ in device coords or graph coords ? what happens to margins under zooming */
+ PF2P(job->pageBox.LL,job->boundingBox.LL);
+ job->boundingBox.UR.x = ROUND(job->pageBox.LL.x + job->pageSize.x * job->zoom);
+ job->boundingBox.UR.y = ROUND(job->pageBox.LL.y + job->pageSize.y * job->zoom);
}
static void firstpage(GVC_t *gvc)
job->pageBox.UR.x = job->pageBox.LL.x + job->pageSize.x;
job->pageBox.UR.y = job->pageBox.LL.y + job->pageSize.y;
- /* establish offset to be applied, in graph coordinates */
+ /* establish pageOffset to be applied, in graph coordinates */
if (job->rotation == 0)
- job->offset = pointof(-job->pageBox.LL.x, -job->pageBox.LL.y);
+ job->pageOffset = pointof(-job->pageBox.LL.x, -job->pageBox.LL.y);
else {
- job->offset.x = (job->pagesArrayElem.y + 1) * job->pageSize.y;
- job->offset.y = -(job->pagesArrayElem.x) * job->pageSize.x;
+ job->pageOffset.x = (job->pagesArrayElem.y + 1) * job->pageSize.y;
+ job->pageOffset.y = -(job->pagesArrayElem.x) * job->pageSize.x;
}
gvrender_begin_page(gvc);
pointf margin; /* job-specific margin */
int rotation; /* job-specific page rotation */
- boxf pageBox; /* drawable region in device coords */
- /* basically width*height - margins */
- pointf pageSize; /* device page size */
+ box boundingBox; /* drawable region in device coords */
+ boxf pageBox; /* drawable region in graph coords */
+ pointf pageSize; /* page size in graph coords */
pointf pageSizeCentered; /* device page box for centering */
point pagesArraySize; /* 2D size of page array */
point pagesArrayFirst; /* 2D starting corner in */
point pagesArrayElem; /* 2D coord of current page - 0,0 based */
int numPages; /* number of pages */
int pageNum; /* current page - 1 based */
- point offset; /* offset for current page */
+ point pageOffset; /* offset for current page in graph coords */
unsigned int width; /* width in pixels */
unsigned int height; /* height in pixels */
#ifndef DISABLE_CODEGENS
else {
codegen_t *cg = job->codegen;
- box bb;
- BF2B(job->pageBox, bb);
-
if (cg && cg->begin_graph)
- cg->begin_graph(gvc, g, bb, gvc->pb);
+ cg->begin_graph(gvc, g, job->boundingBox, gvc->pb);
}
#endif
}
codegen_t *cg = job->codegen;
if (cg && cg->begin_page)
- cg->begin_page(job->g, job->pagesArrayElem, job->zoom, job->rotation, job->offset);
+ cg->begin_page(job->g, job->pagesArrayElem, job->zoom, job->rotation, job->pageOffset);
}
#endif
}