Copy link to clipboard
Copied
I'm using TIFFs with transparency very often and ticking option when saving file again and again is annoying.
So I suggest to add option in Preferences-File Handling-Save transparent TIFF always on.
Thanks!
Views
Translate
Report
never-displayed
I would also find it highly beneficial to have this option, for sake of running scripts.
Votes
In the mean time, you might want to explore creating an action for saving, if you're often using the same settings.
If you're scripting saving out your TIFs, that should be easy to do. See the TiffSavingOptions page in the JavaScript guide. You'd want something like:
tiffSaveOptions = new TiffSaveOptions(); tiffSaveOptions.embedColorProfile = true; tiffSaveOptions.alphaChannels = false; tiffSaveOptions.layers = true; tiffSaveOptions.byteOrder = ByteOrder.IBM; tiffSaveOptions.transparency = true; tiffSaveOptions.imageCompression = TIFFEncoding.TIFFLZW;
Edit: is there not a way to nest replies on this forum? This was in reply to @FalconArt