Editing Images and Editor Setup |
Top Previous Next |
Editing Images and Editor Setup Right click on the image and select "Edit Image" to open the image in an image editor (or press F3). For this feature to work you need to tell DSLR Remote Pro for Windows how to run the image editor by selecting "Setup Image Editor" from the File menu. Select "Automatically edit image when a photo is taken" to automatically load images into an editor when they are taken. Please take care not to load too many images into your editor as Windows may run low on memory causing the editor or DSLR Remote Pro for Windows to fail. You can specify whether to automatically edit raw and JPEG files, raw files only or JPEG files only using the dropdown list.
Using Tokens
The command line can use tokens to allow the command to be modified or the command to be made conditional. If the command line is an empty string the editor command will be ignored.
Example 1: only running a Photoshop droplet in photo booth mode if the photo booth images folder contains the string "droplet" The command to run a Photoshop droplet is: droplet.ahk {photoboothimage} (see Modifying photos before printing for details)
The {photoboothDir} token returns the path of the photo booth images folder. The {contains,str1,str2} token can be used to test whether the photo booth images folder contains the string 'droplet' e.g. {contains,{photoboothDir},droplet}. If {if,test,str1,str2} token can be used to return the droplet command or an empty string by using the result of the {contains,str1,str2} token e.g. {if,{contains,{photoboothDir},droplet},droplet.ahk {photoboothimage},}
Breaking this down using two example photo booth images folders:
Example 2: only performing AI background removal in photo booth mode if the photo booth images folder contains the string "aibg" The command to run the AI background removal utility is: C:\Program Files (x86)\BreezeSys\DSLR Remote Pro\RemoveBackground.exe
The {photoboothDir} token returns the path of the photo booth images folder. The {contains,str1,str2} token can be used to test whether the photo booth images folder contains the string 'aibg' e.g. {contains,{photoboothDir},aibg}. If {if,test,str1,str2} token can be used to return the AI background removal command or an empty string by using the result of the {contains,str1,str2} token e.g.
Please note: to use the droplet.ahk AutoHotKey script you need to install AutoHotKey v1.1 on your computer. This is a free download from https://autohotkey.com
|