맵 렌더링 및 출력¶
The code snippets on this page needs the following imports:
import os
There are generally two approaches when input data should be rendered as a map:
either do it quick way using QgsMapRendererJob or produce more fine-tuned
output by composing the map with the QgsLayout
class.
단순 렌더링¶
The rendering is done creating a QgsMapSettings
object to define the rendering options,
and then constructing a QgsMapRendererJob
with those options. The latter is then
used to create the resulting image.
Here’s an example:
image_location = os.path.join(QgsProject.instance().homePath(), "render.png")
# e.g. vlayer = iface.activeLayer()
vlayer = QgsProject.instance().mapLayersByName("countries")[0]
options = QgsMapSettings()
options.setLayers([vlayer])
options.setBackgroundColor(QColor(255, 255, 255))
options.setOutputSize(QSize(800, 600))
options.setExtent(vlayer.extent())
render = QgsMapRendererParallelJob(options)
def finished():
img = render.renderedImage()
# save the image; e.g. img.save("/Users/myuser/render.png","png")
img.save(image_location, "png")
print("saved")
render.finished.connect(finished)
render.start()
서로 다른 좌표계를 가진 레이어들을 렌더링하기¶
If you have more than one layer and they have a different CRS, the simple example above will probably not work: to get the right values from the extent calculations you have to explicitly set the destination CRS
settings.setLayers(layers)
render.setDestinationCrs(layers[0].crs())
Output using print layout¶
Print layout is a very handy tool if you would like to do a more sophisticated output than the simple rendering shown above. It is possible to create complex map layouts consisting of map views, labels, legend, tables and other elements that are usually present on paper maps. The layouts can be then exported to PDF, raster images or directly printed on a printer.
The layout consists of a bunch of classes. They all belong to the core library. QGIS application has a convenient GUI for placement of the elements, though it is not available in the GUI library. If you are not familiar with Qt Graphics View framework, then you are encouraged to check the documentation now, because the layout is based on it.
The central class of the layout is the QgsLayout
class, which is derived from the Qt QGraphicsScene
class. Let us create an instance of it:
p = QgsProject()
layout = QgsLayout(p)
layout.initializeDefaults()
Now we can add various elements (map, label, …) to the layout. All these objects
are represented by classes that inherit from the base QgsLayoutItem
class.
Here’s a description of some of the main layout items that can be added to a layout.
맵 — 이 아이템은 라이브러리에게 맵 자체를 어디에 놓을지 말해줍니다. 다음은 맵을 생성해서 종이 크기 전체로 늘리는 예시 코드입니다.
map = QgsLayoutItemMap(layout) layout.addItem(map)
라벨 — 라벨을 표출할 수 있도록 해줍니다. 폰트, 색상, 정렬 및 여백을 수정할 수 있습니다.
label = QgsLayoutItemLabel(layout) label.setText("Hello world") label.adjustSizeToText() layout.addItem(label)
범례
legend = QgsLayoutItemLegend(layout) legend.setLinkedMap(map) # map is an instance of QgsLayoutItemMap layout.addItem(legend)
축척막대(scale bar)
item = QgsLayoutItemScaleBar(layout) item.setStyle('Numeric') # optionally modify the style item.setLinkedMap(map) # map is an instance of QgsLayoutItemMap item.applyDefaultSize() layout.addItem(item)
화살표
그림
basic shape
nodes based shape
polygon = QPolygonF() polygon.append(QPointF(0.0, 0.0)) polygon.append(QPointF(100.0, 0.0)) polygon.append(QPointF(200.0, 100.0)) polygon.append(QPointF(100.0, 200.0)) polygonItem = QgsLayoutItemPolygon(polygon, layout) layout.addItem(polygonItem) props = {} props["color"] = "green" props["style"] = "solid" props["style_border"] = "solid" props["color_border"] = "black" props["width_border"] = "10.0" props["joinstyle"] = "miter" symbol = QgsFillSymbol.createSimple(props) polygonItem.setSymbol(symbol)
표
Once an item is added to the layout, it can be moved and resized:
item.attemptMove(QgsLayoutPoint(1.4, 1.8, QgsUnitTypes.LayoutCentimeters))
item.attemptResize(QgsLayoutSize(2.8, 2.2, QgsUnitTypes.LayoutCentimeters))
A frame is drawn around each item by default. You can remove it as follows:
# for a composer label
label.setFrameEnabled(False)
Besides creating the layout items by hand, QGIS has support for layout templates which are essentially compositions with all their items saved to a .qpt file (with XML syntax).
Once the composition is ready (the layout items have been created and added to the composition), we can proceed to produce a raster and/or vector output.
Exporting the layout¶
To export a layout, the QgsLayoutExporter
class must be used.
base_path = os.path.join(QgsProject.instance().homePath()
pdf_path = os.path.join(base_path, "output.pdf")
exporter = QgsLayoutExporter(layout)
exporter.exportToPdf(pdf_path, QgsLayoutExporter.PdfExportSettings())
Use the exportToImage()
in case you want to export to an image instead of a PDF file.
Exporting a layout atlas¶
If you want to export all pages from a layout that has the atlas option
configured and enabled, you need to use the atlas()
method in the exporter (QgsLayoutExporter
) with small adjustments. In the following
example, the pages are exported to PNG images:
exporter.exportToImage(layout.atlas(), base_path, 'png', QgsLayoutExporter.ImageExportSettings())
Notice that the outputs will be saved in the base path folder, using the output filename expression configured on atlas.