MapsPrinter icon indicating copy to clipboard operation
MapsPrinter copied to clipboard

A QGIS plugin to export simultaneously multiple print layouts to various file formats

Results 6 MapsPrinter issues
Sort by recently updated
recently updated
newest added

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

enhancement

**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.

enhancement

**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...

enhancement

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...

bug

Fixes https://github.com/DelazJ/MapsPrinter/issues/58