i have gotten a request to export files with a .tiff extention.
Flame defaults to .tif
is there a way to change it?
Thanks in advance.
I don’t know how you would change it but I don’t think it matters. Some older file systems could only handle 3 characters for file extensions.
.jpg vs .jpeg, .tif vs .tiff
              
              
              3 Likes
            
            
          rename it
              
              
              1 Like
            
            
          Adobe Bridge has a great rename function for image sequences and multiple files.
              
              
              1 Like
            
            
          On Mac if you select multiple files and select rename in right click menu you automatically get a search and preplace popup.
On PC (yes, Flame folks may not have that option) there’s a fantastic ‘bulk rename’ utility with lots of options.
https://mywiki.wooledge.org/BashFAQ/030
for file in *.tif; do 
    mv -- "$file" "${file%tif}.tiff"
done
Should work for linux, CD into the directory with all the tif files …
or send them a email telling them its the same thing.
              
              
              2 Likes