MapsPrinter
MapsPrinter copied to clipboard
A QGIS plugin to export simultaneously multiple print layouts to various file formats
This is incorrect option: `exportSettings.textRenderFormat = 1` Should be like that: ```Python if layout.customProperty('pdfTextFormat') == 1: exportSettings.textRenderFormat = QgsRenderContext.TextFormatAlwaysText if layout.customProperty('pdfTextFormat') == 0: exportSettings.textRenderFormat = QgsRenderContext.TextFormatAlwaysOutlines # default ``` https://gis.stackexchange.com/questions/352511/setting-options-in-pdf-export-options-to-export-an-atlas-to-pdf-using-pyqgis
It's highly desirable to have a set of tests to consolidate the plugin behavior
**Is your feature request related to a problem? Please describe.** Only print layouts are currently supported. It could be nice to allow export of print reports.
**Is your feature request related to a problem? Please describe.** When exporting a layout from within QGIS, there's a validity check to flag problems, eg when a map item has...
The `Disable tiled raster layer exports` option doesn't work: This happens because`rasterize` is not in the list of `layout.customProperties()` ``` if layout.customProperty("rasterize") in ["true", True]: exportSettings.rasterizeWholeImage = True ``` Here...
Fixes https://github.com/DelazJ/MapsPrinter/issues/58