~ubuntu-branches/ubuntu/intrepid/digikam/intrepid

« back to all changes in this revision

Viewing changes to digikam/libs/dimg/loaders/tiffloader.h

  • Committer: Bazaar Package Importer
  • Author(s): Mark Purcell
  • Date: 2008-07-17 20:25:39 UTC
  • mfrom: (1.2.15 upstream) (3.1.2 lenny)
  • Revision ID: james.westby@ubuntu.com-20080717202539-6n7dtirbkoo7qvhd
Tags: 2:0.9.4-1
* New upstream release
  - digiKam 0.9.4 Release Plan (KDE3) ~ 13 July 08 (Closes: #490144)
* DEB_CONFIGURE_EXTRA_FLAGS := --without-included-sqlite3
* Debhelper compatibility level V7
* Install pixmaps in debian/*.install
* Add debian/digikam.lintian-overrides

Show diffs side-by-side

added added

removed removed

Lines of Context:
7
7
 * Description : A TIFF IO file for DImg framework
8
8
 * 
9
9
 * Copyright (C) 2005 by Renchi Raju <renchi@pooh.tam.uiuc.edu>
10
 
 * Copyright (C) 2006-2007 by Gilles Caulier <caulier dot gilles at gmail dot com> 
 
10
 * Copyright (C) 2006-2008 by Gilles Caulier <caulier dot gilles at gmail dot com> 
11
11
 *
12
12
 * This program is free software; you can redistribute it
13
13
 * and/or modify it under the terms of the GNU General
59
59
 
60
60
private:
61
61
 
 
62
    void tiffSetExifAsciiTag(TIFF* tif, ttag_t tiffTag, const DMetadata *metaData, const char* exifTagName);
 
63
    void tiffSetExifDataTag(TIFF* tif, ttag_t tiffTag, const DMetadata *metaData, const char* exifTagName);
 
64
 
 
65
    static void dimg_tiff_warning(const char* module, const char* format, va_list warnings);
 
66
    static void dimg_tiff_error(const char* module, const char* format, va_list errors);
 
67
 
 
68
private:
 
69
 
62
70
    bool m_sixteenBit;
63
71
    bool m_hasAlpha;
64
 
    
65
 
private:
66
 
 
67
 
    void tiffSetExifAsciiTag(TIFF* tif, ttag_t tiffTag, DMetadata *metaData, const char* exifTagName);
68
 
    void tiffSetExifDataTag(TIFF* tif, ttag_t tiffTag, DMetadata *metaData, const char* exifTagName);
69
 
 
70
 
    static void dimg_tiff_warning(const char* module, const char* format, va_list warnings);
71
 
    static void dimg_tiff_error(const char* module, const char* format, va_list errors);
72
72
};
73
73
 
74
74
}  // NameSpace Digikam
75
 
    
 
75
 
76
76
#endif /* TIFFLOADER_H */