2010-07-02 01:48:07 +02:00
|
|
|
<?php
|
2016-11-04 16:44:49 +01:00
|
|
|
/**
|
|
|
|
* @file include/Photo.php
|
|
|
|
* @brief This file contains the Photo class for image processing
|
|
|
|
*/
|
|
|
|
|
|
|
|
require_once("include/photos.php");
|
2010-07-02 01:48:07 +02:00
|
|
|
|
|
|
|
class Photo {
|
|
|
|
|
2016-11-04 16:44:49 +01:00
|
|
|
private $image;
|
|
|
|
|
|
|
|
/*
|
|
|
|
* Put back gd stuff, not everybody have Imagick
|
|
|
|
*/
|
|
|
|
private $imagick;
|
|
|
|
private $width;
|
|
|
|
private $height;
|
|
|
|
private $valid;
|
|
|
|
private $type;
|
|
|
|
private $types;
|
|
|
|
|
|
|
|
/**
|
|
|
|
* @brief supported mimetypes and corresponding file extensions
|
|
|
|
*/
|
|
|
|
static function supportedTypes() {
|
|
|
|
if (class_exists('Imagick')) {
|
|
|
|
|
|
|
|
// Imagick::queryFormats won't help us a lot there...
|
|
|
|
// At least, not yet, other parts of friendica uses this array
|
|
|
|
$t = array(
|
|
|
|
'image/jpeg' => 'jpg',
|
|
|
|
'image/png' => 'png',
|
|
|
|
'image/gif' => 'gif'
|
|
|
|
);
|
|
|
|
} else {
|
|
|
|
$t = array();
|
|
|
|
$t['image/jpeg'] ='jpg';
|
|
|
|
if (imagetypes() & IMG_PNG) {
|
|
|
|
$t['image/png'] = 'png';
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
return $t;
|
2014-06-16 21:49:45 +02:00
|
|
|
}
|
|
|
|
|
2016-11-04 16:44:49 +01:00
|
|
|
public function __construct($data, $type=null) {
|
|
|
|
$this->imagick = class_exists('Imagick');
|
|
|
|
$this->types = $this->supportedTypes();
|
2016-11-04 19:26:28 +01:00
|
|
|
if (!array_key_exists($type, $this->types)){
|
2016-11-04 16:44:49 +01:00
|
|
|
$type='image/jpeg';
|
|
|
|
}
|
|
|
|
$this->type = $type;
|
2012-07-21 17:17:19 +02:00
|
|
|
|
2016-11-04 16:44:49 +01:00
|
|
|
if ($this->is_imagick() && $this->load_data($data)) {
|
2016-11-04 19:26:28 +01:00
|
|
|
return true;
|
|
|
|
} else {
|
|
|
|
// Failed to load with Imagick, fallback
|
|
|
|
$this->imagick = false;
|
|
|
|
}
|
|
|
|
return $this->load_data($data);
|
2014-06-16 21:49:45 +02:00
|
|
|
}
|
|
|
|
|
2016-11-04 16:44:49 +01:00
|
|
|
public function __destruct() {
|
|
|
|
if ($this->image) {
|
|
|
|
if ($this->is_imagick()) {
|
|
|
|
$this->image->clear();
|
|
|
|
$this->image->destroy();
|
|
|
|
return;
|
|
|
|
}
|
2017-05-01 16:38:39 +02:00
|
|
|
if (is_resource($this->image))
|
|
|
|
imagedestroy($this->image);
|
2016-11-04 16:44:49 +01:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
public function is_imagick() {
|
|
|
|
return $this->imagick;
|
2014-06-16 21:49:45 +02:00
|
|
|
}
|
2012-09-12 11:55:09 +02:00
|
|
|
|
2016-11-04 16:44:49 +01:00
|
|
|
/**
|
|
|
|
* @brief Maps Mime types to Imagick formats
|
2016-11-04 19:26:28 +01:00
|
|
|
* @return arr With with image formats (mime type as key)
|
2016-11-04 16:44:49 +01:00
|
|
|
*/
|
|
|
|
public function get_FormatsMap() {
|
|
|
|
$m = array(
|
|
|
|
'image/jpeg' => 'JPG',
|
|
|
|
'image/png' => 'PNG',
|
|
|
|
'image/gif' => 'GIF'
|
|
|
|
);
|
|
|
|
return $m;
|
|
|
|
}
|
|
|
|
|
|
|
|
private function load_data($data) {
|
|
|
|
if ($this->is_imagick()) {
|
2016-11-04 19:26:28 +01:00
|
|
|
$this->image = new Imagick();
|
2016-11-04 16:44:49 +01:00
|
|
|
try {
|
2012-09-12 11:55:09 +02:00
|
|
|
$this->image->readImageBlob($data);
|
2016-11-04 19:26:28 +01:00
|
|
|
} catch (Exception $e) {
|
2012-09-12 11:55:09 +02:00
|
|
|
// Imagick couldn't use the data
|
|
|
|
return false;
|
|
|
|
}
|
2012-07-22 13:43:46 +02:00
|
|
|
|
2016-11-04 16:44:49 +01:00
|
|
|
/*
|
|
|
|
* Setup the image to the format it will be saved to
|
|
|
|
*/
|
|
|
|
$map = $this->get_FormatsMap();
|
|
|
|
$format = $map[$type];
|
|
|
|
$this->image->setFormat($format);
|
|
|
|
|
|
|
|
// Always coalesce, if it is not a multi-frame image it won't hurt anyway
|
|
|
|
$this->image = $this->image->coalesceImages();
|
|
|
|
|
|
|
|
/*
|
|
|
|
* setup the compression here, so we'll do it only once
|
|
|
|
*/
|
|
|
|
switch($this->getType()){
|
|
|
|
case "image/png":
|
2016-11-04 19:26:28 +01:00
|
|
|
$quality = get_config('system', 'png_quality');
|
2016-11-04 16:44:49 +01:00
|
|
|
if ((! $quality) || ($quality > 9)) {
|
|
|
|
$quality = PNG_QUALITY;
|
|
|
|
}
|
|
|
|
/*
|
|
|
|
* From http://www.imagemagick.org/script/command-line-options.php#quality:
|
|
|
|
*
|
|
|
|
* 'For the MNG and PNG image formats, the quality value sets
|
|
|
|
* the zlib compression level (quality / 10) and filter-type (quality % 10).
|
|
|
|
* The default PNG "quality" is 75, which means compression level 7 with adaptive PNG filtering,
|
|
|
|
* unless the image has a color map, in which case it means compression level 7 with no PNG filtering'
|
|
|
|
*/
|
|
|
|
$quality = $quality * 10;
|
|
|
|
$this->image->setCompressionQuality($quality);
|
|
|
|
break;
|
|
|
|
case "image/jpeg":
|
2016-11-04 19:26:28 +01:00
|
|
|
$quality = get_config('system', 'jpeg_quality');
|
2016-11-04 16:44:49 +01:00
|
|
|
if ((! $quality) || ($quality > 100)) {
|
|
|
|
$quality = JPEG_QUALITY;
|
|
|
|
}
|
|
|
|
$this->image->setCompressionQuality($quality);
|
|
|
|
}
|
2012-07-21 17:17:19 +02:00
|
|
|
|
2012-10-09 17:35:32 +02:00
|
|
|
// The 'width' and 'height' properties are only used by non-Imagick routines.
|
|
|
|
$this->width = $this->image->getImageWidth();
|
2012-09-12 11:55:09 +02:00
|
|
|
$this->height = $this->image->getImageHeight();
|
|
|
|
$this->valid = true;
|
2012-07-21 17:17:19 +02:00
|
|
|
|
2012-10-09 17:35:32 +02:00
|
|
|
return true;
|
2012-09-12 11:55:09 +02:00
|
|
|
}
|
2012-07-22 13:43:46 +02:00
|
|
|
|
2012-09-12 11:55:09 +02:00
|
|
|
$this->valid = false;
|
|
|
|
$this->image = @imagecreatefromstring($data);
|
2016-11-04 16:44:49 +01:00
|
|
|
if ($this->image !== false) {
|
2012-09-12 11:55:09 +02:00
|
|
|
$this->width = imagesx($this->image);
|
|
|
|
$this->height = imagesy($this->image);
|
|
|
|
$this->valid = true;
|
|
|
|
imagealphablending($this->image, false);
|
|
|
|
imagesavealpha($this->image, true);
|
|
|
|
|
|
|
|
return true;
|
|
|
|
}
|
2016-11-04 16:44:49 +01:00
|
|
|
|
2012-09-12 11:55:09 +02:00
|
|
|
return false;
|
|
|
|
}
|
2012-07-22 17:09:18 +02:00
|
|
|
|
2016-11-04 16:44:49 +01:00
|
|
|
public function is_valid() {
|
|
|
|
if ($this->is_imagick()) {
|
|
|
|
return ($this->image !== false);
|
|
|
|
}
|
|
|
|
return $this->valid;
|
2014-06-16 21:49:45 +02:00
|
|
|
}
|
2012-07-21 17:17:19 +02:00
|
|
|
|
2016-11-04 16:44:49 +01:00
|
|
|
public function getWidth() {
|
|
|
|
if (!$this->is_valid()) {
|
|
|
|
return false;
|
|
|
|
}
|
2012-07-21 17:17:19 +02:00
|
|
|
|
2016-11-04 16:44:49 +01:00
|
|
|
if ($this->is_imagick()) {
|
|
|
|
return $this->image->getImageWidth();
|
|
|
|
}
|
|
|
|
return $this->width;
|
|
|
|
}
|
2012-07-21 17:17:19 +02:00
|
|
|
|
2016-11-04 16:44:49 +01:00
|
|
|
public function getHeight() {
|
|
|
|
if (!$this->is_valid()) {
|
|
|
|
return false;
|
|
|
|
}
|
2012-07-21 17:17:19 +02:00
|
|
|
|
2016-11-04 16:44:49 +01:00
|
|
|
if ($this->is_imagick()) {
|
|
|
|
return $this->image->getImageHeight();
|
|
|
|
}
|
|
|
|
return $this->height;
|
|
|
|
}
|
2012-07-21 17:17:19 +02:00
|
|
|
|
2016-11-04 16:44:49 +01:00
|
|
|
public function getImage() {
|
|
|
|
if (!$this->is_valid()) {
|
|
|
|
return false;
|
|
|
|
}
|
2012-07-21 17:17:19 +02:00
|
|
|
|
2016-11-04 16:44:49 +01:00
|
|
|
if ($this->is_imagick()) {
|
|
|
|
/* Clean it */
|
|
|
|
$this->image = $this->image->deconstructImages();
|
|
|
|
return $this->image;
|
|
|
|
}
|
|
|
|
return $this->image;
|
|
|
|
}
|
2012-07-22 13:43:46 +02:00
|
|
|
|
2016-11-04 16:44:49 +01:00
|
|
|
public function getType() {
|
|
|
|
if (!$this->is_valid()) {
|
|
|
|
return false;
|
|
|
|
}
|
2012-07-22 13:43:46 +02:00
|
|
|
|
2016-11-04 16:44:49 +01:00
|
|
|
return $this->type;
|
|
|
|
}
|
2012-07-22 13:43:46 +02:00
|
|
|
|
2016-11-04 16:44:49 +01:00
|
|
|
public function getExt() {
|
|
|
|
if (!$this->is_valid()) {
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
|
|
|
return $this->types[$this->getType()];
|
|
|
|
}
|
|
|
|
|
|
|
|
public function scaleImage($max) {
|
|
|
|
if (!$this->is_valid()) {
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
|
|
|
$width = $this->getWidth();
|
|
|
|
$height = $this->getHeight();
|
|
|
|
|
|
|
|
$dest_width = $dest_height = 0;
|
|
|
|
|
|
|
|
if ((! $width)|| (! $height)) {
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
|
|
|
if ($width > $max && $height > $max) {
|
2012-09-29 14:20:29 +02:00
|
|
|
|
|
|
|
// very tall image (greater than 16:9)
|
|
|
|
// constrain the width - let the height float.
|
|
|
|
|
2016-11-04 16:44:49 +01:00
|
|
|
if ((($height * 9) / 16) > $width) {
|
|
|
|
$dest_width = $max;
|
2016-11-04 19:26:28 +01:00
|
|
|
$dest_height = intval(($height * $max) / $width);
|
2016-11-04 16:44:49 +01:00
|
|
|
} elseif ($width > $height) {
|
|
|
|
// else constrain both dimensions
|
2012-09-29 14:20:29 +02:00
|
|
|
$dest_width = $max;
|
2016-11-04 19:26:28 +01:00
|
|
|
$dest_height = intval(($height * $max) / $width);
|
2016-11-04 16:44:49 +01:00
|
|
|
} else {
|
2016-11-04 19:26:28 +01:00
|
|
|
$dest_width = intval(($width * $max) / $height);
|
2016-11-04 16:44:49 +01:00
|
|
|
$dest_height = $max;
|
2012-09-29 14:20:29 +02:00
|
|
|
}
|
2016-11-04 16:44:49 +01:00
|
|
|
} else {
|
2016-11-04 19:26:28 +01:00
|
|
|
if ($width > $max) {
|
2016-11-04 16:44:49 +01:00
|
|
|
$dest_width = $max;
|
2016-11-04 19:26:28 +01:00
|
|
|
$dest_height = intval(($height * $max) / $width);
|
2016-11-04 16:44:49 +01:00
|
|
|
} else {
|
2016-11-04 19:26:28 +01:00
|
|
|
if ($height > $max) {
|
2012-09-29 14:20:29 +02:00
|
|
|
|
|
|
|
// very tall image (greater than 16:9)
|
2012-09-29 14:46:01 +02:00
|
|
|
// but width is OK - don't do anything
|
2012-09-29 14:20:29 +02:00
|
|
|
|
2016-11-04 16:44:49 +01:00
|
|
|
if ((($height * 9) / 16) > $width) {
|
2012-09-29 14:46:01 +02:00
|
|
|
$dest_width = $width;
|
2016-11-04 16:44:49 +01:00
|
|
|
$dest_height = $height;
|
|
|
|
} else {
|
2016-11-04 19:26:28 +01:00
|
|
|
$dest_width = intval(($width * $max) / $height);
|
2016-11-04 16:44:49 +01:00
|
|
|
$dest_height = $max;
|
2012-09-29 14:20:29 +02:00
|
|
|
}
|
2016-11-04 16:44:49 +01:00
|
|
|
} else {
|
|
|
|
$dest_width = $width;
|
|
|
|
$dest_height = $height;
|
|
|
|
}
|
|
|
|
}
|
2014-06-16 21:49:45 +02:00
|
|
|
}
|
2012-07-22 13:43:46 +02:00
|
|
|
|
|
|
|
|
2016-11-04 16:44:49 +01:00
|
|
|
if ($this->is_imagick()) {
|
|
|
|
/*
|
2012-10-09 17:35:32 +02:00
|
|
|
* If it is not animated, there will be only one iteration here,
|
|
|
|
* so don't bother checking
|
|
|
|
*/
|
|
|
|
// Don't forget to go back to the first frame
|
|
|
|
$this->image->setFirstIterator();
|
|
|
|
do {
|
2012-09-30 12:25:20 +02:00
|
|
|
|
|
|
|
// FIXME - implement horizantal bias for scaling as in followin GD functions
|
2017-01-09 13:09:01 +01:00
|
|
|
// to allow very tall images to be constrained only horizontally.
|
2012-09-30 12:25:20 +02:00
|
|
|
|
2012-10-09 17:35:32 +02:00
|
|
|
$this->image->scaleImage($dest_width, $dest_height);
|
|
|
|
} while ($this->image->nextImage());
|
2012-09-30 12:25:20 +02:00
|
|
|
|
2012-10-09 17:35:32 +02:00
|
|
|
// These may not be necessary any more
|
|
|
|
$this->width = $this->image->getImageWidth();
|
|
|
|
$this->height = $this->image->getImageHeight();
|
2012-09-30 12:25:20 +02:00
|
|
|
|
2012-10-09 17:35:32 +02:00
|
|
|
return;
|
2016-11-04 16:44:49 +01:00
|
|
|
}
|
2014-06-16 21:49:45 +02:00
|
|
|
|
|
|
|
|
2016-11-04 19:26:28 +01:00
|
|
|
$dest = imagecreatetruecolor($dest_width, $dest_height);
|
2016-11-04 16:44:49 +01:00
|
|
|
imagealphablending($dest, false);
|
|
|
|
imagesavealpha($dest, true);
|
|
|
|
if ($this->type=='image/png') {
|
|
|
|
imagefill($dest, 0, 0, imagecolorallocatealpha($dest, 0, 0, 0, 127)); // fill with alpha
|
|
|
|
}
|
|
|
|
imagecopyresampled($dest, $this->image, 0, 0, 0, 0, $dest_width, $dest_height, $width, $height);
|
|
|
|
if ($this->image) {
|
|
|
|
imagedestroy($this->image);
|
|
|
|
}
|
|
|
|
$this->image = $dest;
|
|
|
|
$this->width = imagesx($this->image);
|
|
|
|
$this->height = imagesy($this->image);
|
2014-06-16 21:49:45 +02:00
|
|
|
}
|
|
|
|
|
2016-11-04 16:44:49 +01:00
|
|
|
public function rotate($degrees) {
|
|
|
|
if (!$this->is_valid()) {
|
|
|
|
return false;
|
|
|
|
}
|
2014-06-16 21:49:45 +02:00
|
|
|
|
2016-11-04 16:44:49 +01:00
|
|
|
if ($this->is_imagick()) {
|
|
|
|
$this->image->setFirstIterator();
|
|
|
|
do {
|
|
|
|
$this->image->rotateImage(new ImagickPixel(), -$degrees); // ImageMagick rotates in the opposite direction of imagerotate()
|
|
|
|
} while ($this->image->nextImage());
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
2017-05-01 16:38:39 +02:00
|
|
|
// if script dies at this point check memory_limit setting in php.ini
|
2016-11-04 16:44:49 +01:00
|
|
|
$this->image = imagerotate($this->image,$degrees,0);
|
|
|
|
$this->width = imagesx($this->image);
|
|
|
|
$this->height = imagesy($this->image);
|
2014-06-16 21:49:45 +02:00
|
|
|
}
|
2016-11-04 16:44:49 +01:00
|
|
|
|
|
|
|
public function flip($horiz = true, $vert = false) {
|
|
|
|
if (!$this->is_valid()) {
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
|
|
|
if ($this->is_imagick()) {
|
|
|
|
$this->image->setFirstIterator();
|
|
|
|
do {
|
|
|
|
if ($horiz) {
|
|
|
|
$this->image->flipImage();
|
|
|
|
}
|
|
|
|
if ($vert) {
|
|
|
|
$this->image->flopImage();
|
|
|
|
}
|
|
|
|
} while ($this->image->nextImage());
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
|
|
|
$w = imagesx($this->image);
|
|
|
|
$h = imagesy($this->image);
|
|
|
|
$flipped = imagecreate($w, $h);
|
|
|
|
if ($horiz) {
|
|
|
|
for ($x = 0; $x < $w; $x++) {
|
|
|
|
imagecopy($flipped, $this->image, $x, 0, $w - $x - 1, 0, 1, $h);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
if ($vert) {
|
|
|
|
for ($y = 0; $y < $h; $y++) {
|
|
|
|
imagecopy($flipped, $this->image, 0, $y, 0, $h - $y - 1, $w, 1);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
$this->image = $flipped;
|
2015-09-30 00:19:54 +02:00
|
|
|
}
|
2012-07-21 17:17:19 +02:00
|
|
|
|
2016-11-04 16:44:49 +01:00
|
|
|
public function orient($filename) {
|
|
|
|
if ($this->is_imagick()) {
|
|
|
|
// based off comment on http://php.net/manual/en/imagick.getimageorientation.php
|
|
|
|
$orientation = $this->image->getImageOrientation();
|
|
|
|
switch ($orientation) {
|
|
|
|
case imagick::ORIENTATION_BOTTOMRIGHT:
|
|
|
|
$this->image->rotateimage("#000", 180);
|
|
|
|
break;
|
|
|
|
case imagick::ORIENTATION_RIGHTTOP:
|
|
|
|
$this->image->rotateimage("#000", 90);
|
|
|
|
break;
|
|
|
|
case imagick::ORIENTATION_LEFTBOTTOM:
|
|
|
|
$this->image->rotateimage("#000", -90);
|
|
|
|
break;
|
|
|
|
}
|
2012-07-21 17:17:19 +02:00
|
|
|
|
2016-11-04 16:44:49 +01:00
|
|
|
$this->image->setImageOrientation(imagick::ORIENTATION_TOPLEFT);
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
// based off comment on http://php.net/manual/en/function.imagerotate.php
|
|
|
|
|
|
|
|
if (!$this->is_valid()) {
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
2016-11-04 19:26:28 +01:00
|
|
|
if ((!function_exists('exif_read_data')) || ($this->getType() !== 'image/jpeg')) {
|
2016-11-04 16:44:49 +01:00
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
|
|
|
$exif = @exif_read_data($filename,null,true);
|
2016-11-04 19:26:28 +01:00
|
|
|
if (!$exif) {
|
2016-11-04 16:44:49 +01:00
|
|
|
return;
|
|
|
|
}
|
2012-09-05 13:02:30 +02:00
|
|
|
|
2016-11-04 16:44:49 +01:00
|
|
|
$ort = $exif['IFD0']['Orientation'];
|
2012-09-05 13:02:30 +02:00
|
|
|
|
2016-11-04 16:44:49 +01:00
|
|
|
switch($ort)
|
|
|
|
{
|
|
|
|
case 1: // nothing
|
|
|
|
break;
|
2012-07-21 17:17:19 +02:00
|
|
|
|
2016-11-04 16:44:49 +01:00
|
|
|
case 2: // horizontal flip
|
|
|
|
$this->flip();
|
|
|
|
break;
|
2012-07-21 17:17:19 +02:00
|
|
|
|
2016-11-04 16:44:49 +01:00
|
|
|
case 3: // 180 rotate left
|
|
|
|
$this->rotate(180);
|
|
|
|
break;
|
2012-07-21 17:17:19 +02:00
|
|
|
|
2016-11-04 16:44:49 +01:00
|
|
|
case 4: // vertical flip
|
|
|
|
$this->flip(false, true);
|
|
|
|
break;
|
2012-07-21 17:17:19 +02:00
|
|
|
|
2016-11-04 16:44:49 +01:00
|
|
|
case 5: // vertical flip + 90 rotate right
|
|
|
|
$this->flip(false, true);
|
|
|
|
$this->rotate(-90);
|
|
|
|
break;
|
2012-07-21 17:17:19 +02:00
|
|
|
|
2016-11-04 16:44:49 +01:00
|
|
|
case 6: // 90 rotate right
|
|
|
|
$this->rotate(-90);
|
|
|
|
break;
|
2012-07-21 17:17:19 +02:00
|
|
|
|
2016-11-04 16:44:49 +01:00
|
|
|
case 7: // horizontal flip + 90 rotate right
|
|
|
|
$this->flip();
|
|
|
|
$this->rotate(-90);
|
|
|
|
break;
|
|
|
|
|
|
|
|
case 8: // 90 rotate left
|
|
|
|
$this->rotate(90);
|
|
|
|
break;
|
|
|
|
}
|
2012-07-21 17:17:19 +02:00
|
|
|
|
2016-11-04 16:44:49 +01:00
|
|
|
// logger('exif: ' . print_r($exif,true));
|
|
|
|
return $exif;
|
2012-07-21 17:17:19 +02:00
|
|
|
|
2014-06-16 21:49:45 +02:00
|
|
|
}
|
2015-09-30 00:19:54 +02:00
|
|
|
|
|
|
|
|
2012-07-21 17:17:19 +02:00
|
|
|
|
2016-11-04 16:44:49 +01:00
|
|
|
public function scaleImageUp($min) {
|
|
|
|
if (!$this->is_valid()) {
|
|
|
|
return false;
|
|
|
|
}
|
2012-07-21 17:17:19 +02:00
|
|
|
|
|
|
|
|
2016-11-04 16:44:49 +01:00
|
|
|
$width = $this->getWidth();
|
|
|
|
$height = $this->getHeight();
|
2014-06-16 21:49:45 +02:00
|
|
|
|
2016-11-04 16:44:49 +01:00
|
|
|
$dest_width = $dest_height = 0;
|
2014-06-16 21:49:45 +02:00
|
|
|
|
2016-11-04 19:26:28 +01:00
|
|
|
if ((!$width)|| (!$height)) {
|
2016-11-04 16:44:49 +01:00
|
|
|
return false;
|
|
|
|
}
|
2014-06-16 21:49:45 +02:00
|
|
|
|
2016-11-04 16:44:49 +01:00
|
|
|
if ($width < $min && $height < $min) {
|
|
|
|
if ($width > $height) {
|
|
|
|
$dest_width = $min;
|
2016-11-04 19:26:28 +01:00
|
|
|
$dest_height = intval(($height * $min) / $width);
|
2016-11-04 16:44:49 +01:00
|
|
|
} else {
|
2016-11-04 19:26:28 +01:00
|
|
|
$dest_width = intval(($width * $min) / $height);
|
2016-11-04 16:44:49 +01:00
|
|
|
$dest_height = $min;
|
|
|
|
}
|
|
|
|
} else {
|
2016-11-04 19:26:28 +01:00
|
|
|
if ($width < $min) {
|
2016-11-04 16:44:49 +01:00
|
|
|
$dest_width = $min;
|
2016-11-04 19:26:28 +01:00
|
|
|
$dest_height = intval(($height * $min) / $width);
|
2016-11-04 16:44:49 +01:00
|
|
|
} else {
|
2016-11-04 19:26:28 +01:00
|
|
|
if ($height < $min) {
|
|
|
|
$dest_width = intval(($width * $min) / $height);
|
2016-11-04 16:44:49 +01:00
|
|
|
$dest_height = $min;
|
|
|
|
} else {
|
|
|
|
$dest_width = $width;
|
|
|
|
$dest_height = $height;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
2014-06-16 21:49:45 +02:00
|
|
|
|
2016-11-04 16:44:49 +01:00
|
|
|
if ($this->is_imagick()) {
|
2016-11-04 19:26:28 +01:00
|
|
|
return $this->scaleImage($dest_width, $dest_height);
|
2016-11-04 16:44:49 +01:00
|
|
|
}
|
2014-06-16 21:49:45 +02:00
|
|
|
|
2016-11-04 19:26:28 +01:00
|
|
|
$dest = imagecreatetruecolor($dest_width, $dest_height);
|
2016-11-04 16:44:49 +01:00
|
|
|
imagealphablending($dest, false);
|
|
|
|
imagesavealpha($dest, true);
|
|
|
|
if ($this->type=='image/png') {
|
|
|
|
imagefill($dest, 0, 0, imagecolorallocatealpha($dest, 0, 0, 0, 127)); // fill with alpha
|
|
|
|
}
|
|
|
|
imagecopyresampled($dest, $this->image, 0, 0, 0, 0, $dest_width, $dest_height, $width, $height);
|
|
|
|
if ($this->image) {
|
|
|
|
imagedestroy($this->image);
|
|
|
|
}
|
|
|
|
$this->image = $dest;
|
|
|
|
$this->width = imagesx($this->image);
|
|
|
|
$this->height = imagesy($this->image);
|
2014-06-16 21:49:45 +02:00
|
|
|
}
|
|
|
|
|
2012-07-21 17:17:19 +02:00
|
|
|
|
|
|
|
|
2016-11-04 16:44:49 +01:00
|
|
|
public function scaleImageSquare($dim) {
|
|
|
|
if (!$this->is_valid()) {
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
|
|
|
if ($this->is_imagick()) {
|
|
|
|
$this->image->setFirstIterator();
|
|
|
|
do {
|
|
|
|
$this->image->scaleImage($dim, $dim);
|
|
|
|
} while ($this->image->nextImage());
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
2016-11-04 19:26:28 +01:00
|
|
|
$dest = imagecreatetruecolor($dim, $dim);
|
2016-11-04 16:44:49 +01:00
|
|
|
imagealphablending($dest, false);
|
|
|
|
imagesavealpha($dest, true);
|
|
|
|
if ($this->type=='image/png') {
|
|
|
|
imagefill($dest, 0, 0, imagecolorallocatealpha($dest, 0, 0, 0, 127)); // fill with alpha
|
|
|
|
}
|
|
|
|
imagecopyresampled($dest, $this->image, 0, 0, 0, 0, $dim, $dim, $this->width, $this->height);
|
|
|
|
if ($this->image) {
|
|
|
|
imagedestroy($this->image);
|
|
|
|
}
|
|
|
|
$this->image = $dest;
|
|
|
|
$this->width = imagesx($this->image);
|
|
|
|
$this->height = imagesy($this->image);
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2016-11-04 19:26:28 +01:00
|
|
|
public function cropImage($max, $x, $y, $w, $h) {
|
2016-11-04 16:44:49 +01:00
|
|
|
if (!$this->is_valid()) {
|
|
|
|
return false;
|
|
|
|
}
|
2012-07-21 17:17:19 +02:00
|
|
|
|
2016-11-04 16:44:49 +01:00
|
|
|
if ($this->is_imagick()) {
|
2012-10-09 17:35:32 +02:00
|
|
|
$this->image->setFirstIterator();
|
|
|
|
do {
|
|
|
|
$this->image->cropImage($w, $h, $x, $y);
|
2016-11-04 16:44:49 +01:00
|
|
|
/*
|
2012-10-09 17:35:32 +02:00
|
|
|
* We need to remove the canva,
|
|
|
|
* or the image is not resized to the crop:
|
|
|
|
* http://php.net/manual/en/imagick.cropimage.php#97232
|
|
|
|
*/
|
|
|
|
$this->image->setImagePage(0, 0, 0, 0);
|
|
|
|
} while ($this->image->nextImage());
|
|
|
|
return $this->scaleImage($max);
|
|
|
|
}
|
2012-07-22 13:43:46 +02:00
|
|
|
|
2016-11-04 19:26:28 +01:00
|
|
|
$dest = imagecreatetruecolor($max, $max);
|
2016-11-04 16:44:49 +01:00
|
|
|
imagealphablending($dest, false);
|
|
|
|
imagesavealpha($dest, true);
|
|
|
|
if ($this->type=='image/png') {
|
|
|
|
imagefill($dest, 0, 0, imagecolorallocatealpha($dest, 0, 0, 0, 127)); // fill with alpha
|
|
|
|
}
|
|
|
|
imagecopyresampled($dest, $this->image, 0, 0, $x, $y, $max, $max, $w, $h);
|
|
|
|
if ($this->image) {
|
|
|
|
imagedestroy($this->image);
|
|
|
|
}
|
|
|
|
$this->image = $dest;
|
|
|
|
$this->width = imagesx($this->image);
|
|
|
|
$this->height = imagesy($this->image);
|
|
|
|
}
|
2012-07-21 17:17:19 +02:00
|
|
|
|
2016-11-04 16:44:49 +01:00
|
|
|
public function saveImage($path) {
|
|
|
|
if (!$this->is_valid()) {
|
|
|
|
return false;
|
|
|
|
}
|
2012-07-21 17:17:19 +02:00
|
|
|
|
2016-11-04 16:44:49 +01:00
|
|
|
$string = $this->imageString();
|
2015-03-07 21:07:26 +01:00
|
|
|
|
2016-11-04 16:44:49 +01:00
|
|
|
$a = get_app();
|
2015-03-07 21:07:26 +01:00
|
|
|
|
2016-11-04 16:44:49 +01:00
|
|
|
$stamp1 = microtime(true);
|
|
|
|
file_put_contents($path, $string);
|
|
|
|
$a->save_timestamp($stamp1, "file");
|
|
|
|
}
|
2012-07-21 17:17:19 +02:00
|
|
|
|
2016-11-04 16:44:49 +01:00
|
|
|
public function imageString() {
|
|
|
|
if (!$this->is_valid()) {
|
|
|
|
return false;
|
|
|
|
}
|
2014-06-16 21:49:45 +02:00
|
|
|
|
2016-11-04 16:44:49 +01:00
|
|
|
if ($this->is_imagick()) {
|
|
|
|
/* Clean it */
|
|
|
|
$this->image = $this->image->deconstructImages();
|
|
|
|
$string = $this->image->getImagesBlob();
|
|
|
|
return $string;
|
|
|
|
}
|
2012-07-21 17:17:19 +02:00
|
|
|
|
2016-11-04 19:26:28 +01:00
|
|
|
$quality = false;
|
2014-06-16 21:49:45 +02:00
|
|
|
|
2016-11-04 16:44:49 +01:00
|
|
|
ob_start();
|
2012-07-21 17:17:19 +02:00
|
|
|
|
2016-11-04 16:44:49 +01:00
|
|
|
// Enable interlacing
|
|
|
|
imageinterlace($this->image, true);
|
2012-07-21 17:17:19 +02:00
|
|
|
|
2016-11-04 16:44:49 +01:00
|
|
|
switch($this->getType()){
|
|
|
|
case "image/png":
|
2016-11-04 19:26:28 +01:00
|
|
|
$quality = get_config('system', 'png_quality');
|
|
|
|
if ((!$quality) || ($quality > 9)) {
|
2016-11-04 16:44:49 +01:00
|
|
|
$quality = PNG_QUALITY;
|
|
|
|
}
|
2016-11-04 19:26:28 +01:00
|
|
|
imagepng($this->image, null, $quality);
|
2016-11-04 16:44:49 +01:00
|
|
|
break;
|
|
|
|
case "image/jpeg":
|
2016-11-04 19:26:28 +01:00
|
|
|
$quality = get_config('system', 'jpeg_quality');
|
|
|
|
if ((!$quality) || ($quality > 100)) {
|
2016-11-04 16:44:49 +01:00
|
|
|
$quality = JPEG_QUALITY;
|
|
|
|
}
|
2016-11-04 19:26:28 +01:00
|
|
|
imagejpeg($this->image, null, $quality);
|
2016-11-04 16:44:49 +01:00
|
|
|
}
|
|
|
|
$string = ob_get_contents();
|
|
|
|
ob_end_clean();
|
2012-07-21 17:17:19 +02:00
|
|
|
|
2016-11-04 16:44:49 +01:00
|
|
|
return $string;
|
|
|
|
}
|
2012-07-21 17:17:19 +02:00
|
|
|
|
2014-06-16 21:49:45 +02:00
|
|
|
|
|
|
|
|
2017-05-01 16:38:39 +02:00
|
|
|
public function store($uid, $cid, $rid, $filename, $album, $scale, $profile = 0, $allow_cid = '', $allow_gid = '', $deny_cid = '', $deny_gid = '', $desc = '') {
|
2016-11-04 16:44:49 +01:00
|
|
|
|
|
|
|
$r = q("SELECT `guid` FROM `photo` WHERE `resource-id` = '%s' AND `guid` != '' LIMIT 1",
|
|
|
|
dbesc($rid)
|
|
|
|
);
|
|
|
|
if (dbm::is_result($r)) {
|
|
|
|
$guid = $r[0]['guid'];
|
|
|
|
} else {
|
|
|
|
$guid = get_guid();
|
|
|
|
}
|
|
|
|
|
|
|
|
$x = q("SELECT `id` FROM `photo` WHERE `resource-id` = '%s' AND `uid` = %d AND `contact-id` = %d AND `scale` = %d LIMIT 1",
|
|
|
|
dbesc($rid),
|
|
|
|
intval($uid),
|
|
|
|
intval($cid),
|
|
|
|
intval($scale)
|
|
|
|
);
|
|
|
|
if (dbm::is_result($x)) {
|
|
|
|
$r = q("UPDATE `photo`
|
|
|
|
SET `uid` = %d,
|
|
|
|
`contact-id` = %d,
|
|
|
|
`guid` = '%s',
|
|
|
|
`resource-id` = '%s',
|
|
|
|
`created` = '%s',
|
|
|
|
`edited` = '%s',
|
|
|
|
`filename` = '%s',
|
|
|
|
`type` = '%s',
|
|
|
|
`album` = '%s',
|
|
|
|
`height` = %d,
|
|
|
|
`width` = %d,
|
|
|
|
`datasize` = %d,
|
|
|
|
`data` = '%s',
|
|
|
|
`scale` = %d,
|
|
|
|
`profile` = %d,
|
|
|
|
`allow_cid` = '%s',
|
|
|
|
`allow_gid` = '%s',
|
|
|
|
`deny_cid` = '%s',
|
2017-05-01 16:38:39 +02:00
|
|
|
`deny_gid` = '%s',
|
|
|
|
`desc` = '%s'
|
2016-11-04 16:44:49 +01:00
|
|
|
WHERE `id` = %d",
|
|
|
|
|
|
|
|
intval($uid),
|
|
|
|
intval($cid),
|
|
|
|
dbesc($guid),
|
|
|
|
dbesc($rid),
|
|
|
|
dbesc(datetime_convert()),
|
|
|
|
dbesc(datetime_convert()),
|
|
|
|
dbesc(basename($filename)),
|
|
|
|
dbesc($this->getType()),
|
|
|
|
dbesc($album),
|
|
|
|
intval($this->getHeight()),
|
|
|
|
intval($this->getWidth()),
|
2012-11-26 04:34:54 +01:00
|
|
|
dbesc(strlen($this->imageString())),
|
2016-11-04 16:44:49 +01:00
|
|
|
dbesc($this->imageString()),
|
|
|
|
intval($scale),
|
|
|
|
intval($profile),
|
|
|
|
dbesc($allow_cid),
|
|
|
|
dbesc($allow_gid),
|
|
|
|
dbesc($deny_cid),
|
|
|
|
dbesc($deny_gid),
|
2017-05-01 16:38:39 +02:00
|
|
|
dbesc($desc),
|
2016-11-04 16:44:49 +01:00
|
|
|
intval($x[0]['id'])
|
|
|
|
);
|
|
|
|
} else {
|
|
|
|
$r = q("INSERT INTO `photo`
|
2017-05-01 16:38:39 +02:00
|
|
|
(`uid`, `contact-id`, `guid`, `resource-id`, `created`, `edited`, `filename`, type, `album`, `height`, `width`, `datasize`, `data`, `scale`, `profile`, `allow_cid`, `allow_gid`, `deny_cid`, `deny_gid`, `desc`)
|
|
|
|
VALUES (%d, %d, '%s', '%s', '%s', '%s', '%s', '%s', '%s', %d, %d, %d, '%s', %d, %d, '%s', '%s', '%s', '%s', '%s')",
|
2016-11-04 16:44:49 +01:00
|
|
|
intval($uid),
|
|
|
|
intval($cid),
|
|
|
|
dbesc($guid),
|
|
|
|
dbesc($rid),
|
|
|
|
dbesc(datetime_convert()),
|
|
|
|
dbesc(datetime_convert()),
|
|
|
|
dbesc(basename($filename)),
|
|
|
|
dbesc($this->getType()),
|
|
|
|
dbesc($album),
|
|
|
|
intval($this->getHeight()),
|
|
|
|
intval($this->getWidth()),
|
2012-11-26 04:34:54 +01:00
|
|
|
dbesc(strlen($this->imageString())),
|
2016-11-04 16:44:49 +01:00
|
|
|
dbesc($this->imageString()),
|
|
|
|
intval($scale),
|
|
|
|
intval($profile),
|
|
|
|
dbesc($allow_cid),
|
|
|
|
dbesc($allow_gid),
|
|
|
|
dbesc($deny_cid),
|
2017-05-01 16:38:39 +02:00
|
|
|
dbesc($deny_gid),
|
|
|
|
dbesc($desc)
|
2016-11-04 16:44:49 +01:00
|
|
|
);
|
|
|
|
}
|
2016-10-24 10:10:27 +02:00
|
|
|
|
2016-11-04 16:44:49 +01:00
|
|
|
return $r;
|
|
|
|
}
|
|
|
|
}
|
2010-07-02 01:48:07 +02:00
|
|
|
|
2010-08-05 05:03:38 +02:00
|
|
|
|
2012-06-07 17:42:13 +02:00
|
|
|
/**
|
|
|
|
* Guess image mimetype from filename or from Content-Type header
|
2012-07-21 17:17:19 +02:00
|
|
|
*
|
2012-06-07 17:42:13 +02:00
|
|
|
* @arg $filename string Image filename
|
|
|
|
* @arg $fromcurl boolean Check Content-Type header from curl request
|
|
|
|
*/
|
|
|
|
function guess_image_type($filename, $fromcurl=false) {
|
2016-11-04 16:44:49 +01:00
|
|
|
logger('Photo: guess_image_type: '.$filename . ($fromcurl?' from curl headers':''), LOGGER_DEBUG);
|
|
|
|
$type = null;
|
|
|
|
if ($fromcurl) {
|
|
|
|
$a = get_app();
|
|
|
|
$headers=array();
|
|
|
|
$h = explode("\n",$a->get_curl_headers());
|
|
|
|
foreach ($h as $l) {
|
|
|
|
list($k,$v) = array_map("trim", explode(":", trim($l), 2));
|
|
|
|
$headers[$k] = $v;
|
|
|
|
}
|
|
|
|
if (array_key_exists('Content-Type', $headers))
|
|
|
|
$type = $headers['Content-Type'];
|
2014-06-16 21:49:45 +02:00
|
|
|
}
|
2016-11-04 16:44:49 +01:00
|
|
|
if (is_null($type)){
|
|
|
|
// Guessing from extension? Isn't that... dangerous?
|
|
|
|
if (class_exists('Imagick') && file_exists($filename) && is_readable($filename)) {
|
|
|
|
/**
|
|
|
|
* Well, this not much better,
|
|
|
|
* but at least it comes from the data inside the image,
|
|
|
|
* we won't be tricked by a manipulated extension
|
|
|
|
*/
|
|
|
|
$image = new Imagick($filename);
|
|
|
|
$type = $image->getImageMimeType();
|
|
|
|
$image->setInterlaceScheme(Imagick::INTERLACE_PLANE);
|
|
|
|
} else {
|
|
|
|
$ext = pathinfo($filename, PATHINFO_EXTENSION);
|
|
|
|
$types = Photo::supportedTypes();
|
|
|
|
$type = "image/jpeg";
|
2016-11-04 19:26:28 +01:00
|
|
|
foreach ($types as $m => $e){
|
|
|
|
if ($ext == $e) {
|
2016-11-04 16:44:49 +01:00
|
|
|
$type = $m;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
2014-06-16 21:49:45 +02:00
|
|
|
}
|
2016-11-04 16:44:49 +01:00
|
|
|
logger('Photo: guess_image_type: type='.$type, LOGGER_DEBUG);
|
|
|
|
return $type;
|
2012-07-21 17:17:19 +02:00
|
|