Refactoring the code
git-svn-id: http://php-reader.googlecode.com/svn/trunk@140 51a70ab9-7547-0410-9469-37e369ee0574
This commit is contained in:
@@ -2,7 +2,8 @@
|
||||
/**
|
||||
* PHP Reader Library
|
||||
*
|
||||
* Copyright (c) 2008 The PHP Reader Project Workgroup. All rights reserved.
|
||||
* Copyright (c) 2008-2009 The PHP Reader Project Workgroup. All rights
|
||||
* reserved.
|
||||
*
|
||||
* Redistribution and use in source and binary forms, with or without
|
||||
* modification, are permitted provided that the following conditions are met:
|
||||
@@ -30,7 +31,7 @@
|
||||
*
|
||||
* @package php-reader
|
||||
* @subpackage ID3
|
||||
* @copyright Copyright (c) 2008 The PHP Reader Project Workgroup
|
||||
* @copyright Copyright (c) 2008-2009 The PHP Reader Project Workgroup
|
||||
* @license http://code.google.com/p/php-reader/wiki/License New BSD License
|
||||
* @version $Id$
|
||||
*/
|
||||
@@ -57,7 +58,7 @@ require_once("ID3/Encoding.php");
|
||||
* @subpackage ID3
|
||||
* @author Sven Vollbehr <svollbehr@gmail.com>
|
||||
* @author Ryan Butterfield <buttza@gmail.com>
|
||||
* @copyright Copyright (c) 2008 The PHP Reader Project Workgroup
|
||||
* @copyright Copyright (c) 2008-2009 The PHP Reader Project Workgroup
|
||||
* @license http://code.google.com/p/php-reader/wiki/License New BSD License
|
||||
* @version $Rev$
|
||||
*/
|
||||
@@ -121,26 +122,26 @@ final class ID3_Frame_APIC extends ID3_Frame
|
||||
switch ($encoding) {
|
||||
case self::UTF16:
|
||||
list ($this->_description, $this->_imageData) =
|
||||
$this->explodeString16($this->_data, 2);
|
||||
$this->_description = $this->convertString
|
||||
$this->_explodeString16($this->_data, 2);
|
||||
$this->_description = $this->_convertString
|
||||
(Transform::fromString16($this->_description), "utf-16");
|
||||
break;
|
||||
case self::UTF16BE:
|
||||
list ($this->_description, $this->_imageData) =
|
||||
$this->explodeString16($this->_data, 2);
|
||||
$this->_description = $this->convertString
|
||||
$this->_explodeString16($this->_data, 2);
|
||||
$this->_description = $this->_convertString
|
||||
(Transform::fromString16BE($this->_description), "utf-16be");
|
||||
break;
|
||||
case self::UTF8:
|
||||
list ($this->_description, $this->_imageData) =
|
||||
$this->explodeString8($this->_data, 2);
|
||||
$this->_description = $this->convertString
|
||||
$this->_explodeString8($this->_data, 2);
|
||||
$this->_description = $this->_convertString
|
||||
($this->_description, "utf-8");
|
||||
break;
|
||||
default:
|
||||
list ($this->_description, $this->_imageData) =
|
||||
$this->explodeString8($this->_data, 2);
|
||||
$this->_description = $this->convertString
|
||||
$this->_explodeString8($this->_data, 2);
|
||||
$this->_description = $this->_convertString
|
||||
($this->_description, "iso-8859-1");
|
||||
}
|
||||
|
||||
@@ -248,11 +249,11 @@ final class ID3_Frame_APIC extends ID3_Frame
|
||||
public function getImageSize() { return $this->_imageSize; }
|
||||
|
||||
/**
|
||||
* Returns the frame raw data.
|
||||
* Returns the frame raw data without the header.
|
||||
*
|
||||
* @return string
|
||||
*/
|
||||
public function __toString()
|
||||
protected function _getData()
|
||||
{
|
||||
$data = Transform::toUInt8($this->_encoding) . $this->_mimeType . "\0" .
|
||||
Transform::toUInt8($this->_imageType);
|
||||
@@ -270,7 +271,6 @@ final class ID3_Frame_APIC extends ID3_Frame
|
||||
default:
|
||||
$data .= $this->_description . "\0";
|
||||
}
|
||||
parent::setData($data . $this->_imageData);
|
||||
return parent::__toString();
|
||||
return $data . $this->_imageData;
|
||||
}
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user