Advertisement
If you have a new account but are having problems posting or verifying your account, please email us on hello@boards.ie for help. Thanks :)
Hello all! Please ensure that you are posting a new thread or question in the appropriate forum. The Feedback forum is overwhelmed with questions that are having to be moved elsewhere. If you need help to verify your account contact hello@boards.ie
Hi all! We have been experiencing an issue on site where threads have been missing the latest postings. The platform host Vanilla are working on this issue. A workaround that has been used by some is to navigate back from 1 to 10+ pages to re-sync the thread and this will then show the latest posts. Thanks, Mike.
Hi there,
There is an issue with role permissions that is being worked on at the moment.
If you are having trouble with access or permissions on regional forums please post here to get access: https://www.boards.ie/discussion/2058365403/you-do-not-have-permission-for-that#latest

Gimp / Photoshop need help

  • 20-09-2009 4:02pm
    #1
    Closed Accounts Posts: 8


    I have 240 photos that have been scanned as 16bit greyscale, I need them to be 8 bit. I use Gimp at the moment, on a mac, and the process to convert each photo is a bit labour intensive for me. I can't seem to find a way of setting up a macro in Gimp to do this conversion or a way to do a batch process. Is it possible in Gimp? Do I really need to bite the bullet and buy Photoshop, or is there another way to do this?


Comments

  • Registered Users, Registered Users 2 Posts: 2,262 ✭✭✭stcstc


    there is a shareware app called graphicconvertor that could do it


  • Registered Users Posts: 789 ✭✭✭Slav


    If you don't mind doing it from the command line you can use open source ImageMagick. Get it from http://www.imagemagick.org then go to the directory with you 16-bit images and run this (assuming your images have .tif extension):
    for i in ./*.tif ; do convert $i -depth 8 $(basename $i .tif)_8bit.tif ; done
    
    This will simply convert all images from 16 to 8 bit. If you need to pre-process them in 16 bit depth prior to conversion to 8-bit (like doing auto-levels, applying a curve, etc.) then you might want to use some of imagemagick scripts from here: http://www.fmwconcepts.com/imagemagick/index.php


  • Closed Accounts Posts: 8 pauldtv


    Thank you both.


Advertisement