------- You are receiving this mail because: -------
You are the assignee for the bug, or are watching the assignee. http://bugs.kde.org/show_bug.cgi?id=125916 Summary: Problem with opening 16bit TIFF Product: digikam Version: 0.9.0-svn Platform: Slackware Packages OS/Version: Linux Status: UNCONFIRMED Severity: normal Priority: NOR Component: general AssignedTo: digikam-devel kde org ReportedBy: dudasg freemail hu Version: 0.9.0-svn (using KDE KDE 3.5.1) Installed from: Slackware Packages Compiler: gcc 3.3.6 OS: Linux Opening a 16bit TIFF file (that is generated by an external RAW converter software) is not possible both in digikam or showfoto. More precisely: After clicking on the TIFF file it writes "TIFF file identified" to the console, but the opened editor/viewer shows pretty weird output (black and white overlapped lines, that reminds to the original image). The file can be downloaded from: http://amigos.amiga.hu/dudeeg/digikam_tiff/IMG_4224-01.tif The output from "identify" : $ identify -verbose IMG_4224-01.tif IMG_4224-01.tif TIFF 923x590 DirectClass 3.1mb 0.060u 0:01 Image: IMG_4224-01.tif Format: TIFF (Tagged Image File Format) Geometry: 923x590 Class: DirectClass Type: TrueColor Endianess: MSB Colorspace: RGB Channel depth: Red: 16-bits Green: 16-bits Blue: 16-bits Channel statistics: Red: Min: 2855 (0.0435645) Max: 65535 (1) Mean: 20836 (0.317938) Standard deviation: 9853.33 (0.150352) Green: Min: 3369 (0.0514076) Max: 61791 (0.94287) Mean: 23748 (0.362371) Standard deviation: 8250.34 (0.125892) Blue: Min: 875 (0.0133516) Max: 59798 (0.912459) Mean: 14503.7 (0.221312) Standard deviation: 7718.65 (0.117779) Colors: 544569 Rendering-intent: Undefined Resolution: 300x300 Units: PixelsPerInch Filesize: 3.1mb Interlace: None Background Color: white Border Color: #DFDFDFDFDFDF Matte Color: grey74 Dispose: Undefined Iterations: 0 Compression: None Orientation: TopLeft Make: Canon Model: Canon EOS 350D DIGITAL Signature: 240dfae4e98c9567455d25dbc0ae7eb65cf6717d6e03c1057869d8e3e59d65e3 Profile-icc: 3144 bytes 0x00000000: 000c484c 696e6f02 1000006d 6e747252 47422058 ---HLino----mntrRGB 0x00000190: 595a2007 ce000200 09000600 31000061 6373704d XYZ -Î-------1--acsp ..... (HEX dump follows for several lines...looks like an embedded color profile??) Tainted: False User Time: 0.010u Elapsed Time: 0:01 Pixels per second: 7.4mb Version: ImageMagick 6.2.3 02/06/06 Q16 http://www.imagemagick.org Regards, Gabor _______________________________________________ Digikam-devel mailing list [hidden email] https://mail.kde.org/mailman/listinfo/digikam-devel |
------- You are receiving this mail because: -------
You are the assignee for the bug, or are watching the assignee. http://bugs.kde.org/show_bug.cgi?id=125916 ------- Additional Comments From dudasg freemail hu 2006-04-19 23:00 ------- "installed from: Slackware packages" line is of course not true...was a mistake..sorry _______________________________________________ Digikam-devel mailing list [hidden email] https://mail.kde.org/mailman/listinfo/digikam-devel |
In reply to this post by Bugzilla from dudasg@freemail.hu
------- You are receiving this mail because: -------
You are the assignee for the bug, or are watching the assignee. http://bugs.kde.org/show_bug.cgi?id=125916 ------- Additional Comments From caulier.gilles free fr 2006-04-19 23:50 ------- Dubas, I have no problem to see your 'Spider' photograph in Image editor using current trunk implementation. Really nice picture ! I suspect a problem relevant of your libtiff. Can you give me : - libtiff version. - messages from the console when you load this image (after to have updated svn). Note : here, i'm use Mandriva 2006 with libtiff 3.6.1 Gilles Caulier _______________________________________________ Digikam-devel mailing list [hidden email] https://mail.kde.org/mailman/listinfo/digikam-devel |
In reply to this post by Bugzilla from dudasg@freemail.hu
------- You are receiving this mail because: -------
You are the assignee for the bug, or are watching the assignee. http://bugs.kde.org/show_bug.cgi?id=125916 ------- Additional Comments From caulier.gilles free fr 2006-04-20 00:21 ------- SVN commit 531715 by cgilles: digikam from trunk : Fix broken thumbnail creation by digiKam KIO-slave with 16 bits TIFF images unrecognized properly by dcraw::parse method like a real tiff images. CCBUGS: 125916 CCMAIL: digikam-devel kde org M +32 -8 digikamthumbnail.cpp M +1 -0 digikamthumbnail.h --- trunk/extragear/graphics/digikam/kioslave/digikamthumbnail.cpp #531714:531715 @ -35,6 +35,7 @ #include <qimage.h> #include <qdatastream.h> #include <qfile.h> +#include <qfileinfo.h> #include <qdir.h> #include <qwmatrix.h> #include <qregexp.h> @ -337,17 +338,22 @ if (regenerate) { - // Try JPEG loading : JPEG files without using Exif Thumb. - if ( !loadJPEG(img, url.path())) + // In first we trying to load image using the file extension. This is mandatory because + // some tiff files are detected like RAW files by dcraw::parse method. + if ( !loadByExtension(img, url.path()) ) { - // Try to load with dcraw : RAW files. - if (!loadDCRAW(img, url.path())) + // Try JPEG loading : JPEG files without using Exif Thumb. + if ( !loadJPEG(img, url.path()) ) { - // Try to load with DImg : TIFF, PNG, etc. - if (!loadDImg(img, url.path())) + // Try to load with dcraw : RAW files. + if (!loadDCRAW(img, url.path()) ) { - // Try to load with KDE thumbcreators : video files and others stuff. - loadKDEThumbCreator(img, url.path()); + // Try to load with DImg : TIFF, PNG, etc. + if (!loadDImg(img, url.path()) ) + { + // Try to load with KDE thumbcreators : video files and others stuff. + loadKDEThumbCreator(img, url.path()); + } } } } @ -427,6 +433,24 @ finished(); } +bool kio_digikamthumbnailProtocol::loadByExtension(QImage& image, const QString& path) +{ + QFileInfo fileInfo(path); + if (!fileInfo.exists()) + return false; + + QString ext = fileInfo.extension().upper(); + + if (ext == QString("JPEG") || ext == QString("JPG")) + return (loadJPEG(image, path)); + else if (ext == QString("PNG")) + return (loadDImg(image, path)); + else if (ext == QString("TIFF") || ext == QString("TIF")) + return (loadDImg(image, path)); + + return false; +} + ///////////////////////////////////////////////////////////////////////////////////////// // JPEG Extraction --- trunk/extragear/graphics/digikam/kioslave/digikamthumbnail.h #531714:531715 @ -44,6 +44,7 @ private: + bool loadByExtension(QImage& image, const QString& path); bool loadJPEG(QImage& image, const QString& path); bool loadDImg(QImage& image, const QString& path); bool loadKDEThumbCreator(QImage& image, const QString& path); _______________________________________________ Digikam-devel mailing list [hidden email] https://mail.kde.org/mailman/listinfo/digikam-devel |
In reply to this post by Bugzilla from dudasg@freemail.hu
------- You are receiving this mail because: -------
You are the assignee for the bug, or are watching the assignee. http://bugs.kde.org/show_bug.cgi?id=125916 ------- Additional Comments From caulier.gilles free fr 2006-04-20 09:29 ------- SVN commit 531782 by cgilles: digikam from stable : Fix broken thumbnail creation by digiKam KIO-slave with 16 bits TIFF images unrecognized properly by dcraw::parse method like a real tiff images. CCBUGS: 125916 CCMAIL: digikam-devel kde org M +55 -34 digikamthumbnail.cpp M +32 -29 digikamthumbnail.h --- branches/stable/extragear/graphics/digikam/kioslave/digikamthumbnail.cpp #531781:531782 @ -1,30 +1,27 @ -////////////////////////////////////////////////////////////////////////////// -// -// DIGIKAMTHUMBNAIL.CPP -// -// Copyright (C) 2003-2004 Renchi Raju <renchi at pooh.tam.uiuc.edu> -// Gilles CAULIER <caulier dot gilles at free.fr> -// -// 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 of the License, 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., 675 Mass Ave, Cambridge, MA 02139, USA. -// -////////////////////////////////////////////////////////////////////////////// +/* ============================================================ + * Authors: Renchi Raju <renchi pooh tam uiuc edu> + * Gilles Caulier <caulier dot gilles at kdemail dot net> + * Date : 2003-01-15 + * Description : digiKam KIO slave to get image thumbnails. + * + * Copyright 2003-2005 by Renchi Raju, Gilles Caulier + * Copyright 2006 by Gilles Caulier + * + * 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. + * + * ============================================================ */ #define XMD_H -#include <digikam_export.h> - // Qt Includes. #include <qcstring.h> @ -32,6 +29,7 @ #include <qimage.h> #include <qdatastream.h> #include <qfile.h> +#include <qfileinfo.h> #include <qdir.h> #include <qwmatrix.h> #include <qregexp.h> @ -80,6 +78,7 @ #include "dcraw_parse.h" #include "digikamthumbnail.h" +#include "digikam_export.h" #define X_DISPLAY_MISSING 1 #include <Imlib2.h> @ -342,20 +341,25 @ if (regenerate) { - // Try JPEG loading... - if ( !loadJPEG(img, url.path()) ) + // In first we trying to load image using the file extension. This is mandatory because + // some tiff files are detected like RAW files by dcraw::parse method. + if ( !loadByExtension(img, url.path()) ) { - // Try to load with imlib2 - if ( !loadImlib2(img, url.path()) ) + // Try JPEG loading... + if ( !loadJPEG(img, url.path()) ) { - // Try to load with QT/KDELib - if (!img.load(url.path())) + // Try to load with dcraw : RAW files. + if ( !loadDCRAW(img, url.path()) ) { - // Try to load with KDE thumbcreators - if (!loadKDEThumbCreator(img, url.path())) + // Try to load with imlib2 : TIFF, PNG, etc. + if ( !loadImlib2(img, url.path()) ) { - // Try to load with dcraw - loadDCRAW( img, url.path() ); + // Try to load with QT/KDELib + if ( !img.load(url.path()) ) + { + // Try to load with KDE thumbcreators : video files and others stuff. + loadKDEThumbCreator(img, url.path()); + } } } } @ -436,7 +440,24 @ finished(); } +bool kio_digikamthumbnailProtocol::loadByExtension(QImage& image, const QString& path) +{ + QFileInfo fileInfo(path); + if (!fileInfo.exists()) + return false; + + QString ext = fileInfo.extension().upper(); + if (ext == QString("JPEG") || ext == QString("JPG")) + return (loadJPEG(image, path)); + else if (ext == QString("PNG")) + return (image.load(path)); + else if (ext == QString("TIFF") || ext == QString("TIF")) + return (image.load(path)); + + return false; +} + ///////////////////////////////////////////////////////////////////////////////////////// // JPEG Extraction --- branches/stable/extragear/graphics/digikam/kioslave/digikamthumbnail.h #531781:531782 @ -1,25 +1,24 @ -////////////////////////////////////////////////////////////////////////////// -// -// DIGIKAMTHUMBNAIL.H -// -// Copyright (C) 2003-2004 Renchi Raju <renchi at pooh.tam.uiuc.edu> -// Gilles CAULIER <caulier dot gilles at free.fr> -// -// 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 of the License, 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., 675 Mass Ave, Cambridge, MA 02139, USA. -// -////////////////////////////////////////////////////////////////////////////// +/* ============================================================ + * Authors: Renchi Raju <renchi pooh tam uiuc edu> + * Gilles Caulier <caulier dot gilles at kdemail dot net> + * Date : 2003-01-15 + * Description : digiKam KIO slave to get image thumbnails. + * + * Copyright 2003-2005 by Renchi Raju, Gilles Caulier + * Copyright 2006 by Gilles Caulier + * + * 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. + * + * ============================================================ */ #ifndef _digikamthumbnail_H_ #define _digikamthumbnail_H_ @ -36,6 +35,7 @ class kio_digikamthumbnailProtocol : public KIO::SlaveBase { + public: kio_digikamthumbnailProtocol(int argc, char** argv); @ -44,22 +44,25 @ private: + bool loadByExtension(QImage& image, const QString& path); bool loadJPEG(QImage& image, const QString& path); bool loadImlib2(QImage& image, const QString& path); bool loadKDEThumbCreator(QImage& image, const QString& path); bool loadDCRAW(QImage& image, const QString& path); void createThumbnailDirs(); - int cachedSize_; +private: - int org_width_; - int org_height_; - int new_width_; - int new_height_; + int cachedSize_; - QString smallThumbPath_; - QString bigThumbPath_; + int org_width_; + int org_height_; + int new_width_; + int new_height_; + QString smallThumbPath_; + QString bigThumbPath_; + QApplication *app_; int argc_; char** argv_; _______________________________________________ Digikam-devel mailing list [hidden email] https://mail.kde.org/mailman/listinfo/digikam-devel |
In reply to this post by Bugzilla from dudasg@freemail.hu
------- You are receiving this mail because: -------
You are the assignee for the bug, or are watching the assignee. http://bugs.kde.org/show_bug.cgi?id=125916 ------- Additional Comments From dudasg freemail hu 2006-04-20 22:40 ------- Gilles Caulier wrote: [bugs.kde.org quoted mail] Hello Gilles, After compiling digikam just after your "SVN commit 531715" I got the same result :( My libtiff is 3.7.3 (from Slackware 10.2). Here is the digikam output when opening the file: digikam: Cannot load metadata using Exiv2 (/home/dudeeg/pics/CanonEOS/2006_04_16/IMG_4224-01.tif: The file contains data of an unknown image type) digikam: Cannot load metadata using Exiv2 (/home/dudeeg/pics/CanonEOS/2006_04_16/IMG_4224-01.tif: The file contains data of an unknown image type) digikam: Cannot load metadata using Exiv2 (/home/dudeeg/pics/CanonEOS/2006_04_16/IMG_4224-01.tif: The file contains data of an unknown image type) digikam: Cannot parse EXIF metadata using Exiv2 digikam: Cannot load metadata using Exiv2 (/home/dudeeg/pics/CanonEOS/2006_04_16/IMG_4224-01.tif: The file contains data of an unknown image type) digikam: enableCMSetting=false digikam: /home/dudeeg/pics/CanonEOS/2006_04_16/IMG_4224-01.tif : TIFF file identified TIFF Directory at offset 0x31eb44 Subfile Type: (0 = 0x0) Image Width: 923 Image Length: 590 Resolution: 300, 300 pixels/inch Bits/Sample: 16 Compression Scheme: None Photometric Interpretation: RGB color Samples/Pixel: 3 Rows/Strip: 1 Planar Configuration: single image plane ICC Profile: <present>, 3144 bytes Make: Canon Model: Canon EOS 350D DIGITAL EXIFIFDOffset: 3270572 Regards, Gabor _______________________________________________ Digikam-devel mailing list [hidden email] https://mail.kde.org/mailman/listinfo/digikam-devel |
In reply to this post by Bugzilla from dudasg@freemail.hu
------- You are receiving this mail because: -------
You are the assignee for the bug, or are watching the assignee. http://bugs.kde.org/show_bug.cgi?id=125916 ------- Additional Comments From caulier.gilles free fr 2006-04-21 13:07 ------- SVN commit 532147 by cgilles: digikam from stable : Fix broken thumbnail creation with USM camera with 16 bits TIFF images unrecognized properly by dcraw::parse method like a real tiff images. CCBUGS: 125916 CCMAIL: digikam-devel kde org M +15 -5 umscamera.cpp --- branches/stable/extragear/graphics/digikam/utilities/cameragui/umscamera.cpp #532146:532147 @ -5,7 +5,7 @ * Description : * * Copyright 2004-2005 by Renchi Raju - * Copyright 2005 by Gilles Caulier + * Copyright 2005-2006 by Gilles Caulier * * This program is free software; you can redistribute it * and/or modify it under the terms of the GNU General @ -138,9 +138,7 @ return true; } -bool UMSCamera::getThumbnail(const QString& folder, - const QString& itemName, - QImage& thumbnail) +bool UMSCamera::getThumbnail(const QString& folder, const QString& itemName, QImage& thumbnail) { m_cancel = false; @ -173,8 +171,20 @ return true; } - // In 3rd we trying to get thumbnail from RAW files using dcraw parse utility. + // In 3rd, if file image type is TIFF, load thumb using KDELib API before to use dcraw::parse method + // to prevent broken 16 bits TIFF thumb. + if (fi.extension().upper() == QString("TIFF") || + fi.extension().upper() == QString("TIF")) + { + thumbnail.load(folder + "/" + itemName); + + if (!thumbnail.isNull()) + return true; + } + + // In 4th we trying to get thumbnail from RAW files using dcraw parse utility. + KTempFile thumbFile(QString::null, "camerarawthumb"); thumbFile.setAutoDelete(true); Digikam::DcrawParse rawFileParser; _______________________________________________ Digikam-devel mailing list [hidden email] https://mail.kde.org/mailman/listinfo/digikam-devel |
In reply to this post by Bugzilla from dudasg@freemail.hu
------- You are receiving this mail because: -------
You are the assignee for the bug, or are watching the assignee. http://bugs.kde.org/show_bug.cgi?id=125916 ------- Additional Comments From caulier.gilles free fr 2006-04-21 14:19 ------- Dubas, Your libtiff messages are correct and similar that mine. But i suspect that your libtiff is an instable release (3.7.3 version). The 3.8.2 stable release is available since a long time : http://www.remotesensing.org/libtiff I recommend you to test with : - 3.6.x release (like in mandriva). or - 3.8.2 release (last stable). Thanks in advance Gilles Caulier NOTE : All my recent commits in stable and trunk branch fix bugs relevant of wrong thumbnails generation (main interface and camera gui) with your TIFF file. _______________________________________________ Digikam-devel mailing list [hidden email] https://mail.kde.org/mailman/listinfo/digikam-devel |
In reply to this post by Bugzilla from dudasg@freemail.hu
------- You are receiving this mail because: -------
You are the assignee for the bug, or are watching the assignee. http://bugs.kde.org/show_bug.cgi?id=125916 ------- Additional Comments From caulier.gilles free fr 2006-04-21 22:49 ------- Dubas, Marcel have downloaded the tiff file and all is ok (libtiff 3.7.3 - Gentoo) Paco have downloaded the tiff file too and all is ok (libtiff 3.6.1 - Mandriva 2006 + KDE 3.5.2) Please check your system Gilles _______________________________________________ Digikam-devel mailing list [hidden email] https://mail.kde.org/mailman/listinfo/digikam-devel |
In reply to this post by Bugzilla from dudasg@freemail.hu
------- You are receiving this mail because: -------
You are the assignee for the bug, or are watching the assignee. http://bugs.kde.org/show_bug.cgi?id=125916 caulier.gilles free fr changed: What |Removed |Added ---------------------------------------------------------------------------- CC| |dudasg freemail hu ------- Additional Comments From caulier.gilles free fr 2006-05-30 13:42 ------- Dubas, can you give me a fresh report about this problem ? Gilles Caulier _______________________________________________ Digikam-devel mailing list [hidden email] https://mail.kde.org/mailman/listinfo/digikam-devel |
In reply to this post by Bugzilla from dudasg@freemail.hu
------- You are receiving this mail because: -------
You are the assignee for the bug, or are watching the assignee. http://bugs.kde.org/show_bug.cgi?id=125916 ------- Additional Comments From dudasg freemail hu 2006-05-30 13:57 ------- Hi Gilles, I have not dealt with this problem in the last couple of weeks (since you have posted that Marcel's libtiff 3.7.3 is working perfectly with my system). The main problem that I have no idea from where to start the check. I have an official libtiff 3.7.3. slackware package installed, but I cannot see the 16bit TIFF correctly. If you can give me a hint what to check closely I can do it in 2-3 days. Thanks, Gabor Dudas ps: a small correction: the second letter in my family name is d; however, please feel free to call me Gabor :) _______________________________________________ Digikam-devel mailing list [hidden email] https://mail.kde.org/mailman/listinfo/digikam-devel |
In reply to this post by Bugzilla from dudasg@freemail.hu
------- You are receiving this mail because: -------
You are the assignee for the bug, or are watching the assignee. http://bugs.kde.org/show_bug.cgi?id=125916 ------- Additional Comments From dudasg freemail hu 2006-05-30 14:42 ------- correction: ... (since you have posted that Marcel's libtiff 3.7.3 is working perfectly with my _image_) ... _______________________________________________ Digikam-devel mailing list [hidden email] https://mail.kde.org/mailman/listinfo/digikam-devel |
In reply to this post by Bugzilla from dudasg@freemail.hu
------- You are receiving this mail because: -------
You are the assignee for the bug, or are watching the assignee. http://bugs.kde.org/show_bug.cgi?id=125916 ------- Additional Comments From caulier.gilles free fr 2006-05-30 18:44 ------- Gabor, Update svn, and start digiKam from a console. Try to load the tiff image and look the error/warning message from libtiff. Gilles _______________________________________________ Digikam-devel mailing list [hidden email] https://mail.kde.org/mailman/listinfo/digikam-devel |
In reply to this post by Bugzilla from dudasg@freemail.hu
------- You are receiving this mail because: -------
You are the assignee for the bug, or are watching the assignee. http://bugs.kde.org/show_bug.cgi?id=125916 ------- Additional Comments From dudasg freemail hu 2006-05-31 12:24 ------- Created an attachment (id=16375) --> (http://bugs.kde.org/attachment.cgi?id=16375&action=view) ScreenGrab from digiKam window after opening a 16bit TIFF file _______________________________________________ Digikam-devel mailing list [hidden email] https://mail.kde.org/mailman/listinfo/digikam-devel |
In reply to this post by Bugzilla from dudasg@freemail.hu
------- You are receiving this mail because: -------
You are the assignee for the bug, or are watching the assignee. http://bugs.kde.org/show_bug.cgi?id=125916 ------- Additional Comments From dudasg freemail hu 2006-05-31 12:32 ------- Gilles, Fresh svn update is done. The problem still exists (output can be seen on the attached screengrab image). digiKam output during startup: ---------------- digikam: ScanLib: Finding non-existing Albums: 24 ms digikam: ScanLib: Finding items not in the database or disk: 839 ms digikam: ScanLib: Updating items without date: 7 ms digikam: Cannot parse EXIF metadata using Exiv2 KIPI (loading): KIPI::PluginLoader: plugin KameraKlient is in the ignore list for host application digikam: ImagePlugin_Core plugin loaded digikam: ImagePluginLoader: Loaded plugin ImagePlugin_Core digikam: Cannot load metadata using Exiv2 (/home/dudeeg/pics/CanonEOS/digikam_16bit_TIFF_test/IMG_4224-01.tif: The file contains data of an unknown image type) digiKam output during opening the TIFF file: --------------------- digikam: Cannot parse EXIF metadata using Exiv2 digikam: Cannot load metadata using Exiv2 (/home/dudeeg/pics/CanonEOS/digikam_16bit_TIFF_test/IMG_4224-01.tif: The file contains data of an unknown image type) digikam: /home/dudeeg/pics/CanonEOS/digikam_16bit_TIFF_test/IMG_4224-01.tif : TIFF file identified digikam: Cannot load metadata using Exiv2 (/home/dudeeg/pics/CanonEOS/digikam_16bit_TIFF_test/IMG_4224-01.tif: The file contains data of an unknown image type) Regards, Gabor _______________________________________________ Digikam-devel mailing list [hidden email] https://mail.kde.org/mailman/listinfo/digikam-devel |
In reply to this post by Bugzilla from dudasg@freemail.hu
------- You are receiving this mail because: -------
You are the assignee for the bug, or are watching the assignee. http://bugs.kde.org/show_bug.cgi?id=125916 ------- Additional Comments From caulier.gilles free fr 2006-06-01 07:59 ------- Gabor, There is no error messages from libtiff... strange. Are you using PCC like computer or something like that ? 64 bits computer ? Gilles _______________________________________________ Digikam-devel mailing list [hidden email] https://mail.kde.org/mailman/listinfo/digikam-devel |
In reply to this post by Bugzilla from dudasg@freemail.hu
------- You are receiving this mail because: -------
You are the assignee for the bug, or are watching the assignee. http://bugs.kde.org/show_bug.cgi?id=125916 ------- Additional Comments From dudasg freemail hu 2006-06-01 08:45 ------- Gilles, Nope...I am using AMD Athlon. Not really a new model. 1 GHz. I would like to change my libtiff installation to anothere one, but I don't have too much experience in updating an important system library. I have an official package installed called libtiff-3.7.3-i486-1. I could easily remove this, but I have found that another official base package, called aaa_elflibs-10.2.0-i486-3 is containing a file: usr/lib/libtiff.so.3.7.3 Any idea about updating? Thanks, Gabor _______________________________________________ Digikam-devel mailing list [hidden email] https://mail.kde.org/mailman/listinfo/digikam-devel |
In reply to this post by Bugzilla from dudasg@freemail.hu
------- You are receiving this mail because: -------
You are the assignee for the bug, or are watching the assignee. http://bugs.kde.org/show_bug.cgi?id=125916 ------- Additional Comments From caulier.gilles free fr 2006-06-01 11:24 ------- no idea about slackware. sorry. perhaps someone in this room can help you... Gilles _______________________________________________ Digikam-devel mailing list [hidden email] https://mail.kde.org/mailman/listinfo/digikam-devel |
In reply to this post by Bugzilla from dudasg@freemail.hu
------- You are receiving this mail because: -------
You are the assignee for the bug, or are watching the assignee. http://bugs.kde.org/show_bug.cgi?id=125916 ------- Additional Comments From dudasg freemail hu 2006-06-01 23:25 ------- Gilles, I have updated the libtiff from 3.7.3 to 3.8.2, but the problem is the same :(( (I have not recompiled digiKam after the libtiff update, but I guess I don't have to...) I am out of idea about what can cause this, but this is really annoying! :) Regards, Gabor _______________________________________________ Digikam-devel mailing list [hidden email] https://mail.kde.org/mailman/listinfo/digikam-devel |
In reply to this post by Bugzilla from dudasg@freemail.hu
------- You are receiving this mail because: -------
You are the assignee for the bug, or are watching the assignee. http://bugs.kde.org/show_bug.cgi?id=125916 ------- Additional Comments From dudasg freemail hu 2006-06-01 23:36 ------- Let me add that e.g. Kuickshow perfectly opens that 16bit TIFF, and eg. Konqueror generates the preview perfectly. Gabor _______________________________________________ Digikam-devel mailing list [hidden email] https://mail.kde.org/mailman/listinfo/digikam-devel |
Free forum by Nabble | Edit this page |