Select to view content in your preferred language

ArcGIS Pro SDK 3.1.4 epxorting to PDF issue with north arrow.

378
1
01-04-2024 05:02 AM
Labels (3)
warddourji
Emerging Contributor

I am trying to create an add-in the produce a PDF out of the current layer that we have on.

PDFFormat PDF = new PDFFormat()
{
OutputFileName = fileNamePdf,
Resolution = 300,
DoCompressVectorGraphics = true,
HasGeoRefInfo = true,
ImageCompression = ImageCompression.Adaptive,
ImageQuality = ImageQuality.Best,
LayersAndAttributes = LayersAndAttributes.None,
};
layout.Export(PDF);

everything is being exported correctly but i have in my layout the the north arrow added. that isn't being exported. when i use the export to pdf tool provided by default arcgis pro and check the option (output as an image) this is the only way the north arrow is showing.

i am using arcgis pro version: 3.1.41833

Please help.

Tags (2)
0 Kudos
1 Reply
AubriKinghorn
Esri Regular Contributor

Is your north arrow coming from a font? If so you might need to set embed fonts to true for it to be included in the export. 

Cheers,
Aubri
0 Kudos