शायद मेरे दूसरे जवाब पर भी एक नज़र है क्योंकि इस एक के बाद एक और नए अप-टू-डेट टूल पैदा हुए हैं।
मैं नीचे दिए गए कोड पर आया हूं जो दुर्भाग्य से पूरी तरह कार्यात्मक नहीं है। यह उपर्युक्त समाधान पर और अन्य प्रश्नों पर आधारित है:
कैसे प्रोग्राम को छवि के रूप में एक रचना निर्यात करें?
मैं XML से QgsPaperItem के लिए सेटिंग्स कैसे पढ़ सकता हूं?
मैपिंग कैनवस को PNG के रूप में सहेजना पारदर्शी पृष्ठभूमि के साथ प्रोग्रामिक रूप से QGIS के साथ?
मेरा कोड .qgs फ़ाइल से .qpt निकालने और टेम्पलेट से एक संगीतकार को लोड करने में सक्षम है। यह कंपोज़र को एक .png फ़ाइल में भी प्रिंट करता है और कंपोज़र में संग्रहीत लेबल और आकृतियों को सही ढंग से प्रदर्शित करता है।
हालांकि यह वास्तविक मानचित्र और परत से संबंधित सभी तत्वों को लोड करने में विफल रहता है (परत से अभिव्यक्ति युक्त लेबल या तो नहीं खींचा जाता है)। मुझे लगता है कि मैं थोड़ा सा चूक गया कि परियोजना को कैसे लोड किया जाना चाहिए और संगीतकार से जुड़ा होना चाहिए।
टिम सुटन के मूल लेख की टिप्पणी में कुछ लोगों ने उल्लेख किया कि वे विंडोज के तहत एक ही चरण में फंस गए थे (यह मेरा मामला है)। यह वास्तव में निराशाजनक है क्योंकि मुझे लगता है कि जवाब वास्तव में वास्तव में निकट है। प्रिय इंटरनेट कृपया मदद!
इसके अलावा यह अजगर पर मेरा पहला प्रयास है, इसलिए मुझे आशा है कि आप दयालु होंगे;)
#This python code aim to programmatically export the first composer stored in a qgs file using PyQgis API v 2.10
#Version 0.4 (non functional) WTFPL MarHoff 2015 - This code is mostly a "frankenstein" stub made with a lot of other snippets. Feel welcome to improve!
#Credits to gis.stackexchange community : drnextgis,ndawson,patdevelop,dakcarto,ahoi, underdark & Tim Sutton from kartoza
#More informations and feedback can be found at /gis/144792/
#This script assume your environement is setup for PyGis as a stand-alone script. Some nice hints for windows users : https://gis.stackexchange.com/a/130102/17548
import sys
from PyQt4.QtCore import *
from PyQt4.QtXml import *
from qgis.core import *
from qgis.gui import *
gui_flag = True
app = QgsApplication(sys.argv, gui_flag)
# Make sure QGIS_PREFIX_PATH is set in your env if needed!
app.initQgis()
# Name of the .qgs file without extension
project_name = 'myproject'
#Important : The code is assuming that the .py file is in the same folder as the project
folderPath = QString(sys.path[0])+'/'
projectPath = QString(folderPath+project_name+'.qgs')
templatePath = QString(folderPath+project_name+'_firstcomposer.qpt')
imagePath = QString(folderPath+project_name+'.png')
#Getting project as Qfile and the first composer of the project as a QDomElement from the .qgs
projectAsFile = QFile(projectPath)
projectAsDocument = QDomDocument()
projectAsDocument.setContent(projectAsFile)
composerAsElement = projectAsDocument.elementsByTagName("Composer").at(0).toElement()
#This block store the composer into a template file
templateFile = QFile(templatePath)
templateFile.open(QIODevice.WriteOnly)
out = QTextStream(templateFile)
#I need next line cause UTF-8 is somewhat tricky in my setup, comment out if needed
out.setCodec("UTF-8")
param = QString
composerAsElement.save(out,2)
templateFile.close()
#And this block load back the composer into a QDomDocument
#Nb: This is ugly as hell, i guess there is a way to convert a QDomElement to a QDomDocument but every attemps failed on my side...
composerAsDocument = QDomDocument()
composerAsDocument.setContent(templateFile)
#Now that we got all we can open our project
canvas = QgsMapCanvas()
QgsProject.instance().read(QFileInfo(projectAsFile))
bridge = QgsLayerTreeMapCanvasBridge(
QgsProject.instance().layerTreeRoot(), canvas)
bridge.setCanvasLayers()
#Lets try load that composer template we just extracted
composition = QgsComposition(canvas.mapSettings())
composition.loadFromTemplate(composerAsDocument, {})
#And lets print in our .png
image = composition.printPageAsRaster(0)
image.save(imagePath,'png')
#Some cleanup maybe?
QgsProject.instance().clear()
QgsApplication.exitQgis()
मैं पिछले कोड से theses लाइनों गिरा के रूप में वे सब पर कुछ भी नहीं लग रहा था। उन्होंने कोई त्रुटि नहीं की, लेकिन कोई बेहतर नहीं किया।
# You must set the id in the template
map_item = composition.getComposerItemById('map')
map_item.setMapCanvas(canvas)
map_item.zoomToExtent(canvas.extent())
# You must set the id in the template
legend_item = composition.getComposerItemById('legend')
legend_item.updateLegend()
composition.refreshItems()
और प्रिंट भी हटा दिए गए हैं क्योंकि वे प्रिंटपेजएस्टर का उपयोग करते समय अनावश्यक लगते थे ()
dpmm = dpi / 25.4
width = int(dpmm * composition.paperWidth())
height = int(dpmm * composition.paperHeight())
# create output image and initialize it
image = QImage(QSize(width, height), QImage.Format_ARGB32)
image.setDotsPerMeterX(dpmm * 1000)
image.setDotsPerMeterY(dpmm * 1000)
image.fill(0)
# render the composition
imagePainter = QPainter(image)
composition.renderPage(imagePainter, 0)
imagePainter.end()