Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
E
elphel-apps-imgsrv
Project
Project
Details
Activity
Releases
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Board
Labels
Milestones
Wiki
Wiki
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Commits
Issue Boards
Open sidebar
Elphel
elphel-apps-imgsrv
Commits
d38d17c9
Commit
d38d17c9
authored
Mar 29, 2019
by
Andrey Filippov
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
fixing tags
parent
408aa909
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
8 additions
and
3 deletions
+8
-3
Exif_template.xml
src/Exif_template.xml
+4
-1
exif.php
src/exif.php
+4
-2
No files found.
src/Exif_template.xml
View file @
d38d17c9
...
...
@@ -30,7 +30,10 @@
<CameraSerialNumber
tag=
"0xc62f"
format=
"ASCII"
function=
"SERIAL"
/>
<ImageNumber
tag=
"0x9211"
format=
"LONG"
count=
"1"
seq=
"25"
dlen=
"4"
/>
<Orientation
tag=
"0x112"
format=
"SHORT"
count=
"1"
seq=
"27"
dlen=
"2"
/>
<PageNumber
tag=
"0x129"
format=
"SHORT"
count=
"1"
seq=
"28"
dlen=
"2"
/>
<PageNumber
tag=
"0x129"
format=
"SHORT"
count=
"2"
seq=
"28"
dlen=
"2"
>
<value>
0
</value>
<value>
4
</value>
</PageNumber>
<ExifTag
tag=
"0x8769"
format=
"LONG"
function=
"EXIFTAG"
/>
<GPSTag
tag=
"0x08825"
format=
"LONG"
function=
"GPSTAG"
/>
<!-- Tiff only -->
...
...
src/exif.php
View file @
d38d17c9
...
...
@@ -645,7 +645,6 @@ function finish_ifd(&$exif_data, &$ifd_pointer) { // we do not have additional I
function
addDirEntry0
(
$ifd_entry
,
&
$dir_sequence
,
&
$dir_entries
,
$lh
)
{
// global $dir_sequence,$dir_entries,$exif_head;
// $lh=count($exif_head);
$attrs
=
$ifd_entry
->
attributes
();
// var_dump($attrs);
// if (array_key_exists ( "seq" , $attrs )) {
...
...
@@ -830,7 +829,10 @@ echo "\n";
$ifd_entry
->
addChild
(
"ltag"
,
$ltag
);
if
(
count
(
$ifd_data
)
<=
4
)
{
$ifd_entry
->
addChild
(
'value_offest'
,
$ifd_pointer
);
$ifd_data
=
array_pad
(
$ifd_data
,
-
4
,
0
);
// add leading zeroes if <4 bytes
// $ifd_data= array_pad($ifd_data,-4,0); // add leading zeroes if <4 bytes
$ifd_data
=
array_pad
(
$ifd_data
,
4
,
0
);
// add trailing zeroes if <4 bytes (for shorts)
for
(
$i
=
0
;
$i
<
4
;
$i
++
)
$exif_data
[
$ifd_pointer
++
]
=
$ifd_data
[
$i
];
}
else
{
//pointer, not data
$ifd_entry
->
addChild
(
'value_offest'
,
$data_pointer
);
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment