MediaWiki REL1_37
|
Class for reading jpegs and extracting metadata. More...
Static Public Member Functions | |
static | doPSIR ( $app13) |
This reads the photoshop image resource. | |
static | segmentSplitter ( $filename) |
Function to extract metadata segments of interest from jpeg files based on GIFMetadataExtractor. | |
Static Private Member Functions | |
static | jpegExtractMarker (&$fh) |
Helper function for jpegSegmentSplitter. | |
Private Attributes | |
const | MAX_JPEG_SEGMENTS = 200 |
The max segment is a sanity check. | |
Class for reading jpegs and extracting metadata.
see also BitmapMetadataHandler.
Based somewhat on GIFMetadataExtractor.
Definition at line 34 of file JpegMetadataExtractor.php.
|
static |
This reads the photoshop image resource.
Currently it only compares the iptc/iim hash with the stored hash, which is used to determine the precedence of the iptc data. In future it may extract some other info, like url of copyright license.
This should generally be called by BitmapMetadataHandler::doApp13()
string | $app13 | Photoshop psir app13 block from jpg. |
MWException | (It gets caught next level up though) |
Definition at line 219 of file JpegMetadataExtractor.php.
References wfUnpack().
Referenced by BitmapMetadataHandler\doApp13().
|
staticprivate |
Helper function for jpegSegmentSplitter.
resource | &$fh | File handle for JPEG file |
MWException |
Definition at line 188 of file JpegMetadataExtractor.php.
References wfUnpack().
Referenced by segmentSplitter().
|
static |
Function to extract metadata segments of interest from jpeg files based on GIFMetadataExtractor.
we can almost use getimagesize to do this but gis doesn't support having multiple app1 segments and those can't extract xmp on files containing both exif and xmp data
string | $filename | Name of jpeg file |
MWException | If given invalid file. |
Definition at line 52 of file JpegMetadataExtractor.php.
References jpegExtractMarker(), wfDebug(), and wfUnpack().
Referenced by BitmapMetadataHandler\Jpeg().
|
private |
The max segment is a sanity check.
A JPEG file should never even remotely have that many segments. Your average file has about 10.
Definition at line 39 of file JpegMetadataExtractor.php.