• Global community
    • Language:
      • Deutsch
      • English
      • Español
      • Français
      • Português
  • 日本語コミュニティ
    Dedicated community for Japanese speakers
  • 한국 커뮤니티
    Dedicated community for Korean speakers
Exit
1

TIFF transparency ON by default

Explorer ,
Jul 03, 2023 Jul 03, 2023

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! 

Idea No status

Views

223

Translate

Translate

Report

Report
Community guidelines
Be kind and respectful, give credit to the original source of content, and search for duplicates before posting. Learn more
community guidelines
3 Comments
Explorer ,
Aug 14, 2024 Aug 14, 2024

Copy link to clipboard

Copied

I would also find it highly beneficial to have this option, for sake of running scripts.

Votes

Translate

Translate

Report

Report
Explorer ,
Aug 14, 2024 Aug 14, 2024

Copy link to clipboard

Copied

In the mean time, you might want to explore creating an action for saving, if you're often using the same settings.

Votes

Translate

Translate

Report

Report
Explorer ,
Aug 14, 2024 Aug 14, 2024

Copy link to clipboard

Copied

LATEST

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 

 

Votes

Translate

Translate

Report

Report