it's handled within QC_ApplicationWindow::slotFileExport(). The actual drawing happens line 3232:
for (RS_Entity* e=graphic->firstEntity(RS2::ResolveAll);
e!=NULL; e=graphic->nextEntity(RS2::ResolveAll)) {
gv.drawEntity(&painter, e);
}
where painter is RS_PainterQt
ShinRevolver wrote
Hi there. I would like to ask, where in the code is the part where png, jpeg, svg, etc. files are created? Not the one with void QC_ApplicationWindow::slotFileExport(); Because I want to try and implement if I can export exif or jp2 files.
Much appreciated. Thanks.