2010-07-02 01:48:07 +02:00
|
|
|
<?php
|
|
|
|
|
|
|
|
if(! class_exists("Photo")) {
|
|
|
|
class Photo {
|
|
|
|
|
|
|
|
private $image;
|
|
|
|
private $width;
|
|
|
|
private $height;
|
2010-10-05 01:04:52 +02:00
|
|
|
private $valid;
|
2010-07-02 01:48:07 +02:00
|
|
|
|
|
|
|
public function __construct($data) {
|
2010-10-05 01:04:52 +02:00
|
|
|
$this->valid = false;
|
2010-07-02 01:48:07 +02:00
|
|
|
$this->image = @imagecreatefromstring($data);
|
|
|
|
if($this->image !== FALSE) {
|
|
|
|
$this->width = imagesx($this->image);
|
|
|
|
$this->height = imagesy($this->image);
|
2010-10-05 01:04:52 +02:00
|
|
|
$this->valid = true;
|
2010-07-02 01:48:07 +02:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
public function __destruct() {
|
|
|
|
if($this->image)
|
|
|
|
imagedestroy($this->image);
|
|
|
|
}
|
|
|
|
|
2010-10-05 01:04:52 +02:00
|
|
|
public function is_valid() {
|
|
|
|
return $this->valid;
|
|
|
|
}
|
|
|
|
|
2010-07-02 01:48:07 +02:00
|
|
|
public function getWidth() {
|
|
|
|
return $this->width;
|
|
|
|
}
|
|
|
|
|
|
|
|
public function getHeight() {
|
|
|
|
return $this->height;
|
|
|
|
}
|
|
|
|
|
|
|
|
public function getImage() {
|
|
|
|
return $this->image;
|
|
|
|
}
|
|
|
|
|
|
|
|
public function scaleImage($max) {
|
|
|
|
|
|
|
|
$width = $this->width;
|
|
|
|
$height = $this->height;
|
|
|
|
|
|
|
|
$dest_width = $dest_height = 0;
|
|
|
|
|
|
|
|
if((! $width)|| (! $height))
|
|
|
|
return FALSE;
|
|
|
|
|
|
|
|
if($width > $max && $height > $max) {
|
|
|
|
if($width > $height) {
|
|
|
|
$dest_width = $max;
|
|
|
|
$dest_height = intval(( $height * $max ) / $width);
|
|
|
|
}
|
|
|
|
else {
|
|
|
|
$dest_width = intval(( $width * $max ) / $height);
|
|
|
|
$dest_height = $max;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
else {
|
|
|
|
if( $width > $max ) {
|
|
|
|
$dest_width = $max;
|
|
|
|
$dest_height = intval(( $height * $max ) / $width);
|
|
|
|
}
|
|
|
|
else {
|
|
|
|
if( $height > $max ) {
|
|
|
|
$dest_width = intval(( $width * $max ) / $height);
|
|
|
|
$dest_height = $max;
|
|
|
|
}
|
|
|
|
else {
|
|
|
|
$dest_width = $width;
|
|
|
|
$dest_height = $height;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
$dest = imagecreatetruecolor( $dest_width, $dest_height );
|
|
|
|
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);
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
public function scaleImageUp($min) {
|
|
|
|
|
|
|
|
$width = $this->width;
|
|
|
|
$height = $this->height;
|
|
|
|
|
|
|
|
$dest_width = $dest_height = 0;
|
|
|
|
|
|
|
|
if((! $width)|| (! $height))
|
|
|
|
return FALSE;
|
|
|
|
|
|
|
|
if($width < $min && $height < $min) {
|
|
|
|
if($width > $height) {
|
|
|
|
$dest_width = $min;
|
|
|
|
$dest_height = intval(( $height * $min ) / $width);
|
|
|
|
}
|
|
|
|
else {
|
|
|
|
$dest_width = intval(( $width * $min ) / $height);
|
|
|
|
$dest_height = $min;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
else {
|
|
|
|
if( $width < $min ) {
|
|
|
|
$dest_width = $min;
|
|
|
|
$dest_height = intval(( $height * $min ) / $width);
|
|
|
|
}
|
|
|
|
else {
|
|
|
|
if( $height < $min ) {
|
|
|
|
$dest_width = intval(( $width * $min ) / $height);
|
|
|
|
$dest_height = $min;
|
|
|
|
}
|
|
|
|
else {
|
|
|
|
$dest_width = $width;
|
|
|
|
$dest_height = $height;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
$dest = imagecreatetruecolor( $dest_width, $dest_height );
|
|
|
|
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);
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
public function scaleImageSquare($dim) {
|
|
|
|
|
|
|
|
$dest = imagecreatetruecolor( $dim, $dim );
|
|
|
|
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);
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
public function cropImage($max,$x,$y,$w,$h) {
|
|
|
|
$dest = imagecreatetruecolor( $max, $max );
|
|
|
|
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);
|
|
|
|
}
|
|
|
|
|
|
|
|
public function saveImage($path) {
|
2011-05-04 11:20:44 +02:00
|
|
|
$quality = get_config('system','jpeg_quality');
|
|
|
|
if((! $quality) || ($quality > 100))
|
|
|
|
$quality = JPEG_QUALITY;
|
|
|
|
imagejpeg($this->image,$path,$quality);
|
2010-07-02 01:48:07 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
public function imageString() {
|
|
|
|
ob_start();
|
2011-05-04 11:20:44 +02:00
|
|
|
|
|
|
|
$quality = get_config('system','jpeg_quality');
|
|
|
|
if((! $quality) || ($quality > 100))
|
|
|
|
$quality = JPEG_QUALITY;
|
|
|
|
|
|
|
|
imagejpeg($this->image,NULL,$quality);
|
2010-07-02 01:48:07 +02:00
|
|
|
$s = ob_get_contents();
|
|
|
|
ob_end_clean();
|
|
|
|
return $s;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2010-08-05 05:03:38 +02:00
|
|
|
|
2010-11-10 03:24:35 +01:00
|
|
|
public function store($uid, $cid, $rid, $filename, $album, $scale, $profile = 0, $allow_cid = '', $allow_gid = '', $deny_cid = '', $deny_gid = '') {
|
2010-08-05 05:03:38 +02:00
|
|
|
|
|
|
|
$r = q("INSERT INTO `photo`
|
2010-08-07 15:20:27 +02:00
|
|
|
( `uid`, `contact-id`, `resource-id`, `created`, `edited`, `filename`, `album`, `height`, `width`, `data`, `scale`, `profile`, `allow_cid`, `allow_gid`, `deny_cid`, `deny_gid` )
|
|
|
|
VALUES ( %d, %d, '%s', '%s', '%s', '%s', '%s', %d, %d, '%s', %d, %d, '%s', '%s', '%s', '%s' )",
|
2010-08-05 05:03:38 +02:00
|
|
|
intval($uid),
|
|
|
|
intval($cid),
|
|
|
|
dbesc($rid),
|
|
|
|
dbesc(datetime_convert()),
|
|
|
|
dbesc(datetime_convert()),
|
|
|
|
dbesc(basename($filename)),
|
|
|
|
dbesc($album),
|
2010-11-10 03:24:35 +01:00
|
|
|
intval($this->height),
|
|
|
|
intval($this->width),
|
|
|
|
dbesc($this->imageString()),
|
2010-08-05 05:03:38 +02:00
|
|
|
intval($scale),
|
2010-08-07 15:20:27 +02:00
|
|
|
intval($profile),
|
|
|
|
dbesc($allow_cid),
|
|
|
|
dbesc($allow_gid),
|
|
|
|
dbesc($deny_cid),
|
|
|
|
dbesc($deny_gid)
|
2010-08-05 05:03:38 +02:00
|
|
|
);
|
|
|
|
return $r;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
2010-07-02 01:48:07 +02:00
|
|
|
}}
|
|
|
|
|
2010-08-05 05:03:38 +02:00
|
|
|
|
2010-10-26 23:50:38 +02:00
|
|
|
function import_profile_photo($photo,$uid,$cid) {
|
|
|
|
|
|
|
|
$a = get_app();
|
|
|
|
|
|
|
|
$photo_failure = false;
|
|
|
|
|
|
|
|
$filename = basename($photo);
|
|
|
|
$img_str = fetch_url($photo,true);
|
|
|
|
$img = new Photo($img_str);
|
|
|
|
if($img->is_valid()) {
|
|
|
|
|
|
|
|
$img->scaleImageSquare(175);
|
|
|
|
|
|
|
|
$hash = photo_new_resource();
|
|
|
|
|
2011-06-29 07:33:02 +02:00
|
|
|
$r = $img->store($uid, $cid, $hash, $filename, 'Contact Photos', 4 );
|
2010-10-26 23:50:38 +02:00
|
|
|
|
|
|
|
if($r === false)
|
|
|
|
$photo_failure = true;
|
|
|
|
|
|
|
|
$img->scaleImage(80);
|
|
|
|
|
2011-06-29 07:33:02 +02:00
|
|
|
$r = $img->store($uid, $cid, $hash, $filename, 'Contact Photos', 5 );
|
2010-10-26 23:50:38 +02:00
|
|
|
|
|
|
|
if($r === false)
|
|
|
|
$photo_failure = true;
|
|
|
|
|
2010-11-05 07:50:32 +01:00
|
|
|
$img->scaleImage(48);
|
|
|
|
|
2011-06-29 07:33:02 +02:00
|
|
|
$r = $img->store($uid, $cid, $hash, $filename, 'Contact Photos', 6 );
|
2010-11-05 07:50:32 +01:00
|
|
|
|
|
|
|
if($r === false)
|
|
|
|
$photo_failure = true;
|
|
|
|
|
|
|
|
|
|
|
|
|
2010-10-26 23:50:38 +02:00
|
|
|
$photo = $a->get_baseurl() . '/photo/' . $hash . '-4.jpg';
|
|
|
|
$thumb = $a->get_baseurl() . '/photo/' . $hash . '-5.jpg';
|
2010-11-05 07:50:32 +01:00
|
|
|
$micro = $a->get_baseurl() . '/photo/' . $hash . '-6.jpg';
|
2010-10-26 23:50:38 +02:00
|
|
|
}
|
|
|
|
else
|
|
|
|
$photo_failure = true;
|
|
|
|
|
|
|
|
if($photo_failure) {
|
|
|
|
$photo = $a->get_baseurl() . '/images/default-profile.jpg';
|
|
|
|
$thumb = $a->get_baseurl() . '/images/default-profile-sm.jpg';
|
2010-11-05 07:50:32 +01:00
|
|
|
$micro = $a->get_baseurl() . '/images/default-profile-mm.jpg';
|
2010-10-26 23:50:38 +02:00
|
|
|
}
|
|
|
|
|
2010-11-05 07:50:32 +01:00
|
|
|
return(array($photo,$thumb,$micro));
|
2010-10-26 23:50:38 +02:00
|
|
|
|
|
|
|
}
|