You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
libkdcraw/libkdcraw/libraw/samples/dcraw_half.c

84 lines
2.3 KiB

/* -*- C++ -*-
* File: dcraw_half.c
* Copyright 2008-2009 Alex Tutubalin <lexa@lexa.ru>
* Created: Sat Mar 8 , 2008
*
* LibRaw C API sample (emulates call to "dcraw -h")
*
* This program is free software; you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by
* the Free Software Foundation; either version 2, or (at your option)
* any later version.
*
* This program is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU General Public License for more details.
*
* You should have received a copy of the GNU General Public License
* along with this program; if not, write to the Free Software
* Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA
* 02110-1301, USA.
*/
#include <stdio.h>
#include <string.h>
#include <stdlib.h>
#include <math.h>
#include "libraw/libraw.h"
#define HANDLE_FATAL_ERROR(ret)\
if(ret)\
{\
fprintf(stderr,"%s: libraw %s\n",av[i],libraw_strerror(ret));\
if(LIBRAW_FATAL_ERROR(ret))\
exit(1); \
}\
#define HANDLE_ALL_ERRORS(ret)\
if(ret)\
{\
fprintf(stderr,"%s: libraw %s\n",av[i],libraw_strerror(ret));\
continue; \
}\
int main(int ac, char *av[])
{
int i;
libraw_data_t *iprc = libraw_init(0);
if(!iprc)
{
fprintf(stderr,"Cannot create libraw handle\n");
exit(1);
}
iprc->params.half_size = 1; /* dcraw -h */
for (i=1;i<ac;i++)
{
char outfn[1024];
int ret = libraw_open_file(iprc,av[i]);
HANDLE_ALL_ERRORS(ret);
printf("Processing %s (%s %s)\n",av[i],iprc->idata.make,iprc->idata.model);
ret = libraw_unpack(iprc);
HANDLE_ALL_ERRORS(ret);
ret = libraw_dcraw_process(iprc);
HANDLE_ALL_ERRORS(ret);
strcpy(outfn,av[i]);
strcat(outfn,".ppm");
printf("Writing to %s\n",outfn);
ret = libraw_dcraw_ppm_tiff_writer(iprc,outfn);
HANDLE_FATAL_ERROR(ret);
}
libraw_close(iprc);
return 0;
}