Skip to main content

I’m trying to write a PDF, currently attached to a GIS point feature class, to a PDF file. Preference being that this would be an additional page to another. I currently have a FeatureReader accessing the Attribute Table for the feature class. I have tried using the Adobe PDF GeoSpatial Writer but I am not getting anything but a blank PDF document. Is there a transformer or set of transformers that handles this specific workflow? The Data attribute on the Attachments table contains the original PDF document’s information.

Thank you all, 

@stevelawdis try pdf styler transformer.


Hello @stevelawdis 

It isn’t necessary to use the PDF writer to write the PDF files that are attachments on a geodatabase feature class.

The attachment table’s DATA field already contains a BLOB that represents the PDF file. So all you need is to output the BLOBs onto disk by either using an AttributeFileWriter transformer or the Data writer. This is true for formats other than PDF as well.

Attached is an example workspace that demonstrates this. The source geodatabase has a point feature class with an associated attachment table. If you navigate to the specified output directory after running the workspace, you should see the PDF files associated with the point feature class written on your file system.


Thank you Debbie! The attached workbench is exactly what I was looking for to export the attachment table PDFs!


Reply