[SCM] exiv2 packaging branch, master, updated. debian/0.25-3.1-3734-gdcbc29a

Maximiliano Curia maxy at moszumanska.debian.org
Thu Jul 13 17:36:00 UTC 2017


Gitweb-URL: http://git.debian.org/?p=pkg-kde/kde-extras/exiv2.git;a=commitdiff;h=d5dc917

The following commit has been merged in the master branch:
commit d5dc917517353e175a92f63611c76154d6953297
Author: Andreas Huggel <ahuggel at gmx.net>
Date:   Mon Feb 9 02:26:34 2004 +0000

    Changed the information printed
---
 src/exifprint.cpp | 18 +++++++-----------
 1 file changed, 7 insertions(+), 11 deletions(-)

diff --git a/src/exifprint.cpp b/src/exifprint.cpp
index c379bcb..a98b14d 100644
--- a/src/exifprint.cpp
+++ b/src/exifprint.cpp
@@ -21,13 +21,14 @@
 /*
   Abstract : Sample program to print the Exif metadata of an image
 
+  File:      exifprint.cpp
   Author(s): Andreas Huggel (ahu) <ahuggel at gmx.net>
-  Version  : $Name:  $ $Revision: 1.5 $
+  Version  : $Name:  $ $Revision: 1.6 $
   History  : 26-Jan-04, ahu: created
  */
 // *****************************************************************************
 #include "rcsid.hpp"
-EXIV2_RCSID("@(#) $Name:  $ $Revision: 1.5 $ $RCSfile: exifprint.cpp,v $")
+EXIV2_RCSID("@(#) $Name:  $ $Revision: 1.6 $ $RCSfile: exifprint.cpp,v $")
 
 // *****************************************************************************
 // included header files
@@ -66,17 +67,12 @@ try {
 
     ExifData::const_iterator end = exifData.end();
     for (ExifData::const_iterator i = exifData.begin(); i != end; ++i) {
-        std::cout << "0x" 
-                  << std::hex << std::setw(4) << std::setfill('0') << std::right
-                  << i->tag() << " " 
+        std::cout << "0x" << std::setw(4) << std::setfill('0') << std::right
+                  << std::hex << i->tag() << " " 
+                  << std::setw(9) << std::setfill(' ') << std::left
+                  << i->ifdItem() << " "
                   << std::setw(27) << std::setfill(' ') << std::left
                   << i->tagName() << " "
-//                  << i->key() << " "
-                  << std::setw(17) << std::setfill(' ') << std::left
-                  << i->typeName() << " "
-                  << std::dec << std::setw(3) 
-                  << std::setfill(' ') << std::right
-                  << i->count() << "   " 
                   << std::dec << i->value() << "
";
     }
 

-- 
exiv2 packaging



More information about the pkg-kde-commits mailing list