Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
5 changes: 4 additions & 1 deletion Makernotes/nikon.php
Original file line number Diff line number Diff line change
Expand Up @@ -32,6 +32,8 @@
* Header 10 Bytes "Nikon\x00\x02\x10\x00\x00"
* or
* "Nikon\x00\x02\x00\x00\x00"
* or
* "Nikon\x00\x02\x11\x00\x00"
* TIFF Data Variable TIFF header, with associated
* Standard IFD Data using, Nikon
* Type 3 Tags. Offsets are from
Expand Down Expand Up @@ -131,7 +133,8 @@ function get_Nikon_Makernote( $Makernote_Tag, $EXIF_Array, $filehnd, $Make_Field

}
else if ( ( substr( $Makernote_Tag['Data'],0 , 10 ) == "Nikon\x00\x02\x10\x00\x00" ) ||
( substr( $Makernote_Tag['Data'],0 , 10 ) == "Nikon\x00\x02\x00\x00\x00" ) )
( substr( $Makernote_Tag['Data'],0 , 10 ) == "Nikon\x00\x02\x00\x00\x00" ) ||
( substr( $Makernote_Tag['Data'],0 , 10 ) == "Nikon\x00\x02\x11\x00\x00" ) )
{
// Nikon Type 3 Makernote

Expand Down