It appears that Imagemagick can handle sid. There's a good chance it's already in your readhat distro, from a command line, simply try:
convert image.sid image.jpg
if you don't have "convert", install imagemagick - it's either on your SRC RPMs disk, or you can download the rpm from the imagemagick website.
convert is pretty handy - use it with a for loop to convert all sid files to jpgs (or tifs) - in tcsh:
Code:
foreach f (*.sid)
echo $f
convert $f $f:r.jpg
end
