History log of /PHP-7.0/ext/exif/exif.c (Results 251 – 275 of 311)
Revision (<<< Hide revision tags) (Show revision tags >>>) Date Author Comments
Revision tags: help
# e03a8a99 13-Mar-2002 Marcus Boerger

-handling


# 3c47fb91 12-Mar-2002 Marcus Boerger

-usability
-tests


# 8a622d06 12-Mar-2002 Marcus Boerger

-return size of thumbnail even if it not read


# 06a24216 12-Mar-2002 Marcus Boerger

-support for array tags
-better memory handling
-support for thumbnails in TIFF format
-new functions exif_imagetype
@-new function exif_imagetype
@-exif_thumbnail fupports thumbn

-support for array tags
-better memory handling
-support for thumbnails in TIFF format
-new functions exif_imagetype
@-new function exif_imagetype
@-exif_thumbnail fupports thumbnails in TIFF format and can return size
@ of thumbnail

show more ...


# 42e478c7 08-Mar-2002 Marcus Boerger

-support for out of section data


# 27242a7a 08-Mar-2002 Marcus Boerger

-change IsColor from non zero to 1
-new test and example for documentation


# 9363bfad 08-Mar-2002 Marcus Boerger

-Support for IFD Arrays
#necessary for update/write operations


# d994d0b4 08-Mar-2002 Marcus Boerger

TIFF support for 'non' digicam files
# same as in standard/image.c but here it's more complex


# 88750086 07-Mar-2002 foobar

- Fixed some compile warnings and removed bogus comments.


# 0a0942b1 06-Mar-2002 Marcus Boerger

-comments
#just another jhead.c line


# 15d74e34 06-Mar-2002 Marcus Boerger

-comments


# 0b5759f7 06-Mar-2002 Marcus Boerger

-missing efree
-incorrect index/length computing: left from jhead
#no errors left with test files - controlled manually with hexeditor


# 0ecd2f08 06-Mar-2002 Marcus Boerger

-new working thumbnail code
-everything uses new data structures
-new function exif_thumbnail
#nearly stripped off all jhead code
@read_exif_data is now an alias for exif_read_data

-new working thumbnail code
-everything uses new data structures
-new function exif_thumbnail
#nearly stripped off all jhead code
@read_exif_data is now an alias for exif_read_data
@ important to differenciate old/new version for tests)
@new function exif_tagname returns the names of tags
@new function exif_thumbnail extracts embedded thumbnail (Marcus)
#switched to internal version 1.2

show more ...


# 088450ef 05-Mar-2002 Marcus Boerger

-fixes
-changed internal data structures
#nearly stripped off all jhead code


# 6b2a0743 04-Mar-2002 Marcus Boerger

- Read IsColor for TIFF


# a7403576 04-Mar-2002 Marcus Boerger

- disabled debug information
- added missing width/height from primary ifd for TIFF


# be5908b0 04-Mar-2002 Marcus Boerger

-addition to last change: php_image.h must be included now


# 83e6dbcf 04-Mar-2002 Rasmus Lerdorf

Let getimagesize() and read_exif_data() share the same constants to
promote a little bit of code reuse here on two very similar problems.


# 642ab24d 04-Mar-2002 Marcus Boerger

-Added TIFF support
-Changed parameters after checking bugdatabase and discussion with
Rasmus: 1st=Filename, 2nd=NeededSections
# 3rd=Thumbnail, 4th=All
# 3rd and 4th parameter

-Added TIFF support
-Changed parameters after checking bugdatabase and discussion with
Rasmus: 1st=Filename, 2nd=NeededSections
# 3rd=Thumbnail, 4th=All
# 3rd and 4th parameter are currently diabled because the code
# does not work correctly (will correct this in later versions).
# Changing the parameters will not cause any problems because the
# old parameter functions never found their way in documentation
# and the they did not work...
@-Added TIFF support
@-Changed parameters after checking bugdatabase and discussion with Rasmus
@ 1st=Filename, 2nd=NeededSections
@ If the 2nd parameter is not present or 0 or '' the function will return
@ a result array even if no data was read from file.
# Personally i consider a default behaviour to generate no array if
# no data is present as a bad idea because here we can generate as
# much information as possible....
@ If the 2nd parameter is a string then that string describes which
@ sections have to be present in the file to generate a result array.
@ If none of the needed section is found the result will be false.
@ Section strings are "ANY_TAG","IFD0","COMMENT","EXIF","GPS","INTEROP"
@ "FPIX","APP12". Each string has to be separated by a colon. So
@ "COMMENT,EXIF" returns an array if either a comment or an Exif
@ section is present. "IFD0" is standard datastructure in a TIFF/JPEG
@ file that contains image information. "EXIF" is the Exif structure
@ of TIFF/JPEG (IFD0 subdirectory). "GPS", "INTEROP", "FPIX", "APP12"
@ are additional IFD0 subdirectories. The APP12 support is an
@ experimental Olympus support.
# Do not worry this is no problem, it is safe.
@(Marcus)

show more ...


# 442773ab 02-Mar-2002 Marcus Boerger

Wrong brackets by rasmus...but sorry the fault was mine because i missed them...

i also decided to call the first working version 1.0a

by the way: currently i am working on tiff fil

Wrong brackets by rasmus...but sorry the fault was mine because i missed them...

i also decided to call the first working version 1.0a

by the way: currently i am working on tiff files and it looks like it may work

show more ...


# 15ba6402 02-Mar-2002 Rasmus Lerdorf

Fix a couple of warnings


# 0857bdbc 01-Mar-2002 Marcus Boerger

+Support for Photographer/Editor Copyright as associative array as this is a new feature the change (optionally being an array) has to be mentioned in documentation.
+New function exif_headername

+Support for Photographer/Editor Copyright as associative array as this is a new feature the change (optionally being an array) has to be mentioned in documentation.
+New function exif_headername can be used to read the internal Tag namelist (was mainly created for debugging purpose but maybe somone writes code to create/update exif headers here).
+An internal version number is present.
+A testpage is supplied test.txt describes how the test works.
+The oldfunction read_exif_data has got an alias exif_read_data

As the old version of this module is very buggy i decided to implement the testpage (test.txt) and to create the alias. The test script only works with the alias as the old version does not pass tests. By the way it seems a good way to prepend 'exif_' to all functions in the module.

show more ...


# 05b13da5 28-Feb-2002 Marcus Boerger

Changed file to match CODING_STANDARDS except function names that match jhead.c project. I think it is acceptable using naming conventions of other projects when borrowing code.


# 7d983e5f 28-Feb-2002 Sebastian Bergmann

Fix headers.


# 98ebd1c2 28-Feb-2002 Marcus Boerger

+Added UNICODE support for Comments
+Added Description,Artist
+Added missing memory deallocation
+Corrected error with multiple comments
+Corrected handling of ExifVersion, Tag has 4

+Added UNICODE support for Comments
+Added Description,Artist
+Added missing memory deallocation
+Corrected error with multiple comments
+Corrected handling of ExifVersion, Tag has 4 ASCII characters *WITHOUT* NUL
+Corrected handling of Thumbnailsize if current source detects size < 0
+Changed all fields to char* that do not have a maximum length in EXIF standard
+Undocumented second Parameter ReadAll frees memory to early -> moved to third position default changed to false -> faster
+New second Parameter [true|false] to specify whether or not to to read thumbnails -> reading is timeconsumpting suppose default should be false -> done so

show more ...


1...<<111213