Browse Source
-change IsColor from non zero to 1
-change IsColor from non zero to 1
-new test and example for documentationexperimental/ZendEngine2
3 changed files with 32 additions and 3 deletions
@ -0,0 +1,23 @@ |
|||
<?php |
|||
// (c) M.Boerger
|
|||
//
|
|||
// $Id$
|
|||
//
|
|||
?><!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional">
|
|||
<html> |
|||
<head> |
|||
<title>exif_read_data example</title> |
|||
</head> |
|||
<body> |
|||
<?php |
|||
$exif = exif_read_data ('tests/test1.jpg','IFD0'); |
|||
echo $exif===false ? "No header data found.<br>\n" : "Image contains headers<br>"; |
|||
$exif = exif_read_data ('tests/test2.jpg',0,true); |
|||
foreach($exif as $key=>$section) { |
|||
foreach($section as $name=>$val) { |
|||
echo "$key.$name: $val<br>\n"; |
|||
} |
|||
} |
|||
?>
|
|||
</body> |
|||
</html> |
|||
Write
Preview
Loading…
Cancel
Save
Reference in new issue