draekko
bf56bbf7fa
#825 added printPressure for panasonic makernotes to display hPa values or infinite when value is 65535 for Exif field 0x0086
9 years ago
Robin Mills
3706233c8d
#1074 Correction to r4457 to fix msvc build-breaker.
9 years ago
Robin Mills
b7c90140c7
#1074 ICC support in jpgimage.cpp. Add test/icc-test.sh
9 years ago
Robin Mills
9026954816
#1074 Work in progress for ICC/jpg - changes to readMetadata() and printStructure()
9 years ago
Robin Mills
a6ba04d422
#994 Update svn_version.h using svn info 'Last Changed Rev' instead of 'Changed'. This enables exiv2 -vVg svn to identify build branch or trunk.
9 years ago
Robin Mills
97e7905a8b
#1060 Thank you to Thomas B for working on this and providing the patch.
9 years ago
Robin Mills
5f9807cbef
#1216 . Rollback r4448/6/2/1 r4439/38 to restabilize test suite on trunk. r4449 is copy of r4448 to branches/develop
9 years ago
Robin Mills
8ad06d6f17
#1199 Fixing build-breaker when -DDEBUG is used.
9 years ago
sridharb
d78dec24e3
Moved ExifDatum::ignore from exif.hpp to the exif.cpp.
...
This frees up exif.hpp from needing to include tags_int.hpp.
The downside is that this function is no longer inline.
9 years ago
sridharb
d05634a2e3
Needs to be in the solution.
9 years ago
Robin Mills
ae4e63b27a
#1214 Patch submitted r4440. Thank You to Ondřej for reporting this and providing the patch.
9 years ago
sridharb
48294e66c0
Summary: Restored jbeu's formatting
9 years ago
sridharb
8a8ec67136
This is mainly a fix for #1206 , but also interprets missing Canon Exif
...
Tags in exiv2 with the help of Phil Harvey's exiftool (see
http://www.sno.phy.queensu.ca/~phil/exiftool/TagNames/Canon.html ).
Even with these changes (toward #1204 and #1205 ), exiv2 lags behind
exiftool in some areas of interpretation of Canon tags. Ideally, a
catch-up effort to bring the code in source: canonmn.cpp in line with
lib/Image/ExifTool/Canon.pm. v10.25 of exiftool was used as reference
for this change.
#1206 seeks to address the fact that when Canon does not have data for
certain tags, they use specific default values in those fields. These
default values need to be ignored and not displayed. This change
brings this feature to exiv2, something that already exiftool does.
With regards to implementation, the struct TagInfo in source: tags.hpp
is extended with four new fields.
The first field is a bool that if set to true (default false), denotes
that this field has ignorable default values.
The second field is the default value that needs to be ignored. This
can be of four types (String, Long, Float, Rational). These four types
were chosen as they had conversion functions in the Value class.
The third field is the comparison type (default equal_to). There are
six comparison types possible (equal_to, not_equal_to, less,
less_equal, greater, greater_equal). This is the comparison applied to
the value stored in the tag's field and the default value specified
above. For e.g. if the value in the tag Exif.CanonCs.RecordMode is -1,
then it needs to be ignored.
The fourth field is the data type (default Long). This could have been
guessed from the type of the second field, but that would necessitate
making this structure into a template calling for changes in multitude
of files.
Usage: In source: canonmn.cpp, several exif tags now have ignorable
default properties. I will list a few examples.
1. Exif.CanonCs.FocusMode: TagInfo(0x0007, "FocusMode", N_("Focus Mode"), N_("Focus mode setting"), canonCsId, makerTags, signedShort, 1, EXV_PRINT_TAG(canonCsFocusMode)),
There are no changes - i.e. this is an example of how the TagInfo
structure was being populated.
2. Exif.CanonCs.RecordMode: TagInfo(0x0009, "RecordMode", N_("Record Mode"), N_("Record mode setting"), canonCsId, makerTags, signedShort, 1, EXV_PRINT_TAG(canonCsRecordMode), true, s_1_),
Take a look at the two new arguments. The first one (true) specifies
that there is a default value that can be ignored. The second one s_1_
specifies the value (-1, in this case) to be ignored.
const UShortValue CanonMakerNote::s_1_(65535, unsignedShort); // Till bug is resolved
Note s_1_ is temporarily having the value 65535 till #1203 that causes
signedShorts to be interpreted as unsignedShorts is resolved.
3. Exif.CanonSi.TargetAperture: TagInfo(0x0004, "TargetAperture", N_("Target Aperture"), N_("Target Aperture"), canonSiId, makerTags, unsignedShort, 1, printSi0x0015, true, us0_, TagInfo::less_equal),
Note the third argument TagInfo::less_equal. This combined with the
second argument us0_ (the number 0) signifies that any values in this
tag that are less than or equal (<=) to 0 should be ignored.
4. TagInfo(0x0028, "ImageUniqueID", N_("Image Unique ID"), N_("Image Unique ID"), canonId, makerTags, asciiString, -1, printValue, true, s0x16_, TagInfo::equal_to, TagInfo::String),
The previous examples have all been of Long type. This shows a case
where the default value is a string.
const AsciiValue CanonMakerNote::s0x16_("0000000000000000");
Once these tag values have been defined, the actual mechanics of
ignoring these default values happens in Image::exifData().
Before the exifData is returned, we loop through the data, ask the
data whether it needs to be ignored (which in turn checks its
underlying tagInfo and compares it with the default value, if
specified) and if so, deletes that element.
A compile-time switch called EXV_DONT_IGNORE_UNDEFINED which when set
to a non-zero value will cause the behavior to revert back to the
original where all values are reported irregardless of the fact that
they need to be ignored.
9 years ago
Robin Mills
fe6a016957
#922 Correction to r4434. Fixing another msvc build breaker.
9 years ago
Robin Mills
8377456786
#922 Correction to r4344 to handle msvc build breaker.
9 years ago
Robin Mills
13be017d12
#922 exiv2 -dI deletes all IPTC chunks in a JPEG.
9 years ago
tbeu
239625e66e
Fix typos (comments only)
9 years ago
tbeu
1ba4e46855
Fix some spelling
9 years ago
Robin Mills
705bc14795
#1057 man page update for tgt- (stdin/stdout).
9 years ago
Robin Mills
8b9265b80d
#1064 Fix -iX to merge (not replace) metadata from source to destination.
9 years ago
Robin Mills
fa24a8a614
#1199 Fixing webp-test.sh. Use -iXX to inject XMP into file without XMP->Exif/IPTC conversion
9 years ago
Robin Mills
027b3917ec
#1199 Spit'n'polish on the loops in printStructure(), metadataRead() and doWriteMetadata(). Added tests with even byte count for ICCP and XMP Chunks.
9 years ago
draekko
ed7b20a20e
#1199 fixed typo from cut/paste in previous commit causing exif flag not to be set for VP8X chunk.
9 years ago
draekko
c858b7d44e
#1199 minor code update, updated comments, added constants for headers, bit definitions, and misc.
9 years ago
Robin Mills
9a061d895e
#1199 Fix WebP printStructure(), readMetadata() and doWriteMetadata() to handle payload padding byte. Extended webp-test to cover -iX, -ix and -ie
9 years ago
draekko
600eb0d3dd
#1199 Fixed issue with -ix, wasnt padding odd sized chunks for exif/xmp.
9 years ago
Robin Mills
d369aa67d5
#1199 Test suite changes and associate fixes to the code.
9 years ago
Robin Mills
b3c6de6274
#1210 C++11/regex build-breaker in src/version.cpp. Thank You to Zulan for reporting this and providing a patch.
9 years ago
Robin Mills
0462d2bf0f
#1199 . Adding tests for -iC. Fixed bug in -pC. Test code added for -ix and -ie, however I don't think the options are working correctly.
9 years ago
draekko
b318674f75
#1199 fixed -de -dc options, add -iC option to insert icc profiles
9 years ago
tbeu
d02560da36
Remove trailing blank from translation string
9 years ago
Robin Mills
043c039d25
#1199 Fixing exiv2 -dC image-path to delete ICC profile.
9 years ago
tbeu
918059aa24
Fix initialization of TiffBinaryElement members in ctor
...
As reported by Cppcheck
9 years ago
tbeu
23259f799b
Avoid GCC warning -Wswitch
9 years ago
draekko
dba4e7fb42
#1199 removed exif header padding on metadata writes.
9 years ago
draekko
6f7b3ba8f7
#1199 removed convenience converstion for iptc to xmp, apps should handle it directly since webp doesnt support iptc.
9 years ago
draekko
ce14557d07
#1199 updated date in exiv2.1
9 years ago
draekko
65f5ec9a70
#1199 Updated exiv2.1 to add WEBP to format list.
9 years ago
tbeu
136d517929
Update Canon FileInfo RawJpgSize to match ExifTool
9 years ago
tbeu
e5f142fab6
Update Canon CS Image stabilization to match ExifTool
9 years ago
tbeu
ffcb3f5002
Update Canon CS Exposure mode to match ExifTool
9 years ago
tbeu
e26650f409
Update Canon CS AF point to match ExifTool
9 years ago
tbeu
d888490a35
Update Canon CS Meeterimg mode to match ExifTool
9 years ago
tbeu
bde4fa8aa5
Update Canon CS Easy mode to match ExifTool
9 years ago
tbeu
e2bd73b1da
Update Canon CS Image size to match ExifTool
9 years ago
tbeu
59d4bc6e02
Update Canon CS Focus mode to match ExifTool
9 years ago
tbeu
cbe1eafd28
Update Canon CS Drive mode to match ExifTool
9 years ago
tbeu
a564e084be
Update Canon model ID to match ExifTool
9 years ago
tbeu
26a94799f1
Fix encoding
9 years ago
tbeu
1ec86a8b79
refs #1199 : Fix iclude
9 years ago
tbeu
012211e251
Fix and update Sony camera settings drive mode to match ExifTool
9 years ago
tbeu
2730747bfa
Update Sony camera settings image style to match ExifTool
9 years ago
tbeu
466802b877
Update Sony/Minolta teleconverter model to match ExifTool
9 years ago
tbeu
dd68a7ff62
Update Sony model ID to match ExifTool
9 years ago
tbeu
0c83629519
refs #1208 : Update Sony file format list to match ExifTool
...
Patch provided by Mihail Zenkov
9 years ago
draekko
9085b08fe1
#1199 fixed handling deleting data, and adding iptc when injecting
9 years ago
Robin Mills
ea08a415f2
#1199 . Fixing msvc/64 build breakers (more size/long/uintXX_t conflicts).
9 years ago
Robin Mills
d8457b2b3f
#1102 . Correction to r4365. canonmn.cpp#1238 should not have been changed. Thanks to Sridhar for bringing this to my attention.
9 years ago
nkbj
c74aaa8d29
Updated Nikon Lens lookup table to v4.4.516.01 of Robert Rottmerhusen's fmountlens list.
9 years ago
Robin Mills
104eb6b7fe
#1199 Fixing MSVC build breaker involving long/uint64_t conflict. Minor changes to behaviour of Internal::binaryToHex()
9 years ago
draekko
fe4f6f07f1
#1199 update to binaryToHex, should remove compile warnings and fix extra space padding.
9 years ago
Robin Mills
b09c2049a6
#1199 Fixing build breaker introduced by r4369
9 years ago
draekko
bcaa22ae6f
#1199 removed warnings in stringToHex, enabled iptc support for WebPImage.
9 years ago
draekko
71fd0ae96e
#1199 (as was discussed) moved WebPImage::debugPrintHex to Internal::binaryToHex
9 years ago
draekko
85cc2f745d
#1199 Fixed crash with iptc by disabling it, updated decodeChunk to do better header checks, added hexdump function.
9 years ago
Robin Mills
5b3d0cd10c
#1199 Fixed exiv2 -pR/-pC/-pX Stonehenge2.webp to report exif/ICC/XMP
9 years ago
Robin Mills
1935eddeac
#1202 Adding "Manual" Exif.CanonCs.FocusContinuous
9 years ago
asp
20c5cf6b29
#1201 do not map Iptc.Application2.RecordVersion to Xmp.xmp.Rating
9 years ago
Robin Mills
bcd455be7a
#1199 Patch from Ben. http://dev.exiv2.org/issues/1199#note-37
9 years ago
Robin Mills
512cd43e0b
#1199 WebPImage::printStructure() refactored to match implentation style of other image handlers.
9 years ago
Robin Mills
541dfe8fdf
#1199 Thank you to Ben for the patch. This corrects various matters and adds a first stab at WebPImage::printStructure()
9 years ago
Robin Mills
e5bc22c0a8
#1200 and #1034 . Adding support for ~/.exiv2 for Nikon Cameras.
9 years ago
nkbj
ecb9d84305
Issue #1197 : Add support for Sigma 150-500mm on Canon with 1.4x TC.
9 years ago
Robin Mills
b3f107bd8c
#1199 WebP Support (work in progress). Thank You to Ben for the patch. Thanks to Gilles for encouragement.
9 years ago
nkbj
7135ccb35a
Update Nikon lens list to match ExifTool version 10.25.
9 years ago
nkbj
8c0dfbeca8
Update various lists to match ExifTool version 10.24.
9 years ago
Robin Mills
8afd3f43aa
#1198 . Fixed issue with http I/O failing a test file.
9 years ago
Robin Mills
50def5c02d
#1189 Code change provided by private email from Taras. Thank You Taras.
9 years ago
nkbj
41d25bca56
Update various lists to match ExifTool version 10.21.
9 years ago
Robin Mills
339bf9c0fd
fixing mingw buildbreakers
9 years ago
asp
1a8f8f6259
#1190 nested CRS properties from Darktable & Exiftool
9 years ago
asp
8acee2a341
#1190 additional CRS properties from Darktable & Exiftool
9 years ago
Robin Mills
8d59b04042
#1041 CMake/MinGW fix. I have never persuaded CMake/MinGW to work.
9 years ago
nkbj
6011899bbf
Update various lists to match ExifTool version 10.20.
9 years ago
asp
c8a400e1c5
#1190 Add crss XMP namespace and properties
9 years ago
asp
a5bd6d84ce
#1193 XMP Specification November 2014 updates
9 years ago
Robin Mills
81cd21a375
#1034 and #867 . Adding support for "Camera Overflow File" for olympus cameras.
9 years ago
Robin Mills
02c4f8ec37
#889 . Fix submitted. Thanks to Alyssa for reporting this. Apologies for taking so long to investigate.
9 years ago
Robin Mills
8b62b8148b
#1192 . Correction to src/CMakeLists.txt. The CMake Language is a horrible mess. It's not even a language.
9 years ago
Robin Mills
7f19cbbc07
#1192 Thank You, Matthieu for the patch.
9 years ago
Robin Mills
16563d6647
#1187 and #1041 . Fixing src/Makefile to install include/exiv2/rwlock.hpp (detected by contrib/buildserver/test_daily.sh)
9 years ago
Robin Mills
a13a500455
#1187 and #1041 . Fixing CMake to install include/exiv2/rwlock.hpp (detected by contrib/buildserver/test_daily.sh)
9 years ago
Robin Mills
0cc97c7f23
#1189 Use in-memory file to dump Nikon MakerNote tag 0x927c
9 years ago
Robin Mills
4f135ed1d3
#1034 (and #1187 ). Fixed buildbreaker in MinGW/configure build.
9 years ago
Robin Mills
7e285c650d
More corrections to r4316 for msvc build breakers
9 years ago
Robin Mills
cbdba2bb12
More corrections to r4316 for msvc build breakers
9 years ago
Robin Mills
66fd2d3272
Correction to r4316 to deal with msvc build breaker.
9 years ago
Robin Mills
c211816b2c
#1189 See issue report for discussion.
9 years ago
Robin Mills
7adaf71d44
#1187 and #1041 . Fixing CMake/Linux build breakers concerning libpthread
9 years ago
nkbj
e155be6372
Update Canon lens list to match ExifTool version 10.19.
9 years ago
Robin Mills
b15a401569
#1187 Thank You to Taras for the patch.
9 years ago
nkbj
41f14f2b7b
Fix typo as reported in ExifTool version 10.18.
9 years ago
nkbj
26661a8702
Update lens lists to match ExifTool version 10.17.
9 years ago
Robin Mills
794dedeac5
#1034 Sony and Minolta support for ~/.exiv2
9 years ago
Robin Mills
3b0f79a73a
#1034 Pentax support for ~/.exiv2
9 years ago
Robin Mills
46d3e53323
#1034 . Nikon support for ~/.exiv2
9 years ago
nkbj
ab398bcb67
Updated Nikon Lens lookup table to v4.4.512.01 of Robert Rottmerhusen's fmountlens list.
9 years ago
nkbj
38edf09899
Update lens lists to match ExifTool version 10.16.
9 years ago
Robin Mills
973dbc9847
Fixing clang warning in tiffvisitor.cpp
9 years ago
Robin Mills
bc1abeac26
#1108 Discovered another embedded tiff tag SubIFDs
9 years ago
Robin Mills
664af57e10
#1034 Added samples/toexv This is a first step to write exif metadata to memory to send to a web service.
9 years ago
Robin Mills
3ecfd5220e
#1180 . Reverting r4291 as it is not required. DefaultScale was adding in r1546 by Andreas in 2008.
9 years ago
Robin Mills
3e6d0cf60d
#1180 . Thanks to D Anderson for reporting this an providing the patch.
9 years ago
Robin Mills
3374201fdd
#1180 . Corrections to r4289.
9 years ago
Robin Mills
aeb3551947
#1180 . Correction to r4288. Adding additional CDNG tags and tag descriptions. Thanks to Alan for bringing this to my attention.
9 years ago
Robin Mills
dce07e3210
#1180 Thank You to D Anderson for reporting this. Thank You to Alan for his analysis.
9 years ago
Robin Mills
06b072e39b
#1108 . Correction to r4285. Code simplication.
9 years ago
Robin Mills
58c5ffdedc
#1108 . Fixed issue with printing short strings which are stored in the directory offset field.
9 years ago
Robin Mills
00984afaa2
#1178 Thanks to Terence for reporting this an providing confidential test data
9 years ago
Robin Mills
c8674eb102
#1179 . Thank You to Pascal for reporting this, providing the patch and test data.
9 years ago
nkbj
c515386cb0
Update various lists to match ExifTool version 10.14.
9 years ago
Robin Mills
2ff64957aa
#1175 . Thank You, LaserSoft, for reporting this and providing the patch.
9 years ago
Robin Mills
a04abc98c2
Build Trigger
9 years ago
Robin Mills
62e2fc086b
#1034 Added msvc2005/ini-test
9 years ago
nkbj
9f7cf319ed
Add new lens for Olympus: Sigma 30mm F1.4 DC DN | C.
9 years ago
nkbj
68aa236f58
Add another couple of lenses for Olympus.
9 years ago
Robin Mills
b8de981617
Build Trigger
9 years ago
Robin Mills
1977217534
#1034 . Corrections to r4249 to fix erroneous test suite messages.
9 years ago
Robin Mills
8c92f5f094
#1034 . Corrections to r4249 to fix build-breakers
9 years ago
nkbj
5adde8af68
Add new lens for Olympus: Lumix G Vario 12-60mm F3.5-5.6 Asph. Power OIS.
9 years ago
Robin Mills
4529537598
#1034 . Corrections to r4249 to fix build-breakers
9 years ago
Robin Mills
1e33add5e4
#1034 . Corrections to r4249 to fix build-breakers
9 years ago
Robin Mills
dbed6f857c
#1034 Added exiv2 config file support for lens recognition.
9 years ago
Robin Mills
4a8e34bc44
Revert build trigger
9 years ago
Robin Mills
27fa76b269
Build Trigger
9 years ago
Robin Mills
2261c18724
Revert build trigger.
9 years ago
Robin Mills
d37f692374
Build Trigger
9 years ago
Robin Mills
06eabfdd88
#1074 . jpgimage.cpp ICC support (Work in Progress)
9 years ago
danielkaneider
26e73a41bc
fix msvc compilation (rv 4229)
9 years ago
Robin Mills
60b0b842cf
#1170 . Thank you, Marcus for reporting this and providing the test data.
9 years ago
Robin Mills
aa7e277dbc
#1169 . Fixing issues concerning msvc2005/EXV_UNICODE_PATH
9 years ago
Robin Mills
177527402d
#1074 Fixed 'overwrite?' prompt in command: exiv2 -eC image
9 years ago
Robin Mills
e7b804f3f5
#1108 Refactored static indent(depth) from png/tiff/jpeg to Internal::indent(depth)
9 years ago
Robin Mills
09c734fbcd
#1108 . Refactored the IPTC printStructure code from png/jpeg/tiff into iptc.cpp
9 years ago
Robin Mills
8369592af1
#1074 . Thanks to Max for reporting this and providing the test file.
9 years ago
Robin Mills
6e19d043ef
#1108 Added IPTC parser for tiff.
9 years ago
nkbj
c26dd2091f
Update Canon camera model list to match ExifTool version 10.13.
9 years ago
nkbj
8494fd61f3
Agreed with Phil Harvey (author of ExifTool) upon a nomenclature for Sigma lens families.
9 years ago
nkbj
f95f1d9dee
White-space update.
9 years ago
Robin Mills
bdf8d3ad5b
#1108 Added photoshop/iptc parser to png/jpeg parser.
9 years ago
nkbj
36b42eabeb
More consistency fixes.
9 years ago
nkbj
e948ccc449
Consistency fix.
9 years ago
nkbj
0cf3dc9e09
Add new lens: Sigma 50-100mm F1.8 DC HSM Art for Canon.
9 years ago
Robin Mills
8e7eaa65a7
#1057 , #1064 , #922 , #1148 . Work in progress. This is a composite patch of several matters in development. None are totally complete at this time.
9 years ago
Robin Mills
1f9de360a7
Fixed formatting issue in -pS/-pR output.
9 years ago
nkbj
ddccd1eafc
Lens numbering fix.
9 years ago
nkbj
328ebcf462
Fix a couple of lens names to be consistent across lens mounts.
9 years ago
nkbj
e2f05aa19e
Update various lists to match ExifTool version 10.12.
9 years ago
nkbj
0bae74bc91
Updated Nikon Lens lookup table to v4.4.510.01 of Robert Rottmerhusen's fmountlens list.
9 years ago
Robin Mills
cc0ec825ec
#1166 . Thank You, Phillippe for reporting this and providing a patch and test data.
9 years ago
Robin Mills
3daa8df380
#1167 . Thank You, Philippe for the patch. No test file yet.
9 years ago
Robin Mills
29ad206838
#1164 . Fix submitted. Thank you Nicolas and Gilles for reporting this. More comments in the issue report.
9 years ago
Robin Mills
44e1cd5ba8
#1165 . Thanks to Eric for reporting this and providing the patch.
9 years ago
nkbj
c04b185e54
Fix lens name in latest commit.
9 years ago
nkbj
9de71a9075
Add new lens: Leica DG Vario Elmar 100-400mm F4.0-6.3 Asph.
9 years ago
nkbj
41e27fa519
Update various lists to match ExifTool version 10.11.
9 years ago
Robin Mills
a769e1a0fc
#1159 . Fixing MSVC build-breaker in r4197 and r4179.
...
Two different issues:
r4197 include <windef.h> does not compile with MSVC 2005 and changed to <windows.h>
r4179 has a short/long compare mismatch
MSVC is a severe build environment and treats warnings as errors. MSVC is not fragile, it's robust.
10 years ago
Robin Mills
1956b236cd
#1159 . Thank You, Jakub for discovering this issue and for providing a patch.
10 years ago
nkbj
1ef6ff94b0
Update various lists to match ExifTool version 10.10.
10 years ago
Robin Mills
e99a3687f3
#1155 . Fixes submitted. Thank You, Hannu for reporting this and providing test data.
10 years ago
Robin Mills
e02d142e4d
#1155 . Fix summitted.
10 years ago
Robin Mills
5e968dc6f7
#1081 Added Cr2Image::printStructure()
10 years ago
Robin Mills
28083d6667
#1153 Fixes for "Sony E PZ 16-50mm F3.5-5.6 OSS"
10 years ago
Robin Mills
32af620713
#1153 Fix submitted. Thank You, Tim for reporting this and providing test data.
10 years ago
Robin Mills
04f871cc4c
#1152 Fix submitted. Also added new static function FileIo::temporaryPath() which I require for tgt - code and fixed typo in tiffvisitor.cpp
10 years ago
Robin Mills
b703575389
#1149 . Added fff.h (from plir.com) and code strengthening.
10 years ago
Robin Mills
a57a9b2fa4
#1149 . Modify -pR to find and report the tiff in an APP1/FLIR segment.
10 years ago
Robin Mills
ed5bbe6e5d
#1150 . Fixed build breaker on elderly Macs (10.6 and earlier).
10 years ago
Robin Mills
a9256db32b
#1148 Correction to r4175 to fix test suite breaker. We can only use the -pX short cut when option -eXx is used.
10 years ago
Robin Mills
a489e1cea7
#1148 Fixed Todo: Should use XMP packet if there are no XMP modification commands
10 years ago
Robin Mills
178d0f5fc6
#1148 . Fixed formatting error in jpgimage/-pS code.
10 years ago
Robin Mills
947ed69de8
#1108 and #1074 Correction to r4168 to fix MSVC build breaker.
10 years ago
Robin Mills
d81e552cb7
#1074 -pC now works on tiff files. Added test convenience targets to Makefile
10 years ago
Robin Mills
4617dc3728
#1108 and #1074 -pC and -pR (print Color Profile, print Recursively) now work on png.
10 years ago
nkbj
e083009f1a
Add new lens: Olympus M.Zuiko Digital ED 300mm F4.0 IS Pro.
10 years ago
Robin Mills
f49dd0b95f
#1108 and #1074 Correction to r4165 to fix MSVC build breaker and to document: exiv2 -eC (extract ICC profile).
10 years ago
Robin Mills
fd5e983746
r1108 Recursively dump an image (exiv2 -pR file...)
10 years ago
Robin Mills
b7607c34db
#1047 Rollback r4163 and try again. r4163 broke MSVC build.
10 years ago
Robin Mills
d3ff1388c1
#1147 Fixed travis build-breaker.
10 years ago
Robin Mills
1a6419881b
#1147 . Fixed a typo.
10 years ago
Robin Mills
a008623362
#1147 . Correction for Cygwin/MinGW build-breaker in r4159. Don't compile the uid/euid/gid code on any windows build.
10 years ago
Robin Mills
b1b42d8e15
#1147 . Correction to r4159 for linux build breaker (linux doesn't have include uuid/uuid.h)
10 years ago
Robin Mills
87129d61f6
#1147 Report uid, euid and gid in exiv2 --verbose --version
10 years ago
danielkaneider
4c236fce17
#1041 . cmakeBuild with static compilation
10 years ago
Robin Mills
5a36dea37d
#1061 . Added exiv2samples.1 and associate autotools and CMake installer support. Work in progress.
10 years ago
Robin Mills
0798b95b50
#1143 . Partial solution. I have suppressed the warning and allocated memory for Exif.Sony1.Preview. So now the size is revealed to the user. However: for reasons documented in the code, I am unable to locate the image in the source file and copy it into the metadata.
10 years ago
Robin Mills
77ae982cd4
#1145 . Thank You, Michael for providing the test files. I will extract the metadata from your files and add it to the test suite after you have tested this code.
10 years ago
Robin Mills
46d723b788
#1144 Fix submitted. Thank You, Simon for the test files on dropbox. I have extracted the metadata and added it to the test suite.
10 years ago
Robin Mills
2f6188a713
#1144 . Correction to r4151 and update to test suite.
10 years ago
Robin Mills
8551d74d22
#1144 Fix submitted. r4147.
10 years ago
Robin Mills
3af7088e4e
#1145 . Correction to r4149 to fix msvc build-breaker.
10 years ago
Robin Mills
f0901bea3c
#1145 . Added resolveLensTypeUsingExiftool(). This code is not in service for reasons mentioned in the code.
10 years ago
Robin Mills
8805b0eb40
#1145 . Fix submitted.
...
I haven't submitted a change to the test suite at this time, however I'll do that when I resolve #1143 .
10 years ago
nkbj
84e1081c80
Update Nikon lens list to match ExifTool version 10.08.
10 years ago
Robin Mills
045f9ba328
#816 . Correction to msvc buildbreaker in r4135
10 years ago
Robin Mills
e07eecd689
#816 . Fix for Pentax K-3 Camera.
10 years ago
Robin Mills
ecedab80a5
#1140 . Correction to r4132. Modified lens detection condition.
10 years ago
Robin Mills
b92dc7c8c9
#1140 Fix submitted.
10 years ago
Robin Mills
ab9ee2c6df
#1024 . Support for C++11 #include <regex>. --grep keys may have an optional trailer /i to indicate to ignore case.
10 years ago
Robin Mills
cf927ed2c8
#1121 (msvc support for v0.26). exiv2 -vVg ^version reports version=8.00 (2005/x64) or version=8.00 (2005/x86) instead of version=8.00 (2005)
10 years ago
nkbj
ce240e9043
Update various lists to match ExifTool version 10.07.
10 years ago
Robin Mills
ada018f3b8
#1137 . Updated manpage to document -m- and -pV and Added regression detector for both new options to test suite.
10 years ago
Robin Mills
cc5f0f434e
#1137 . Implemented.
10 years ago
Robin Mills
1b65b21c0d
#1136 . Fix submitted - see issue report for explanation.
10 years ago
Robin Mills
c6ed7dfe35
#816 Correction to r4018 to deal with segmentation fault on test file _IGP9034.JPG
10 years ago
Robin Mills
fe0a04cd3b
#816 . Fix submitted. Thank you Simon for working with me on this and for providing test files.
10 years ago
Robin Mills
d9b04966e2
#1136 . Fix submitted. -g does not apply to -ps report. Clarification to man page that -g is only applied to keys.
10 years ago
Robin Mills
0467336e4c
#816 . Fix submitted. Will ask Simon to test this ask his permission to use his metadata in the test suite.
10 years ago
tbeu
e0a408ca6d
Replace LoadLibraryA/FreeLibrary by GetModuleHandleA for kernel32.dll (which is loaded by default)
10 years ago
Robin Mills
eb321481b7
#816 . Correction to 4012. Fix msvc build breaker
10 years ago
Robin Mills
b776b61c27
#816 Added Phil's Perl code PrintLensID (see issue report). I'll have to convert this into C++ and then report the output.
10 years ago
Robin Mills
379b20fde1
#816 . This is the framework from Abhinav's patch from which we can derive the fix. Explanation in issue report.
10 years ago
tbeu
89f2561056
Add spaces to description of tag TimeZoneOffset
10 years ago
danielkaneider
c90253bc3c
[cmake] various msvc fixes
10 years ago
nkbj
314b142dc2
Update various lists to match ExifTool version 10.05.
10 years ago
danielkaneider
993a3bd06b
[cmake] added travis build file, fixes for osx and linux
10 years ago
Robin Mills
f76b9e8aa3
#1130 . Correction to r3997.
10 years ago
Robin Mills
d88a3f5556
#1132 . Fix submitted.
10 years ago
Robin Mills
db4be31b6f
#1130 . Thank You Jakub for reporting this.
10 years ago
danielkaneider
5c7ecc6514
[cmake] add webready support and better cmake for windows
10 years ago
nkbj
56d1071d57
Update various lists to match ExifTool version 10.03.
10 years ago
Robin Mills
abd5ecedd4
#1129 . Fix submitted.
10 years ago
Robin Mills
98eeab85da
#1089 . Thank You to Felix for reporting this and providing a patch.
10 years ago
Robin Mills
d19fc716c7
#1102 . Thank You to Jakub for reporting this and providing a patch.
10 years ago
Robin Mills
114373f254
#1101 . Thank You to Jakub for reporting this and providing a patch.
10 years ago
Andreas Huggel
f5eb9b50a4
#1116 : Register missing namespaces (audio, video), changed xapG to xmpG in accordance with the XMP specs.
10 years ago
Andreas Huggel
910f389e50
#1116 : Reverted changes to BasicIo::BasicIo() introduced in r3933
10 years ago
Robin Mills
4cca5dea0b
#1127 exiv2 --verbose --version --grep libz incorrectly reports have_libz=0
10 years ago
Robin Mills
e3e4711190
#1125 . Thank You to Michał for reporting and providing the patch.
10 years ago
nkbj
885899ae6b
Updated Nikon Lens lookup table to v4.4.504.01 of Robert Rottmerhusen's fmountlens list.
10 years ago
Robin Mills
b44dcdb220
http://dev.exiv2.org/boards/3/topics/2137?r=2259 Thanks to Gilles for the patch.
10 years ago
Robin Mills
cb48ead007
#1122 Thank You, Steve for the patch.
10 years ago
Robin Mills
ea82638b9c
Correction to r3968
10 years ago
Robin Mills
d4ec76fa62
Moving Daniel's build scripts to contrib
10 years ago
Robin Mills
00d7923c4a
Fix Visual Studio localtime.c issue for Visual Studio 2015 (again)
10 years ago
Robin Mills
9bb2146c52
Fix Visual Studio localtime.c issue for Visual Studio 2015
10 years ago
Robin Mills
4795a1309a
Correction to r3960 for Visual Studio
10 years ago
Robin Mills
bf0604b834
Minor clean up in version.cpp. Removed 'using namespace std', replaced vector_t typedef with identical twin Exiv2::StringVector.
10 years ago
Robin Mills
8ff86b6875
#1110 . Xcode project moved to contrib/xcode. Interesting errors in samples/Makefile. Replaced gsoc13 Exiv2::dict_t with (identical twin) Exiv2::Dictionary
10 years ago
Robin Mills
416221118a
Fix Visual Studio 2015 build.
10 years ago
Robin Mills
edb5c16a7f
#1109 Support for Visual Studio 2003/5/8/10/12/13/15
10 years ago
asp
469b2e6df0
#1111 Deprecated NOT Depreciated. ExifEX typo.
10 years ago
nkbj
dd282835f3
Fix typo in Sony makernotes.
10 years ago
nkbj
0c02c73643
Update Canon lens list to match ExifTool version 10.02.
10 years ago
Robin Mills
14306c4e03
Forum topic 2232: http://dev.exiv2.org/boards/3/topics/2232 Issue linking zlib on Visual Studio. Thanks to Emmanuel for the patch.
10 years ago
nkbj
017a58910b
Updated Nikon Lens lookup table to v4.4.502.01 of Robert Rottmerhusen's fmountlens list.
10 years ago
Robin Mills
a37b843839
Correction to r3941 to fix mac build-breaker in src/image.cpp (and odd linux bb in samples/exiv2json.cpp)
10 years ago
Robin Mills
759d92e560
Fix Linux warning message from src/image.cpp concerning "gnu_printf"
10 years ago
nkbj
07297295c1
Fix issue #1117 : Add support for Sigma 18-300mm F3.5-6.3 DC Macro HSM for Pentax cameras.
10 years ago
Robin Mills
6767878fb8
#1116 . Fix submitted.
10 years ago
Robin Mills
ed2751612d
#640 Public API to reveal all namespaces known to Exiv2 and XMPsdk is XmpProperties::registeredNamespaces(Exiv2::Dictionary&)
10 years ago
Robin Mills
3a7b0e0122
#1114 . Correction to r3929.
10 years ago
Robin Mills
7b84f8bbce
#1114 Fix submitted.
10 years ago
nkbj
1642a80600
Update Canon lens list to match ExifTool version 10.01.
10 years ago
Robin Mills
3f1380e91a
#640 Modified XmpParser::getRegisteredNamespaces to use Exiv2::Dictionary.
10 years ago
Robin Mills
9501be5c7d
#1112 . Fix submitted. Also added typedefs to datasets.hpp for Exiv2::Dictionary, Exiv2::StringSet, Exiv2::StringVector
10 years ago
Robin Mills
03e51ab470
#640 and # 751. Fixing linux build-breaker.
10 years ago
Robin Mills
c396a92e01
#960 added API: static void Exiv2::XMPParser::getRegisteredNamespaces(std::map<std::string,std::string>&);
10 years ago
Robin Mills
15cbe35383
Correction to r3892 to fix build breaker on Cygwin.
10 years ago
Robin Mills
5eabef4306
Fix to r3898. Apologies to Andreas for breaking the linux build.
10 years ago
Andreas Huggel
983b107701
#917 : Tweaks to the utility -p<x> return codes and info messages.
10 years ago
Robin Mills
6808b073f3
#1074 . Implemented exiv2 options -eC and -pC for JPEG.
10 years ago
Robin Mills
ccb462869f
Fix : #1100
10 years ago
Andreas Huggel
b030a4de7c
#1077 : Removed msync() calls from MemIo.
10 years ago
Robin Mills
fdb33b467b
Modification to r3891 to respect -g option on exiv2 command-line.
10 years ago
Andreas Huggel
02d6f8460a
#935 : Fixed ExposureTime pretty-print function.
10 years ago
Robin Mills
e628f8e057
Correction to r3981. Only build this functionality when EXV_HAVE_XMP_TOOLKIT is enabled.
10 years ago
Robin Mills
f87a83978d
exiv2 -vV lists registered Namespaces. #640 and topic 2169 http://dev.exiv2.org/boards/3/topics/2169
10 years ago
Andreas Huggel
4447b2155f
#1106 ( #933 ): Fixed oversight that prevented writing to images with a Casio makernote.
10 years ago
Andreas Huggel
8e7a316ee4
#1106 ( #933 ): Fixed oversight that prevented writing Casio2 makernotes.
10 years ago
nkbj
576c61ffd3
Update camera and lens lists to match ExifTool version 10.00.
10 years ago
nkbj
aef0915c58
Updated Nikon Lens lookup table to v4.4.485.01 of Robert Rottmerhusen's fmountlens list.
10 years ago
asp
89fd2149c6
#1093 ExifEX fixed typo missing comma
10 years ago
asp
3ec3708f94
#1093 ExifEX for XMP namespace and properties
10 years ago
Andreas Huggel
b768fb1067
#1095 : Do not create a TIFF component for unexpected next IFD pointers.
10 years ago
nkbj
94cd9b1cf6
Updated Nikon Lens lookup table to v4.4.483.01 of Robert Rottmerhusen's fmountlens list.
10 years ago
nkbj
cb4f140922
Update Pentax lens list to match ExifTool version 9.99.
10 years ago
asp
4179a29075
website: Master templates updates for new XMP properties
10 years ago
Andreas Huggel
533668808d
Fixed cross-compiler warnings.
10 years ago
Andreas Huggel
81c8701f8f
Fixed make uninstall.
10 years ago
Andreas Huggel
7d16443d91
Fixed broken links to the project site in the documentation.
10 years ago
Andreas Huggel
ade51daf7f
Only compile ssh module if using SSH and another hack to prevent a compiler warning about undefined EXV_USE_SSH.
10 years ago
Andreas Huggel
108310bfb4
Prefix published precompiler define as usual.
10 years ago
danielkaneider
879fd9fa84
cmake: add some windows batch tools
10 years ago
Andreas Huggel
a57317f685
Some API policing
10 years ago
Andreas Huggel
67aef6117a
Only compile video source code if it is enabled.
10 years ago
Andreas Huggel
42df52f493
Added RCSID
10 years ago
Andreas Huggel
e7e72791b6
Added RCSID
10 years ago
Andreas Huggel
bf35173f40
Added RCSID
10 years ago
Andreas Huggel
423c1ee5dc
Added RCSID
10 years ago
nkbj
d1035b4b76
Update various lists to match ExifTool version 9.96.
10 years ago
asp
699671605b
#1085 typos. Thanks Anders Jonsson!
10 years ago
nkbj
aae8959041
Add new lens for Nikon: Sigma 18-200mm F3.5-6.3 II DC OS DSM. Private communication from John Helour.
10 years ago
nkbj
faf28b0fd1
Fix bug #1079 : Rename Canon EF 50mm f/1.8 MkII.
10 years ago
nkbj
ea84f11c71
Add support for the two new Olympus lenses presented Today.
10 years ago
asp
93639950c3
#1078 Undue mistaken escape
10 years ago
asp
62c1c9a3d3
Spanish translation updates from Launchpad. Unfuzzed.
10 years ago
Andreas Huggel
006625e116
Removed helper functions binaryToString() and stringFormat() from the API and from class Image and made them internal helpers. Renamed type printStructureOption_e to PrintStructureOption to conform with the common naming convention.
10 years ago
Andreas Huggel
0f01822264
Moved internal headers into the src/ directory. Only published headers remain in include/exiv2/.
10 years ago
Robin Mills
cca58e22ce
Fixing issues with the MSVC2003 build
10 years ago
asp
dcead6da9c
New translations from Launchpad. Updates to es.
10 years ago
asp
b27a8e3288
Typos in XMP property labels and descriptions
10 years ago
nkbj
9d4c133c38
Update Minolta lens list to match ExifTool version 9.95.
10 years ago
Andreas Huggel
a809251f8e
Removed code to build samples from this Makefile. Build them with samples/Makefile only.
10 years ago
Robin Mills
f52eacf921
#1071 Remove Jzon from libexiv2
...
1) Move src/Jzon.cpp and include/exiv2/Jzon.hpp to samples/Jzon.{cpp|hpp}
2) Update build environment appropriately.
10 years ago
Robin Mills
5743dd8fbc
#1057 . Update to man page src/exiv2.1 Deferring tgt - (stdin/stdout) to v0.26.
10 years ago
Robin Mills
871502f051
src/version.cpp: fixing an output formatting issue impacting exiv2 -vVg curl
10 years ago
Robin Mills
c1933e6882
msvc2005/configure.py fixes discovered by testing configure -vat and configure -Vat (with/without video).
10 years ago
nkbj
b92d2052a8
Update Pentax camera model list to match ExifTool version 9.94.
10 years ago
Robin Mills
d41c4fcaab
#1072 #922 BigEndian (Motorola PowerPC) fix.
10 years ago
Robin Mills
ee1ca29d09
#1073 test/tiff-test.sh rewritten to no longer require external utility exifprobe
10 years ago
Andreas Huggel
fd80993ab0
Updated copyright notice.
10 years ago
Robin Mills
03aba63de3
#922 Submitting the fixed version of r3771
10 years ago
Robin Mills
2712082555
#922 Rollback r3771. Very troublesome feature. bugfixed #922 is looping Linux. PNG Has endian issues on MM/PowerPC
10 years ago
Robin Mills
2f375e8f02
#922 . Adding to the test suite.
10 years ago
Robin Mills
f343a21e21
#922 . Mac fix for Image::stringFormat()
10 years ago
Robin Mills
b2be263206
#922 Fixing Image::formatString() on Windows
10 years ago
Robin Mills
0cf64e2542
#922 . Better platform and endian detection.
10 years ago
Robin Mills
5aec2c4957
#1069 . Make video a build option (msvc/autotools/cmake). Default is not to build video or webready.
10 years ago
Robin Mills
333128352d
#833 . Thanks to Torsten and Pascal. Change Minolta 65535 (-1) to "Manual lens" from "E-Mount, T-Mount, Other Lens or No Lens"
10 years ago
Robin Mills
84bf485ebe
#922 . Fixing -pS and -pX on MSVC.
10 years ago
Robin Mills
081c3c5e7d
CID 1296110
10 years ago
Robin Mills
a07769c116
#1071 msvc2003 added exiv2json and minor changes to build and pass test.
...
There's a strange test exception which seems to be related to daylight saving time.
1931c1931
< "DateTime": "2005:09:07 23:09:51",
---
> "DateTime": "2005:09:08 00:09:51",
10 years ago
nkbj
0c39802d6d
Updated Nikon Lens lookup table to v4.4.482.01 of Robert Rottmerhusen's fmountlens list.
10 years ago
nkbj
1c34dfd47f
#1070 : New lens: Sigma 150-600mm f/5-6.3 DG OS HSM Contemporary for Canon. Thanks goes to Alexander Steffen for the patch.
10 years ago
Robin Mills
b1ad7a925c
#922 . Fixing MSVC warnings.
10 years ago
Robin Mills
fd1852da84
#922 . Fix Linux build breaker and MSVC compilation warnings.
10 years ago
Robin Mills
f1362f9250
#922 . Don't remove blank lines from XMP. This is not Exiv2's business. -pX extracts XMP packet without modification.
10 years ago
Robin Mills
60f4c18da7
Move dumpLibraryInfo() to Exiv2 namespace.
10 years ago
Robin Mills
40ffba6033
#922 -pS and -pX support for TIFF. Added formatters to Image class and use them from {jpg/png/tiff}image.cpp
10 years ago
asp
0b4e20cccd
website: re-order tags, document nested XMP properties
10 years ago
asp
f7ebfea8e7
#1061 manpage: reg namespace example, description amplification
10 years ago
tbeu
c1a4c3383d
refs #1063 : Avoid encoding problems
10 years ago
Robin Mills
a82fa51c8c
#900 . Preserve XMP data in TIFF files when XMPsdk is not build into the library.
10 years ago
Robin Mills
f049f2cc48
#1066 . Fixed compiler warning on MacOS-X 10.6 on ppc. Signed/unsigned mismatch.
10 years ago
Robin Mills
e5609bb8b5
#1066 Thank You, Thomas for the patch.
...
1066 = The Battle of Hastings
10 years ago
nkbj
9d0c451a63
Fix Sony/Minolta lens name.
10 years ago
nkbj
985d727511
Update Canon camera list and Minolta lens list to match ExifTool version 9.93.
10 years ago
Robin Mills
af2f46c8b7
#1065 . std::map<int,const char*> doesn't build on MacOS-X 10.6 (Snow Leopard). Thanks Max for letting me know about this.
10 years ago
tbeu
06a04411c6
refs #922 : Fix include and MSVC compilation
10 years ago