Flow for Preflighting InDesign files

Post Reply
Sean IO
Newbie
Posts: 18
Joined: Mon Dec 03, 2018 7:58 pm

Flow for Preflighting InDesign files

Post by Sean IO »

I am sure several of you have ran into this issue and have come up with a solution. To preflight an InDesign file a PDF needs to be exported in order for Pitstop to preflight it. The problem is if an image or font is missing it is not reflected on the PDF or preflight (unless I am missing something). The font gets substituted and the image is the low res proxy. I know I can set it up to stop/fail when it runs in to this problem but I want it to report the missing fonts and images (kind of defeats the purpose of an automated workflow).

My question is how is everyone else handling this issue? As of right now I am thinking of three potential ways to with scripting, text files, and XML.

--Have InDesign export it's own preflight as a text file and parse the data to be added later to the Pitstop report (I have created a custom preflight report)

--Have InDesign export it's own preflight report as a PDF then export the PDF as XML and combine later with the Pitstop report

--Have a javascript pull the info from InDesign and add it later to the Pitstop report

Is there a more sophisticated way to achieve this or am I on the right track here?

Thanks,
Zoranj
Member
Posts: 107
Joined: Tue Sep 20, 2016 7:37 pm
Location: Canada

Re: Flow for Preflighting InDesign files

Post by Zoranj »

You can fail it if it does not have font or image is low-res.
In my solution I just took fail connection and emailed it to whoever submitted it in the flow (email from submit point).
Malcolm Mackenzie
Member
Posts: 121
Joined: Wed Mar 22, 2017 5:05 pm
Location: London, UK
Contact:

Re: Flow for Preflighting InDesign files

Post by Malcolm Mackenzie »

If you use Indesign to recreate the package it will list any missing fonts or images in the xml report.
Screenshot 2019-02-19 09.29.07.png
Screenshot 2019-02-19 09.29.07.png (30.68 KiB) Viewed 6669 times
<?xml version="1.0" encoding="UTF-8"?>
<AdobeConfiguratorLog>
<FlowElementName>Adobe InDesign</FlowElementName>
<Job>
<Name>1234_missing test Folder</Name>
<Status>Error</Status>
<StatusMessage>FontsFail: Unavailable fonts were found in the document; ImagesFail: Unavailable images were found in the document</StatusMessage>
<MissingFonts>
<Font>InaiMathi</Font>
</MissingFonts>
<MissingImages>
<Image>Bullet proof pdf.jpg</Image>
</MissingImages>
</Job>
</AdobeConfiguratorLog>
Sean IO
Newbie
Posts: 18
Joined: Mon Dec 03, 2018 7:58 pm

Re: Flow for Preflighting InDesign files

Post by Sean IO »

Thanks Malcom,

Your suggestion seems more conventional. I had no idea you could repackage InDesign files from Switch. I will give it a spin and see what happens.
Sean IO
Newbie
Posts: 18
Joined: Mon Dec 03, 2018 7:58 pm

Re: Flow for Preflighting InDesign files

Post by Sean IO »

Thanks Malcom,

Your suggestion seems more conventional. I had no idea you could repackage InDesign files from Switch. I will give it a spin and see what happens.
Sean IO
Newbie
Posts: 18
Joined: Mon Dec 03, 2018 7:58 pm

Re: Flow for Preflighting InDesign files

Post by Sean IO »

Thanks Malcom,

Your suggestion seems more conventional. I had no idea you could repackage InDesign files from Switch. I will give it a spin and see what happens.
Post Reply