1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328
<?php
/**
***********************************************************************************************
* Diese Klasse verwaltet Bilder und bietet Methoden zum Anpassen dieser
*
* @copyright 2004-2016 The Admidio Team
* @see http://www.admidio.org/
* @license https://www.gnu.org/licenses/gpl-2.0.html GNU General Public License v2.0 only
***********************************************************************************************
*/
/**
* @class Image
* Folgende Methoden stehen zur Verfuegung:
*
* setImageFromPath($pathAndFilename)
* - setzt den Pfad zum Bild und liest Bildinformationen ein
* setImageFromData($imageData)
* - liest das Bild aus einem String ein und wird intern als PNG-Bild
* weiter verarbeitet und ausgegeben
* copyToFile($imageResource = null, $pathAndFilename = "", $quality = 95)
* - kopiert die uebergebene Bildresource in die uebergebene Datei bzw. der
* hinterlegten Datei des Objekts
* copyToBrowser($imageResource = null, $quality = 95)
* - gibt das Bild direkt aus, so dass es im Browser dargestellt werden kann
* getMimeType() - gibt den Mime-Type (image/png) des Bildes zurueck
* rotate($direction = "right")
* - dreht das Bild um 90° in eine Richtung ("left"/"right")
* scaleLargerSide($newMaxSize)
* - skaliert die laengere Seite des Bildes auf den uebergebenen Pixelwert
* scale($newXSize, $newYSize, $aspect_ratio = true)
* - das Bild wird in einer vorgegebenen maximalen Laenge/Hoehe skaliert
* delete() - entfernt das Bild aus dem Speicher
*/
class Image
{
private $imagePath;
private $imageType;
public $imageResource;
public $imageWidth = 0;
public $imageHeight = 0;
/**
* @param string $pathAndFilename
*/
public function __construct($pathAndFilename = '')
{
if($pathAndFilename !== '')
{
$this->setImageFromPath($pathAndFilename);
}
}
/**
* Methode setzt den Pfad zum Bild und liest Bildinformationen ein
* @param string $pathAndFilename
* @return bool
*/
public function setImageFromPath($pathAndFilename)
{
if(is_file($pathAndFilename))
{
$this->imagePath = $pathAndFilename;
$properties = getimagesize($this->imagePath);
$this->imageWidth = $properties[0];
$this->imageHeight = $properties[1];
$this->imageType = $properties[2];
if($this->createResource($pathAndFilename))
{
return true;
}
}
return false;
}
/**
* Methode liest das Bild aus einem String ein und wird intern als PNG-Bild weiter verarbeitet und ausgegeben
* @param string $imageData String with binary image data
* @return bool
*/
public function setImageFromData($imageData)
{
$this->imageResource = imagecreatefromstring($imageData);
if($this->imageResource === false)
{
return false;
}
$this->imageWidth = imagesx($this->imageResource);
$this->imageHeight = imagesy($this->imageResource);
$this->imageType = IMAGETYPE_PNG;
return true;
}
/**
* @param string $pathAndFilename
* @return bool
*/
private function createResource($pathAndFilename)
{
switch ($this->imageType)
{
case IMAGETYPE_JPEG:
$this->imageResource = imagecreatefromjpeg($pathAndFilename);
break;
case IMAGETYPE_PNG:
$this->imageResource = imagecreatefrompng($pathAndFilename);
break;
}
return $this->imageResource !== false;
}
/**
* Methode kopiert die uebergebene Bildresource in die uebergebene Datei bzw. der hinterlegten Datei des Objekts
* @param resource|null $imageResource eine andere Bild-Resource kann uebergeben werden
* @param string $pathAndFilename ein andere Datei kann zur Ausgabe angegeben werden
* @param int $quality die Qualitaet kann fuer jpeg-Dateien veraendert werden
* @return bool true, falls erfolgreich
*/
public function copyToFile($imageResource = null, $pathAndFilename = '', $quality = 95)
{
if($imageResource === null)
{
$imageResource = $this->imageResource;
}
if($pathAndFilename === '')
{
$pathAndFilename = $this->imagePath;
}
switch ($this->imageType)
{
case IMAGETYPE_JPEG:
return imagejpeg($imageResource, $pathAndFilename, $quality);
case IMAGETYPE_PNG:
return imagepng($imageResource, $pathAndFilename);
default:
return false;
}
}
/**
* Methode gibt das Bild direkt aus, so dass es im Browser dargestellt werden kann
* @param resource|null $imageResource eine andere Bild-Resource kann uebergeben werden
* @param int $quality die Qualitaet kann fuer jpeg-Dateien veraendert werden
* @return bool
*/
public function copyToBrowser($imageResource = null, $quality = 95)
{
if($imageResource === null)
{
$imageResource = $this->imageResource;
}
switch ($this->imageType)
{
case IMAGETYPE_JPEG:
echo imagejpeg($imageResource, null, $quality);
break;
case IMAGETYPE_PNG:
echo imagepng($imageResource);
break;
default:
return false;
}
return true;
}
/**
* gibt den Mime-Type (image/png) des Bildes zurueck
* @return string
*/
public function getMimeType()
{
return image_type_to_mime_type($this->imageType);
}
/**
* setzt den Image-Type des Bildes neu
* @param string $imageType
*/
public function setImageType($imageType)
{
switch ($imageType)
{
case 'jpeg':
$this->imageType = IMAGETYPE_JPEG;
break;
case 'png':
$this->imageType = IMAGETYPE_PNG;
break;
}
}
/**
* Methode dreht das Bild um 90° in eine Richtung
* @param string $direction 'right' o. 'left' Richtung, in die gedreht wird
*/
public function rotate($direction = 'right')
{
// nur bei gueltigen Uebergaben weiterarbeiten
if($direction === 'left' || $direction === 'right')
{
if ($direction === 'left')
{
$angle = 90;
}
else
{
$angle = -90;
}
$imageRotated = imagerotate($this->imageResource, $angle, 0);
// speichern
$this->copyToFile($imageRotated);
// Loeschen des Bildes aus Arbeitsspeicher
imagedestroy($imageRotated);
}
}
/**
* Methode skaliert die laengere Seite des Bildes auf den uebergebenen Pixelwert
* die andere Seite wird dann entsprechend dem Seitenverhaeltnis zurueckgerechnet
* @param int $newMaxSize
* @return bool
*/
public function scaleLargerSide($newMaxSize)
{
// calc aspect ratio
$aspectRatio = $this->imageWidth / $this->imageHeight;
if($this->imageWidth > $this->imageHeight)
{
// x-Seite soll scalliert werden
$newXSize = $newMaxSize;
$newYSize = round($newMaxSize / $aspectRatio);
}
else
{
// y-Seite soll scalliert werden
$newXSize = round($newMaxSize * $aspectRatio);
$newYSize = $newMaxSize;
}
return $this->scale($newXSize, $newYSize, false);
}
/**
* Scale an image to the new size of the parameters. Therefore the PHP instance may need
* some memory which should be set through the PHP setting memory_limit.
* @param int $newXSize The new horizontal width in pixel. The image will be scaled to this size.
* @param int $newYSize The new vertical height in pixel. The image will be scaled to this size.
* @param bool $maintainAspectRatio If this is set to true, the image will be within the given size
* but maybe one side will be smaller than set with the parameters.
* @return bool
*/
public function scale($newXSize, $newYSize, $maintainAspectRatio = true)
{
if($maintainAspectRatio)
{
if($newXSize >= $this->imageWidth && $newYSize >= $this->imageHeight)
{
return false;
}
// calc aspect ratio
$aspectRatio = $this->imageWidth / $this->imageHeight;
if ($aspectRatio > $newXSize / $newYSize)
{
// scale to maximum width
$newWidth = $newXSize;
$newHeight = round($newXSize / $aspectRatio);
}
else
{
// scale to maximum height
$newWidth = round($newYSize * $aspectRatio);
$newHeight = $newYSize;
}
return $this->scale($newWidth, $newHeight, false);
}
// check current memory limit and set this to 50MB if the current value is lower
preg_match('/(\d+)/', ini_get('memory_limit'), $memoryLimit);
if($memoryLimit[0] < 50)
{
@ini_set('memory_limit', '50M');
}
// create new resized image
$resizedImageResource = imagescale($this->imageResource, $newXSize, $newYSize);
imagedestroy($this->imageResource);
// update the class parameters to new image data
$this->imageResource = $resizedImageResource;
$this->imageWidth = $newXSize;
$this->imageHeight = $newYSize;
return true;
}
/**
* Delete image from class and server memory
*/
public function delete()
{
imagedestroy($this->imageResource);
$this->imageResource = null;
$this->imagePath = '';
}
}