8.3 Exporting Maps and Layouts (PDF, PNG, JPEG, PDF Layers, Color Profiles)
Key Takeaways
- PDF exports can preserve vector graphics, embed fonts, and include togglable PDF layers, making them the standard for high-quality map sharing.
- Raster exports (PNG, JPEG, TIFF) differ in compression and capabilities; PNG supports transparency (alpha channels), while JPEG is lossy and best for continuous tone imagery.
- Resolution (DPI) heavily impacts export size and quality; 96 DPI is standard for screen viewing, while 300 DPI or higher is required for high-quality professional print.
- Color profiles ensure color consistency; RGB is used for digital screens, whereas CMYK is necessary for commercial printing presses.
- The arcpy.mp module allows for the automated, scripted export of maps, layouts, and map series in bulk.
Exporting Maps and Layouts
Once a map or layout is authored in ArcGIS Pro, it must be exported to share with stakeholders, embed in reports, or send to a professional printer. Understanding export formats, resolution, color management, and vector vs. raster capabilities is critical for the exam and real-world cartographic production.
Export Formats Overview
ArcGIS Pro supports exporting to both Vector and Raster formats.
- Vector formats (PDF, SVG, EPS, AIX) store geometry as mathematical paths. Lines, polygons, and text remain perfectly sharp at any zoom level. However, raster layers (like imagery basemaps or elevation surfaces) within the layout will still be exported as pixels. Note that AIX is a specialized format designed specifically for the ArcGIS Maps for Adobe Creative Cloud extension.
- Raster formats (PNG, JPEG, TIFF, BMP) flatten the entire layout into a grid of pixels. Zooming in will eventually reveal pixelation.
Vector Format: PDF (Portable Document Format)
PDF is the absolute industry standard for map exports because it supports a hybrid of vector and raster data. Crucial PDF export settings include:
- Export PDF Layers: When enabled, the table of contents from ArcGIS Pro is preserved in the PDF. Users opening the PDF in Adobe Acrobat or other compliant viewers can turn individual map layers (e.g., roads, rivers, contours) on and off. This provides an interactive experience in a static file.
- Embed Fonts: Ensures that custom fonts used in the layout display correctly on other computers, even if those computers do not have the font installed. This slightly increases file size but guarantees cartographic fidelity.
- Image Compression: Controls how raster layers (like imagery) are compressed within the PDF. You can choose JPEG compression for smaller files, or Deflate/LZW for lossless quality.
- Vector Resolution: Defines how precisely vector coordinates are written. A higher vector resolution reduces geometric simplification but increases file size.
Raster Formats: PNG, JPEG, TIFF
When exporting to image formats, you must choose the correct format based on your needs:
- PNG (Portable Network Graphics): Uses lossless compression. It is excellent for maps with large areas of flat color, line work, and text. Crucially, PNG supports an Alpha Channel, allowing the map background to be completely transparent. This is ideal for embedding map frames over colored backgrounds in PowerPoint or web pages.
- JPEG (Joint Photographic Experts Group): Uses lossy compression. It is best suited for continuous-tone images like aerial photography. It does not support transparency and can introduce compression artifacts (fuzziness or 'ghosting') around sharp edges like text and borders.
- TIFF (Tagged Image File Format): A heavy, professional format that supports lossless compression and embedded georeferencing (GeoTIFF) when exporting from a map view. It is standard for high-quality archival and GIS analysis, but less common for simple layout sharing.
Resolution (DPI)
Resolution is measured in DPI (Dots Per Inch) and dictates the pixel density of the exported raster (or rasterized elements in a vector export).
- 96 DPI: Standard for screen viewing (web, email, PowerPoint). Produces smaller file sizes that are quick to load and share.
- 300 DPI: The minimum standard for high-quality physical printing on desktop printers or standard presses.
- 600+ DPI: Used for high-end professional plotters or maps with extremely fine, detailed text and dense linework.
[!WARNING] Exporting a massive 36" x 48" poster layout at 600 DPI will result in an astronomically large file size and may consume significant system memory (RAM) during export. Always balance the DPI resolution against the physical page size.
Color Profiles: RGB vs. CMYK
Color management is essential to ensure that the colors you see on your monitor closely match the colors produced by a printer or viewed on another device.
ArcGIS Pro handles color profiles natively. During export, you must select the appropriate color model:
- RGB (Red, Green, Blue): An additive color model used for emitting light. Use RGB when the map will be viewed on digital screens (monitors, projectors, web, mobile devices). The RGB gamut is very large and supports bright, neon colors.
- CMYK (Cyan, Magenta, Yellow, Key/Black): A subtractive color model used for ink and dye on paper. Use CMYK when the map is being sent to a commercial printing press. Since the CMYK gamut is smaller than the RGB gamut, highly vibrant colors on your screen (RGB) may appear dull, muddy, or washed out when converted and exported to CMYK. It is best practice to design your map using CMYK color palettes if you know the final product will be printed.
Export Extents: Map vs. Layout
It is important to distinguish between exporting a Map View and a Layout View.
- Exporting a Layout: Exports the entire page composition, including all marginalia, based on the physical page size (e.g., Letter, A4) defined in the layout properties.
- Exporting a Map: Exports only the geographic map view. When exporting a map, you have an option to Clip to graphic extent. If checked, the export bounds match the exact rectangular area of the current view. If you use a selected graphic (like a drawn rectangle in the map) as the extent, the export clips exactly to that shape.
Automating Exports with Python (arcpy.mp)
For bulk exporting, ArcGIS Pro provides the arcpy.mp Python module, which is crucial for enterprise workflows. You can script the export of layouts and map series.
For example, Layout.exportToPDF() allows you to automate the generation of daily PDF reports without manual UI interaction. Similarly, the MapSeries class has an exportToPDF() method that can export all pages, specific pages, or compile them into a single multi-page PDF document. This is highly efficient for organizations that need to generate hundreds of map pages overnight.
You need to export a map layout as an image to place on a website. The website has a dark blue background, and you want the layout's white background to be transparent so the website color shows through. Which export format MUST you choose?
You are preparing a high-quality map layout that will be sent to a professional commercial printing press. Which color profile and DPI combination is the most appropriate?
When exporting a layout to PDF, why is it considered best practice to check the 'Embed Fonts' option?