Login  Register

Re: Help please.

Posted by dxli on Feb 11, 2014; 2:29am
URL: https://forum.librecad.org/Help-please-tp5709539p5709540.html

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.