![]() |
|
Uploading tiff files in zenphoto gallery - Printable Version +- ZenphotoCMS Forum (https://forum.zenphoto.org) +-- Forum: Support (https://forum.zenphoto.org/forum-1.html) +--- Forum: General support (https://forum.zenphoto.org/forum-4.html) +--- Thread: Uploading tiff files in zenphoto gallery (/thread-13028.html) |
Uploading tiff files in zenphoto gallery - MyAGzenphoto - 2017-11-14 Hello, Giuseppe Angelini Uploading tiff files in zenphoto gallery - acrylian - 2017-11-14 Use some photo editing software… resizing images is really nothing that specific… Uploading tiff files in zenphoto gallery - MyAGzenphoto - 2017-11-22 Hello, !/bin/bashfor f in $(find -name *.tif); do echo "Converting $f"; convert "$f" "$(basename "$f" .tif).jpg"; donefor f in .tif; do echo "Converting $f"; convert "$f" "$(basename "$f" .tif).jpg"; done assuming the script is in my TIF directory and that ../JPG exists. I thing this way I have a solution concerning my old tif files. Best Regards. Giuseppe Angelini Uploading tiff files in zenphoto gallery - acrylian - 2017-11-22 If you don't change the resolution, you would not loose it. I don't think that your script does that but I am not familar with the scrip tlanguage you used. But you might loose quality as jpg is generally lossy compress while tiff is not. Uploading tiff files in zenphoto gallery - MyAGzenphoto - 2017-11-22 Do you mean, I loose some quality and I have less compression ? Uploading tiff files in zenphoto gallery - acrylian - 2017-11-22 Not necessary, jpeg has smaller files but lossy compression if compressed. An uncompressed jpeg is bascially as good as a tiff. But the point of using jpgs is compression to get smaller files. Uploading tiff files in zenphoto gallery - MyAGzenphoto - 2017-11-22 Hello, Best Regards. Giuseppe Angelini Uploading tiff files in zenphoto gallery - acrylian - 2017-11-22 If these are important images I would probably keep the original tiffs locally. |