bvibber / hdrfix

tool for converting HDR screenshots to SDR with suitable tone-mapping
114 stars 10 forks source link

Include a script for converting all JXR files in a folder to tone mapped PNG #10

Open Berny23 opened 11 months ago

Berny23 commented 11 months ago

I wrote a very handy and short PowerShell script for this purpose. Posting it here in case anyone finds it useful: Get-ChildItem -Path ./*.jxr | Foreach { .\hdrfix.exe --exposure=-2 $_.fullname "$($_.BaseName).png" }

Maybe this could be included as a ps1 file or directly via a command line parameter.