Page 1 of 1

Script File Processing

Posted: Mon Nov 07, 2022 6:41 am
by willie001
When executing a script file BatchPhoto keep on prompting for GhostScript to be installed.

I installed GhostScript 32 bit, restarted BatchPhoto and restarted my machine and still get the same issue.

I am NOT processing any pdf files, just adding a few watermarks to jpg images.

I need the script to run silently in the background without any human intevention.

Please help

Re: Script File Processing

Posted: Mon Nov 07, 2022 8:21 am
by Cosmin
Hi,

Thank you for using BatchPhoto.

The GhostScript library is required if you try to process any of Adobe's image formats: EPS, PSD, EPI, EPT, PS* etc. If you only process regular formats like JPG, PNG, TIF, GIF, and so on, GhostScript should not be required.

If you want to hide the BatchPhoto interface completely, you need to add the following lines in the script file:

Code: Select all

<Properties Class="Script">
 <Property Name="DisableNotifications">1</Property>
 <Property Name="HideProcessing">1</Property>
</Properties>

Re: Script File Processing

Posted: Tue Nov 08, 2022 7:25 am
by willie001
Hi, I do hide the Notifications and Processing but still gets the popup to install GhostScript.

Re: Script File Processing

Posted: Wed Nov 09, 2022 12:03 am
by willie001
Never mind, found the issue.

I am processing thousands of files at a time and there seems to be a few PDF's in between them and that caused the popup to appear.

Filtering them out now.

Thanks.