Code Search for Developers
 
 
  

module.graphic.jpeg.php from ECP (EliteCore Project) at Krugle


Show module.graphic.jpeg.php syntax highlighted

<?php
// +----------------------------------------------------------------------+
// | PHP version 5                                                        |
// +----------------------------------------------------------------------+
// | Copyright (c) 2002-2004 James Heinrich                               |
// +----------------------------------------------------------------------+
// | This source file is subject to version 2 of the GPL license,         |
// | that is bundled with this package in the file license.txt and is     |
// | available through the world-wide-web at the following url:           |
// | http://www.gnu.org/copyleft/gpl.html                                 |
// +----------------------------------------------------------------------+
// | getID3() - http://getid3.sourceforge.net or http://www.getid3.org    |
// +----------------------------------------------------------------------+
// | Authors: James Heinrich <infoØgetid3*org>                            |
// |          Allan Hansen <ahØartemis*dk>                                |
// +----------------------------------------------------------------------+
// | module.graphic.jpeg.php                                              |
// | Module for analyzing JPEG graphic files.                             |
// | dependencies: exif support in PHP (optional)                         |
// +----------------------------------------------------------------------+
//
// $Id: module.graphic.jpeg.php,v 1.3 2006/06/06 18:38:54 ah Exp $

        
        
class getid3_jpeg extends getid3_handler
{

    public function Analyze() {
        
        $getid3 = $this->getid3;

        $getid3->info['fileformat']                  = 'jpg';
        $getid3->info['video']['dataformat']         = 'jpg';
        $getid3->info['video']['lossless']           = false;
        $getid3->info['video']['bits_per_sample']    = 24;
        $getid3->info['video']['pixel_aspect_ratio'] = (float)1;

        fseek($getid3->fp, $getid3->info['avdataoffset'], SEEK_SET);

        list($getid3->info['video']['resolution_x'], $getid3->info['video']['resolution_y'], $type) = getimagesize($getid3->filename);
        
        if ($type != 2) {
            throw new getid3_exception('File detected as JPEG, but is currupt.');
        }

        if (function_exists('exif_read_data')) {

            $getid3->info['jpg']['exif'] = exif_read_data($getid3->filename, '', true, false);

        } else {

            $getid3->warning('EXIF parsing only available when compiled with --enable-exif (or php_exif.dll enabled for Windows).');
        }

        return true;
    }

}


?>



See more files for this project here

ECP (EliteCore Project)

EliteCore Project is a PHP5.1/Javascript/AJAX/XHTML/CSS framework for creating WEB 2.0 applications and services.The basic open-source instalation can be also used as an interactive personal page or BLOG.This project uses the latest features available.

Project homepage: http://sourceforge.net/projects/elitecore
Programming language(s): JavaScript,PHP,XML
License: cpl

  extension.cache.dbm.php
  extension.cache.mysql.php
  getid3.php
  module.archive.gzip.php
  module.archive.szip.php
  module.archive.tar.php
  module.archive.zip.php
  module.audio-video.asf.php
  module.audio-video.flv.php
  module.audio-video.mpeg.php
  module.audio-video.nsv.php
  module.audio-video.quicktime.php
  module.audio-video.real.php
  module.audio-video.riff.php
  module.audio-video.swf.php
  module.audio.aac_adif.php
  module.audio.aac_adts.php
  module.audio.ac3.php
  module.audio.au.php
  module.audio.avr.php
  module.audio.bonk.php
  module.audio.la.php
  module.audio.lpac.php
  module.audio.midi.php
  module.audio.monkey.php
  module.audio.mp3.php
  module.audio.mpc.php
  module.audio.mpc_old.php
  module.audio.optimfrog.php
  module.audio.rkau.php
  module.audio.shorten.php
  module.audio.tta.php
  module.audio.voc.php
  module.audio.vqf.php
  module.audio.wavpack.php
  module.audio.xiph.php
  module.graphic.bmp.php
  module.graphic.gif.php
  module.graphic.jpeg.php
  module.graphic.pcd.php
  module.graphic.png.php
  module.graphic.tiff.php
  module.lib.data_hash.php
  module.lib.iconv_replacement.php
  module.lib.image_size.php
  module.misc.iso.php
  module.tag.apetag.php
  module.tag.id3v1.php
  module.tag.id3v2.php
  module.tag.lyrics3.php