Summary: | batch convert from tif to jpg creates thumbnail and main jpeg with wrong names. | ||
---|---|---|---|
Product: | [Applications] digikam | Reporter: | Richard Taylor <rjt-kde-bugs> |
Component: | Plugin-Bqm-Convert | Assignee: | Digikam Developers <digikam-bugs-null> |
Status: | RESOLVED FIXED | ||
Severity: | normal | CC: | caulier.gilles |
Priority: | NOR | ||
Version: | unspecified | ||
Target Milestone: | --- | ||
Platform: | unspecified | ||
OS: | Linux | ||
Latest Commit: | Version Fixed In: | 7.6.0 | |
Sentry Crash Report: |
Description
Richard Taylor
2004-09-17 19:09:03 UTC
The problem is because of the way that ImageMagik convert handles images with embedded thumbnails. The following simple patch fixes the problem for me. I guess that someone else should check that it does not break other peoples conversions. diff -u -3 -p -r1.18 convertimagesdialog.cpp --- kipi-plugins/batchprocessimages/convertimagesdialog.cpp 21 Sep 2004 10:33:15 -0000 1.18 +++ kipi-plugins/batchprocessimages/convertimagesdialog.cpp 21 Sep 2004 21:49:33 -0000 @@ -323,7 +323,7 @@ QString ConvertImagesDialog::makeProcess *proc << "-verbose"; - *proc << item->pathSrc(); + *proc << item->pathSrc() + "[0]"; if ( !albumDest.isNull() ) // No preview mode ! { Richard This patch fix the problem. Thanks I have also patched all makeProcess() methods for all others BatchProcessImages plugins. |