Looking for Scripter - HDR Conversion Script

Upload Photoshop Scripts, download Photoshop Scripts, Discussion and Support of Photoshop Scripts

Moderators: Tom, Kukurykus

Production Plus
Posts: 1
Joined: Thu Jan 12, 2017 9:20 pm

Looking for Scripter - HDR Conversion Script

Post by Production Plus »

I need the following script created:
I'm looking to get this First thing January 16th 9am CST.
Contact me if available (natemcgraw@productionplus.com)

Code: Select all


Ask & Browse: Select folder of input Photos (variable: inputDIR)
Ask & Browse: Select folder for Exported Photos (variable: exportDIR)
Ask: Export File Name (variable: filename)
Ask: Full Automation or Manual Editing (variable: autoEDIT)

// Importing Files
File->Automate->Merge to HDR Pro
Use = Folder
Browse = inputDIR
CLICK Open

// Merging HDR Files
Mode = 32 Bit
If autoEDIT = TRUE
Remove ghost = TRUE
Complete Toning in Adobe Camera Raw = TRUE
CLICK - Tone in ACR
If autoEDIT = FALSE
Complete Toning in Adobe Camera Raw = TRUE
WAIT TILL CLICK - Tone in ACR

// Camera RAW
If autoEDIT = TRUE
CLICK OK
If autoEDIT = FALSE
WAIT TILL CLICK - OK

// Photoshop Editing
If autoEDIT = TRUE
Continue to Next Step
If autoEDIT = FALSE
Message: When ready to continue press (x).
WAIT TILL CLICK - (x)

// HQ Image Resize
Image -> Image Resize…
Width = 8000
Resample: Automatic
CLICK - OK

// Export HQ
File -> Save As...
Save As: filename
Location: …exportDIR/HDRIs/
Format: OpenEXR
CLICK - OK

// OpenEXR Write Options
If autoEDIT = TRUE
Alpha Channel Data = Use Alpha Channel
Compression = None
If autoEDIT = FALSE
WAIT TILL CLICK - OK

// LQ Image Resize
Image -> Image Resize…
Width = 4000
Resample: Automatic
CLICK - OK

// Export LQ
File -> Save As...
Save As: filename_sm
Location: …exportDIR/HDRIs/
Format: OpenEXR
CLICK - OK

// OpenEXR Write Options
If autoEDIT = TRUE
Alpha Channel Data = Use Alpha Channel
Compression = None
If autoEDIT = FALSE
WAIT TILL CLICK - OK

// Export JPG
File -> Export -> Export As…
Format: JPG
Quality: 100%
Scale: 100%
Format: JPG
CLICK - Export All…

//Export
Export As: filename
Location: …exportDIR/Background/

// Export Thumbnail
File -> Export -> Export As…
Format: JPG
Quality: 100%
Scale: 10%
Format: JPG
CLICK - Export All…

//Export
Export As: filename
Location: …exportDIR/Thumbnails/

END