Skip to content
Snippets Groups Projects
Commit 667ffdcc authored by Benjamin Jakimow's avatar Benjamin Jakimow
Browse files

added other file formats from mapcanvas image exports


Signed-off-by: Benjamin Jakimow's avatarbenjamin.jakimow <benjamin.jakimow@geo.hu-berlin.de>
parent 8bf87a35
No related branches found
No related tags found
No related merge requests found
......@@ -1125,7 +1125,16 @@ class SaveAllMapsDialog(QDialog, loadUI('saveallmapsdialog.ui')):
self.fileWidget.setStorageMode(QgsFileWidget.GetDirectory)
formats = [('Portable Network Graphics (*.png)', 'PNG')]
formats = [('Portable Network Graphics (*.png)', 'PNG'),
('Joint Photographic Experts Group (*.jpg)', 'JPG'),
('Windows Bitmap (*.bmp)', 'BMP'),
('Portable Bitmap (*.pbm)', 'PBM'),
('Portable Graymap (*.pgm)', 'PGM'),
('Portable Pixmap (*.ppm)', 'PPM'),
('X11 Bitmap (*.xbm)', 'XBM'),
('X11 Pixmap (*.xpm)', 'XPM'),
]
for t in formats:
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment