Andreas Huggel
d73f83c2a2
Bumped version to 0.18.2
16 years ago
Andreas Huggel
9bbfd1c186
Removed r1830, r1826, r1825, r1824 from trunk (PGF image format)
16 years ago
Andreas Huggel
7b75bbaa04
Removed r1799, r1797 from trunk ( #634 , #579 )
16 years ago
HumanDynamo
8a3e708fd6
add PGF creation from scratch in memory
16 years ago
HumanDynamo
67dfeaf3bd
fix comment
16 years ago
HumanDynamo
76a3a36e51
creating JPEG2 blank file from scratch is now supported
16 years ago
HumanDynamo
038be98b02
missing to register XMP type with PNG
16 years ago
HumanDynamo
a877aac92b
missing to register PGF comment
16 years ago
HumanDynamo
876eb87515
Add PGF image format codec. Read and Write metadata is supported.
...
PGF <http://www.libpgf.org > is an image format based on Wavelet compression.
Metadata are hosted in header of file into an unique byte array.
Metadata are saved into this area using a blank PNG file as container.
Comments, EXIF, IPTC, and XMP are supported.
16 years ago
HumanDynamo
35c2ebaf48
byte order in PNG blank dat is inverted. now creting PNG image from scratch work fine...
16 years ago
HumanDynamo
b625d025c8
wrong logic here to create blank PNG image in memory
16 years ago
HumanDynamo
b916c89320
to be able to use blank image at init
16 years ago
Andreas Huggel
f7b1109738
#638 : Aligned IPTC decoding with the new encoding, but kept it backward compatible for broken images.
16 years ago
Andreas Huggel
f1c4c53c22
#638 : Embed IPTC data in Photoshop IRB, some more code re-work.
16 years ago
Andreas Huggel
fbc3b58f14
#638 : Fixed compiler warnings, fixed more CRC issues, shortened some code.
16 years ago
Andreas Huggel
cfec8527c7
#638 : Replaced custom copyString function with strcpy, refactored some related code. Only tested on Linux, this may not compile on Windows.
16 years ago
Andreas Huggel
a1077e6ade
#630 : Fixed CRC error in chunk zTXt (Jochen Schug).
16 years ago
Andreas Huggel
1c2dd764f8
#636 : Do not change makernote byte order unless requested. By default, use the same byte order as that of the image (for new makernote metadata). Right now, the only makernote that has its own byte order is Nikon3. Also added missing padding to IPTC binary data for Exif.Image.IPTCNAA.
16 years ago
Andreas Huggel
5720f14438
Fixed nasty illegal read.
16 years ago
Robin Mills
ab8010ffd7
#556 timegm() function should work with Windows 64bit time_t
...
Fix submitted.
1) Removed _USE_32BIT_TIME_T from code base.
2) Added a macro to replace timegm() with _mkgmtime() on VC8+ (supports 32 and 64 bit time_t)
Simple test performed on VC 7.1/8 and 9 (VS 2003/05/08)
C:\gnu\exiv2\msvc\bin\Release>exiv2 -a 1:00:00 ad \R.tiff && exiv2 -pt \R.tiff | grep DateTimeOriginal
Exif.Photo.DateTimeOriginal Ascii 20 2009:04:26 10:38:18
C:\gnu\exiv2\msvc\bin\Release>exiv2 -a 1:00:00 ad \R.tiff && exiv2 -pt \R.tiff | grep -i time
Exif.Image.DateTimeOriginal Ascii 20 2009:04:26 11:38:18
C:\gnu\exiv2\msvc\bin\Release>
3) Cosmetic fix to basicio.cpp
Fixed nasty little <tab> I missed when I committed basicio.cpp on Sunday (apologies)
16 years ago
Robin Mills
61ca4b9b20
#634 Locking error on windows when updating a TIFF file with MemoryMapping enabled
16 years ago
Andreas Huggel
43303cf44b
#633 : Apply the fix only for platforms which have lstat. This does not include Win based platforms.
16 years ago
Andreas Huggel
fca7210a3f
#633 : Fixed FileIo::transfer to operate on the linked-to file if the FileIo is a symlink. Only tested on Linux.
16 years ago
Andreas Huggel
7e266aa5df
Updated Nikon Lens lookup table to v4.0.352.00 of Robert Rottmerhusen's fmountlens list.
16 years ago
Andreas Huggel
851db3df0e
#632 : Fixed another minor doc bug, ran make update-po again.
16 years ago
Andreas Huggel
ad3fd0ee6f
#631 : Fixed minor doc bugs, ran make update-po.
16 years ago
Andreas Huggel
05e8255c78
#628 : Improved version: insert comments just before SOFn. Updated test cases accordingly.
16 years ago
HumanDynamo
1679208578
I got a new Sigma Lens : AF70-200 F2.8 EX DG MACRO for Minolta/Sony camera. It's areally a pro lens... great...
16 years ago
Andreas Huggel
792b272ad7
#628 : Write COM segment (JPEG comment) last, after all APPn segments.
16 years ago
Andreas Huggel
3a8c054a20
Formatting tweaks.
16 years ago
Andreas Huggel
6be18b6a03
Updated Nikon Lens lookup table to v4.0.347.00 of Robert Rottmerhusen's fmountlens list.
16 years ago
Andreas Huggel
bbc7ae9358
Bumped version to 0.18.1
16 years ago
Andreas Huggel
e65b2db457
Added table with supported image formats to man page.
16 years ago
Andreas Huggel
0da1d88115
#606 : Added Michael Ulbrich's patch for Exif and IPTC write-support.
16 years ago
Andreas Huggel
e57c3e5e8a
#623 : Removed class TiffPrinter and tiffparse.cpp.
16 years ago
Andreas Huggel
096a1d169f
#622 : Fixed MicrosoftPhoto URI in call to RegisterNamespace.
16 years ago
HumanDynamo
f8b6281ad7
fix typo in M$ XMP namespace
16 years ago
Andreas Huggel
953f387e5c
Added digiKam and MicroSoftPhoto XMP properties to doc
17 years ago
HumanDynamo
c02386cb7a
wrong M$ XMP tag name : RatingPercent => Rating
17 years ago
Robin Mills
0b913aa605
#621 : Windows build environment changes
...
1) exv_msvc.h moved to msvc/include/exv_msvc.h
2) exv_msvc.h no longer has #pragma comment statements to link zlib
3) project files updated to explicitly link appropriate zlib library
17 years ago
Andreas Huggel
f827d8a380
#619 : Check for empty buffer. Fixes crash with some PNG images. (Lukasz Krzyzak)
17 years ago
Andreas Huggel
21ccbfce18
#618 : Added functions for easy access of common metadata, which is not always in the same tag. (Based on a discussion with and initial patch from Carsten Pfeiffer)
17 years ago
Andreas Huggel
cde2a54cc5
#602 : Added specialized insert and delete code for TIFF-like target images.
17 years ago
Andreas Huggel
4283f90c6d
Clarified doc.
17 years ago
Andreas Huggel
6ef6c54bc3
Fixed potential crash in Pentax makernote pretty-printing code (reported by Marijn Kampf)
17 years ago
Andreas Huggel
6c6fa80877
Replaced assertions with checks.
17 years ago
Andreas Huggel
b03733e66c
Updated Nikon Lens lookup table to v3.98 of Robert Rottmerhusen's fmountlens list.
17 years ago
Andreas Huggel
8a6d9dbc42
Updated Copyright notice for 2009.
17 years ago
Andreas Huggel
b03cbe50fb
Improved ExifParser doc, fixed TiffParser to filter Panasonic raw tags, tweaks.
17 years ago
Andreas Huggel
3b4f5b8c35
#494 : Added Exif.Canon.FocalLength (Artis Rozentals).
17 years ago