-=+=- -=+=- -=+=- -=+=- -=+=- -=+=- -=+=- -=+=- -=+=- -=+=- -=+=- -=+=- -=+=- -=+=- -=+=- -=+=- -=+=- -=+=- -=+=- -=+=- -=+=- -=+=- -=+=- -=+=- -=+=- -=+=- -=+=- -=+=- -=+=- -=+=- (c) WidthPadding Industries 1987 0|455|0 -=+=- -=+=- -=+=- -=+=- -=+=- -=+=- -=+=- -=+=- -=+=- -=+=- -=+=- -=+=- -=+=- -=+=- -=+=- -=+=- -=+=- -=+=- -=+=- -=+=- -=+=- -=+=- -=+=- -=+=- -=+=- -=+=- -=+=- -=+=- -=+=- -=+=-
SoCoder -> Link Home -> Useful Apps


 
HoboBen
Created : 11 November 2010
Edited : 11 November 2010

Ufraw - camera raw viewer/exporter for linux



https://ufraw.sourceforge.net/Guide.html
I needed to extract some camera raw images (these were cannon .CR2 files). Ufraw seemed to meet the challenge.

There is a windows version hidden away, but Linux is the first-class citizen.

Here's what I did:



Ufraw then emits .PPM (Portable pixmap) files, which you can edit with gimp or view with the preview tool (e.g. Eye of GNOME) on linux as necessary.

But JPGs for photos are superior, so simply run each PPM through cjpeg. It's included by default on virtually every linux distribution.

 

Comments


Saturday, 18 June 2011, 16:44
Helm
ufraw-batch also has an option to create JPEG directly. Enter the following command to get an overview of its options:

ufraw-batch -h

Here is an example: create JPEG with a quality setting of 95:

ufraw-batch --out-type=jpg --compression=95 *CRW
Sunday, 19 June 2011, 05:07
HoboBen
Good to know, thank you!