hello dear digikam-fans
how to view photos and to rapidly change the major categories i have several hundred images (photographs) taht i want to view on opensuse linux version 13.1 i want to view the images - and of while doing so i want to turn the colored images into b/w Question; which is the best - ie. the quickest way to do so. note; i have installed the following thigns on my opensuse 13.1: - gimp the great grahical tool - digicam - the great tool to view images and pictures - Gwenview Version 4.11.4 on KDE 4.11.5 so again here the question: which tool allowes to view the color(ed) image and to turn it - on the fly - in to black and white? BTW: can i tell linux to swith the colors - in general - to black and white? is this doable... looks like we could write a small shell script, utilizing imagemagick.- maybe like this: for i in *jpg ; do mogrify -colorspace Gray "$i" ; done this is just a quick hack. i haven't tried it. also, it's not interactive and simply changes all jpg's to grayscale, even if they already are grayscale. btw we need more information about imagemagick. see the results: ]martin@linux-70ce:~/Bilder> martin@linux-70ce:~/Bilder> for i in *jpg ; do mogrify -colorspace Gray "$i" ; done mogrify: unable to open image `*jpg': Datei oder Verzeichnis nicht gefunden @ error/blob.c/OpenBlob/2643. mogrify: no decode delegate for this image format `*jpg' @ error/constitute.c/ReadImage/552. martin@linux-70ce:~/Bilder> what can i do!? On Sun, Sep 14, 2014 at 9:41 PM, <[hidden email]> wrote: Send Digikam-users mailing list submissions to -- _______________________________________________ Digikam-users mailing list [hidden email] https://mail.kde.org/mailman/listinfo/digikam-users |
On 2014-09-14 22:06, Martin Kaspar wrote:
> for i in *jpg ; do mogrify -colorspace Gray "$i" ; done you need to repeat "$i" for output: for i in *jpg ; do mogrify -colorspace Gray "$i" "$i" ; done > > this is just a quick hack. i haven't tried it. also, it's not interactive and > simply changes all jpg's to grayscale, even if they already are grayscale. no problem to convert anyway, but you can use jpeginfo to check if it's necessary (grey -> 8bit, color -> 24bit) > btw we need more information about imagemagick. man (1) mogrify man (1) convert man (1) ImageMagick google... -- Wybo _______________________________________________ Digikam-users mailing list [hidden email] https://mail.kde.org/mailman/listinfo/digikam-users |
In reply to this post by Martin Kaspar
Am Sun, 14 Sep 2014 22:06:15 +0200
schrieb Martin Kaspar <[hidden email]>: > btw we need more information about imagemagick. http://www.imagemagick.org/script/command-line-tools.php Regards Lutz _______________________________________________ Digikam-users mailing list [hidden email] https://mail.kde.org/mailman/listinfo/digikam-users |
Free forum by Nabble | Edit this page |