-
I confirm that the bug is fixed in CVS.
2009-10-05 08:22:10 UTC in UFRaw
-
When the "Grayscale Mode" (any conversion method) is selected, you obtain as an output an image containing two black and white photos: a stretched version of the original photo on the left and another copy (non-stretched) on the right. This is true for all the output modes (tif, jpg, gimp, ...). The image in the preview is correct. Please, see attached sample.
2009-10-03 09:09:22 UTC in UFRaw
-
I was speaking about "import to GIMP" button. The problem is there only with black and white, no problem with colors.
2009-09-12 16:36:38 UTC in UFRaw
-
Hi all,
I have noticed a problem in last CVS snapshots (I am not able to say since when at the moment): if you enable the black and white conversion you obtain an image containing two black and white photos: a stretched version of the original photo on the left and another copy (non-stretched) on the right.
Best,
Alberto.
2009-09-12 15:33:46 UTC in UFRaw
-
dcraw builds fine if you change line 8357 from:
if ((cp = strchr (sp="nbrkStqmHACg", opt)))
to
if ((cp = strchr ((char *)(sp="nbrkStqmHACg"), opt)))
Regards,
Alberto.
2009-07-09 19:17:30 UTC in UFRaw
-
Here is the result:
g++ -O4 -o dcraw dcraw.c
dcraw.c: In function ‘int main(int, const char**)’:
dcraw.c:8357: error: invalid conversion from ‘const char*’ to ‘char*’
Though, if you build it with gcc (same command, just replace g++ with gcc) it builds fine.
Regards,
Alberto.
2009-07-08 21:34:53 UTC in UFRaw
-
Niels,
on a 64 bit fedora 11 system the last CVS release does not seem to build:
make[2]: Leaving directory `/home/alberto/nobackup/ufraw/ufraw.t/icons'
make[2]: Entering directory `/home/alberto/nobackup/ufraw/ufraw.t'
if g++ -DHAVE_CONFIG_H -I. -I. -I. -I/usr/include/gtk-2.0 -I/usr/lib64/gtk-2.0/include -I/usr/include/atk-1.0 -I/usr/include/cairo -I/usr/include/pango-1.0...
2009-07-07 19:16:29 UTC in UFRaw
-
Niels,
I quickly tested your patch and it does not seem to build with it. It still gives the same problem as the original sources:
dcraw.cc: In member function 'int DCRaw::main(int, const char**)':
dcraw.cc:8505: error: invalid conversion from 'const char*' to 'char*'
Regards,
Alberto.
2009-07-05 12:35:54 UTC in UFRaw
-
Niels,
I will also try your patch. At the moment I am using the following one (derived from the Fedora one) and everything seems to work fine.
Regards,
Alberto
--- ufraw/dcraw.cc 2009-05-15 19:20:11.000000000 +0200
+++ u/dcraw.cc 2009-06-19 23:56:15.000000000 +0200
@@ -8437,8 +8437,8 @@
static int timestamp_only=0, thumbnail_only=0, identify_only=0;
static int...
2009-07-04 09:57:39 UTC in UFRaw
-
OK, I didn't know about that!
Regards,
Alberto.
2009-06-21 18:32:54 UTC in UFRaw