У меня есть система загрузки изображений PHP, которая позволяет пользователю загружать различные изображения (JPG, GIF, PNG). Каждое загруженное изображение имеет иконку (20x20), миниатюру (150x150) и сгенерированную для него открытку (500x500) - я называю эти «метаизображения». Если исходные размеры изображения не являются квадратными, как метаизображение, оно масштабируется для наилучшего соответствия, и создается прозрачный холст нужного размера с наложенным на него метаизображением. Из-за этого прозрачного изображения и для других целей все сгенерированные метаизображения сами являются PNG (независимо от исходного формата изображения).
Например, если пользователь загружает изображение JPG размером 800 на 600 пикселей, в файловой системе появляется следующее:
- Оригинал * .jpg при 800 х 600
- Meta icon * .png с 20 x 15 копиями исходного изображения по центру по горизонтали и вертикали на прозрачном холсте 20 x 20
- Meta thumbail * .png с 150 x 112 копиями исходного изображения по центру по горизонтали и вертикали на прозрачном полотне 150 x 150
- Meta icon * .png с 500 x 375 копиями исходного изображения по центру по горизонтали и вертикали на 500 x 500 прозрачном холсте
Это прекрасно работает для файлов JPG и GIF - все цвета обрабатываются правильно, размеры работают и т. Д. И т. Д. И т. П.
Однако, если я загружаю PNG, в котором есть какой-либо черный цвет (rgb (0,0,0), # 000000), все получающиеся 3 мета изображения будут преобразованы в черный цвет в прозрачный. Все остальное в порядке - размеры и т. Д. И помните, прозрачные GIF-файлы работают нормально, даже если внутри черный.
Может кто-нибудь объяснить мне, как я могу это исправить? Ниже приведен код, который я написал для этой системы (обратите внимание, что под ним определено 3 расширения абстрактного класса) :
<?php
/*
* TODO: There is no reason for this class to be abstract except that I have not
* added any of the setters/getters/etc which would make it useful on its
* own. As is, an instantiation of this class would not accomplish
* anything so I have made it abstract to avoid instantiation. Three
* simple and usable extensions of this class exist below it in this file.
*/
abstract class ObjectImageRenderer
{
const WRITE_DIR = SITE_UPLOAD_LOCATION;
protected $iTargetWidth = 0;
protected $iTargetHeight = 0;
protected $iSourceWidth = 0;
protected $iSourceHeight = 0;
protected $iCalculatedWidth = 0;
protected $iCalculatedHeight = 0;
protected $sSourceLocation = '';
protected $sSourceExt = '';
protected $oSourceImage = null;
protected $sTargetLocation = '';
protected $sTargetNamePrefix = '';
protected $oTargetImage = null;
protected $oTransparentCanvas = null;
protected $bNeedsCanvas = false;
protected $bIsRendered = false;
public function __construct( $sSourceLocation )
{
if( ! is_string( $sSourceLocation ) || $sSourceLocation === '' ||
! is_file( $sSourceLocation ) || ! is_readable( $sSourceLocation )
)
{
throw new Exception( __CLASS__ . ' must be instantiated with valid path/filename of source image as first param.' );
}
$this->sSourceLocation = $sSourceLocation;
$this->resolveNames();
}
public static function factory( $sSourceLocation, $size )
{
switch( $size )
{
case 'icon':
return new ObjectIconRenderer( $sSourceLocation );
break;
case 'thumbnail':
return new ObjectThumbnailRenderer( $sSourceLocation );
break;
case 'postcard':
return new ObjectPostcardRenderer( $sSourceLocation );
break;
}
}
public static function batchRender( $Source )
{
if( is_string( $Source ) )
{
try
{
ObjectImageRenderer::factory( $Source, 'icon' )->render();
ObjectImageRenderer::factory( $Source, 'thumbnail' )->render();
ObjectImageRenderer::factory( $Source, 'postcard' )->render();
}
catch( Exception $exc )
{
LogProcessor::submit( 500, $exc->getMessage() );
}
}
else if( is_array( $Source ) && count( $Source ) > 0 )
{
foreach( $Source as $sSourceLocation )
{
if( is_string( $sSourceLocation ) )
{
self::batchRender( $sSourceLocation );
}
}
}
}
/**
* loadImageGD - read image from filesystem into GD based image resource
*
* @access public
* @static
* @param STRING $sImageFilePath
* @param STRING $sSourceExt OPTIONAL
* @return RESOURCE
*/
public static function loadImageGD( $sImageFilePath, $sSourceExt = null )
{
$oSourceImage = null;
if( is_string( $sImageFilePath ) && $sImageFilePath !== '' &&
is_file( $sImageFilePath ) && is_readable( $sImageFilePath )
)
{
if( $sSourceExt === null )
{
$aPathInfo = pathinfo( $sImageFilePath );
$sSourceExt = strtolower( (string) $aPathInfo['extension'] );
}
switch( $sSourceExt )
{
case 'jpg':
case 'jpeg':
case 'pjpeg':
$oSourceImage = imagecreatefromjpeg( $sImageFilePath );
break;
case 'gif':
$oSourceImage = imagecreatefromgif( $sImageFilePath );
break;
case 'png':
case 'x-png':
$oSourceImage = imagecreatefrompng( $sImageFilePath );
break;
default:
break;
}
}
return $oSourceImage;
}
protected function resolveNames()
{
$aPathInfo = pathinfo( $this->sSourceLocation );
$this->sSourceExt = strtolower( (string) $aPathInfo['extension'] );
$this->sTargetLocation = self::WRITE_DIR . $this->sTargetNamePrefix . $aPathInfo['basename'] . '.png';
}
protected function readSourceFileInfo()
{
$this->oSourceImage = self::loadImageGD( $this->sSourceLocation, $this->sSourceExt );
if( ! is_resource( $this->oSourceImage ) )
{
throw new Exception( __METHOD__ . ': image read failed for ' . $this->sSourceLocation );
}
$this->iSourceWidth = imagesx( $this->oSourceImage );
$this->iSourceHeight = imagesy( $this->oSourceImage );
return $this;
}
protected function calculateNewDimensions()
{
if( $this->iSourceWidth === 0 || $this->iSourceHeight === 0 )
{
throw new Exception( __METHOD__ . ': source height or width is 0. Has ' . __CLASS__ . '::readSourceFileInfo() been called?' );
}
if( $this->iSourceWidth > $this->iTargetWidth || $this->iSourceHeight > $this->iTargetHeight )
{
$nDimensionRatio = ( $this->iSourceWidth / $this->iSourceHeight );
if( $nDimensionRatio > 1 )
{
$this->iCalculatedWidth = $this->iTargetWidth;
$this->iCalculatedHeight = (int) round( $this->iTargetWidth / $nDimensionRatio );
}
else
{
$this->iCalculatedWidth = (int) round( $this->iTargetHeight * $nDimensionRatio );
$this->iCalculatedHeight = $this->iTargetHeight;
}
}
else
{
$this->iCalculatedWidth = $this->iSourceWidth;
$this->iCalculatedHeight = $this->iSourceHeight;
}
if( $this->iCalculatedWidth < $this->iTargetWidth || $this->iCalculatedHeight < $this->iTargetHeight )
{
$this->bNeedsCanvas = true;
}
return $this;
}
protected function createTarget()
{
if( $this->iCalculatedWidth === 0 || $this->iCalculatedHeight === 0 )
{
throw new Exception( __METHOD__ . ': calculated height or width is 0. Has ' . __CLASS__ . '::calculateNewDimensions() been called?' );
}
$this->oTargetImage = imagecreatetruecolor( $this->iCalculatedWidth, $this->iCalculatedHeight );
$aTransparentTypes = Array( 'gif', 'png', 'x-png' );
if( in_array( $this->sSourceExt, $aTransparentTypes ) )
{
$oTransparentColor = imagecolorallocate( $this->oTargetImage, 0, 0, 0 );
imagecolortransparent( $this->oTargetImage, $oTransparentColor);
imagealphablending( $this->oTargetImage, false );
}
return $this;
}
protected function fitToMaxDimensions()
{
$iTargetX = (int) round( ( $this->iTargetWidth - $this->iCalculatedWidth ) / 2 );
$iTargetY = (int) round( ( $this->iTargetHeight - $this->iCalculatedHeight ) / 2 );
$this->oTransparentCanvas = imagecreatetruecolor( $this->iTargetWidth, $this->iTargetHeight );
imagealphablending( $this->oTransparentCanvas, false );
imagesavealpha( $this->oTransparentCanvas, true );
$oTransparentColor = imagecolorallocatealpha( $this->oTransparentCanvas, 0, 0, 0, 127 );
imagefill($this->oTransparentCanvas, 0, 0, $oTransparentColor );
$bReturnValue = imagecopyresampled( $this->oTransparentCanvas, $this->oTargetImage, $iTargetX, $iTargetY, 0, 0, $this->iCalculatedWidth, $this->iCalculatedHeight, $this->iCalculatedWidth, $this->iCalculatedHeight );
$this->oTargetImage = $this->oTransparentCanvas;
return $bReturnValue;
}
public function render()
{
/*
* TODO: If this base class is ever made instantiable, some re-working is
* needed such that the developer harnessing it can choose whether to
* write to the filesystem on render, he can ask for the
* image resources, determine whether cleanup needs to happen, etc.
*/
$this
->readSourceFileInfo()
->calculateNewDimensions()
->createTarget();
$this->bIsRendered = imagecopyresampled( $this->oTargetImage, $this->oSourceImage, 0, 0, 0, 0, $this->iCalculatedWidth, $this->iCalculatedHeight, $this->iSourceWidth, $this->iSourceHeight );
if( $this->bIsRendered && $this->bNeedsCanvas )
{
$this->bIsRendered = $this->fitToMaxDimensions();
}
if( $this->bIsRendered )
{
imagepng( $this->oTargetImage, $this->sTargetLocation );
@chmod( $this->sTargetLocation, 0644 );
}
if( ! $this->bIsRendered )
{
throw new Exception( __METHOD__ . ': failed to copy image' );
}
$this->cleanUp();
}
public function cleanUp()
{
if( is_resource( $this->oSourceImage ) )
{
imagedestroy( $this->oSourceImage );
}
if( is_resource( $this->oTargetImage ) )
{
imagedestroy( $this->oTargetImage );
}
if( is_resource( $this->oTransparentCanvas ) )
{
imagedestroy( $this->oTransparentCanvas );
}
}
}
class ObjectIconRenderer extends ObjectImageRenderer
{
public function __construct( $sSourceLocation )
{
/* These Height/Width values are also coded in
* src/php/reference/display/IconUploadHandler.inc
* so if you edit them here, do it there too
*/
$this->iTargetWidth = 20;
$this->iTargetHeight = 20;
$this->sTargetNamePrefix = 'icon_';
parent::__construct( $sSourceLocation );
}
}
class ObjectThumbnailRenderer extends ObjectImageRenderer
{
public function __construct( $sSourceLocation )
{
/* These Height/Width values are also coded in
* src/php/reference/display/IconUploadHandler.inc
* so if you edit them here, do it there too
*/
$this->iTargetWidth = 150;
$this->iTargetHeight = 150;
$this->sTargetNamePrefix = 'thumbnail_';
parent::__construct( $sSourceLocation );
}
}
class ObjectPostcardRenderer extends ObjectImageRenderer
{
public function __construct( $sSourceLocation )
{
/* These Height/Width values are also coded in
* src/php/reference/display/IconUploadHandler.inc
* so if you edit them here, do it there too
*/
$this->iTargetWidth = 500;
$this->iTargetHeight = 500;
$this->sTargetNamePrefix = 'postcard_';
parent::__construct( $sSourceLocation );
}
}
Код, который я использую для запуска:
<?php
ObjectImageRenderer::batchRender( $sSourceFile );
Основные проблемы заключаются в методах createTarget()
и fitToMaxDimensions()
. В createTarget()
, если я закомментирую следующие строки:
$aTransparentTypes = Array( 'gif', 'png', 'x-png' );
if( in_array( $this->sSourceExt, $aTransparentTypes ) )
{
$oTransparentColor = imagecolorallocate( $this->oTargetImage, 0, 0, 0 );
imagecolortransparent( $this->oTargetImage, $oTransparentColor);
imagealphablending( $this->oTargetImage, false );
}
Я больше не теряю свой черный цвет, но вся существующая прозрачность становится черной.
Полагаю, проблема в том, что я использую черный в качестве канала прозрачности. Но как мне избежать использования цвета изображения на изображении в качестве канала прозрачности?
Спасибо всем, кто может помочь мне понять тайны прозрачности!
Jim