আমার অন্যান্য উত্তরটির দিকেও নজর দিন কারণ এটির পর থেকে আরও নতুন আপ-টু-ডেট সরঞ্জাম উদ্ভূত হয়েছে।
আমি নীচের কোডটিতে এসেছি যা দুর্ভাগ্যবশত পুরোপুরি কার্যকর নয়। এটি উপরের সমাধানের ভিত্তিতে এবং অন্যদের প্রশ্নের উপর ভিত্তি করে:
কীভাবে প্রোগ্রাম হিসাবে কোনও রচনাটি চিত্র হিসাবে রপ্তানি করবেন?
এক্সএমএল থেকে আমি কীভাবে QgsPaperItem এর সেটিংস পড়তে পারি?
কিউজিসের সাথে স্বচ্ছ পটভূমির সাথে পিএনজি হিসাবে মানচিত্রের ক্যানভাস সংরক্ষণ করছেন?
আমার কোড একটি .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()
আমি পূর্ববর্তী কোড থেকে থিস লাইনগুলি বাদ দিয়েছিলাম কারণ তারা দেখে মনে হয় কিছুই করার নেই। তারা কোনও ত্রুটি তৈরি করেছে তবে এর চেয়ে ভাল আর কিছু করতে পারেনি।
# 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()