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: 329: 330: 331: 332: 333: 334: 335: 336: 337: 338: 339: 340: 341: 342: 343: 344: 345: 346: 347: 348: 349: 350: 351: 352: 353: 354: 355: 356: 357: 358: 359: 360: 361: 362: 363: 364: 365: 366: 367: 368: 369: 370: 371: 372: 373: 374: 375: 376: 377: 378: 379: 380: 381: 382: 383: 384: 385: 386: 387: 388: 389: 390: 391: 392:
<?php
namespace MvcCore\Ext\Tools\Images;
class Imagick extends \MvcCore\Ext\Tools\Image {
protected $resource;
protected $imgFullPath;
public function Load ($imgFullPath) {
$result = FALSE;
if ($this->resource) {
unset($this->resource);
$this->resource = NULL;
}
$errorMsgBase = "Image `{$imgFullPath}` was not possible to load by `\Imagick::readImage();`. ";
try {
$this->resource = new \Imagick($imgFullPath);
if (!$this->resource->readImage($imgFullPath)) {
return $result;
}
$this->imgFullPath = $imgFullPath;
} catch (\Exception $e) {
throw new \RuntimeException(
$errorMsgBase . $e->getMessage() ,$e->getCode()
);
} catch (\Throwable $e) {
throw new \RuntimeException(
$errorMsgBase . $e->getMessage() ,$e->getCode()
);
}
$this->setWidth($this->resource->getImageWidth());
$this->setHeight($this->resource->getImageHeight());
return $this;
}
public function Save ($fullPath, $format = \MvcCore\Ext\Tools\Images\IFormat::PNG, $quality = NULL) {
if (!$format) $format = \MvcCore\Ext\Tools\Images\IFormat::PNG;
$this->resource->stripimage();
$this->resource->setImageFormat($format);
if ($quality !== NULL && is_int($quality)) {
$this->resource->setCompressionQuality($quality);
$this->resource->setImageCompressionQuality($quality);
}
if (file_exists($fullPath)) unlink($fullPath);
$this->resource->writeImage($fullPath);
return $this;
}
public function Resize ($width, $height) {
if($this->IsVectorGraphic()) {
$res = $this->resource->getImageResolution();
$xRatio = $res['x'] / $this->resource->getImageWidth();
$yRatio = $res['y'] / $this->resource->getImageHeight();
$this->resource->removeImage();
$this->resource->setResolution($width * $xRatio, $height * $yRatio);
$this->resource->readImage($this->imgFullPath);
} else {
$this->resource->resizeimage(
$width, $height, \Imagick::FILTER_UNDEFINED, 1, false
);
}
$this->setWidth($width);
$this->setHeight($height);
$this->reinitializeImage();
return $this;
}
public function Crop ($x, $y, $width, $height) {
$this->resource->cropImage($width, $height, $x, $y);
$this->resource->setImagePage($width, $height, 0, 0);
$this->setWidth($width);
$this->setHeight($height);
$this->reinitializeImage();
return $this;
}
public function Frame ($width, $height) {
$this->Contain($width, $height);
$x = ($width - $this->GetWidth()) / 2;
$y = ($height - $this->GetHeight()) / 2;
$newImage = $this->CreateEmptyImageResource($width, $height);
$newImage->compositeImage(
$this->resource, \MvcCore\Ext\Tools\Images\Imagicks\IComposite::NORMAL,
$x, $y
);
$this->resource = $newImage;
$this->setWidth($width);
$this->setHeight($height);
$this->reinitializeImage();
return $this;
}
public function SetBackgroundColor ($hexColor = 'transparent') {
$newImage = $this->CreateEmptyImageResource(
$this->GetWidth(), $this->GetHeight(), $hexColor
);
$newImage->compositeImage(
$this->resource, \MvcCore\Ext\Tools\Images\Imagicks\IComposite::NORMAL,
0, 0
);
$this->resource = $newImage;
$this->reinitializeImage();
return $this;
}
public function UnsharpMask ($amount, $radius, $threshold) {
$sigma = ($radius < 1) ? $radius : sqrt($radius) ;
$amount = ($amount * 2.55) / 100;
$threshold = $threshold / 255;
$this->resource->unsharpMaskImage(
$radius , $sigma , $amount , $threshold
);
return $this;
}
public function ApplyMask ($maskImgFullPath) {
if (is_file($maskImgFullPath)) {
$this->resource->setImageMatte(TRUE);
$newImage = new \Imagick($maskImgFullPath);
$newImage->readimage($maskImgFullPath);
$newImage->resizeimage(
$this->GetWidth(), $this->GetHeight(),
\Imagick::FILTER_UNDEFINED, 1, false
);
$this->resource->compositeImage(
$newImage, \Imagick::COMPOSITE_DSTIN, 0 ,0
);
} else {
throw new \InvalidArgumentException(
"Mask image not found: '$maskImgFullPath'."
);
}
$this->reinitializeImage();
return $this;
}
public function Grayscale () {
$this->resource->setImageType(\Imagick::IMGTYPE_GRAYSCALEMATTE);
$this->reinitializeImage();
return $this;
}
public function Sepia ($threshold = 80) {
$this->resource->sepiatoneimage($threshold);
$this->reinitializeImage();
return $this;
}
public function RoundCorners ($x, $y) {
$this->resource->roundCorners($x, $y);
$this->reinitializeImage();
return $this;
}
public function Rotate ($angle, $hexBgColor = 'transparent') {
$this->resource->rotateImage(
new \ImagickPixel($hexBgColor == 'transparent' ? 'rgba(0%, 0%, 0%, 0.0)' : $hexBgColor),
$angle
);
$this->setWidth($this->resource->getimagewidth());
$this->setHeight($this->resource->getimageheight());
$this->reinitializeImage();
return $this;
}
public function SetBackgroundImage ($bgImgFullPath) {
if (is_file($bgImgFullPath)) {
$newImage = new \Imagick($bgImgFullPath);
$newImage->readimage($bgImgFullPath);
$newImage->resizeimage(
$this->GetWidth(), $this->GetHeight(),
\Imagick::FILTER_UNDEFINED, 1, FALSE
);
$newImage->compositeImage(
$this->resource,
\Imagick::COMPOSITE_DEFAULT,
0 ,0
);
$this->resource = $newImage;
} else {
throw new \InvalidArgumentException(
"Background image not found: '$bgImgFullPath'."
);
}
$this->reinitializeImage();
return $this;
}
public function IsVectorGraphic () {
$result = FALSE;
try {
$type = $this->resource->getimageformat();
$vectorTypes = [
"EPT","EPDF","EPI","EPS","EPS2",
"EPS3","EPSF","EPSI","EPT","PDF",
"PFA","PFB","PFM","PS","PS2",
"PS3","PSB","SVG","SVGZ"
];
if (in_array($type, $vectorTypes)) {
$result = TRUE;
}
} catch (\Exception $e) {
} catch (\Throwable $e) {
}
return $result;
}
public function AddOverlay (
$overlayImgFullPath, $x = 0, $y = 0, $alpha = NULL,
$composite = \MvcCore\Ext\Tools\Images\Imagicks\IComposite::NORMAL
) {
if (!is_int($alpha)) $alpha = 100;
$alpha = round($alpha / 100, 1);
if (is_file($overlayImgFullPath)) {
$newImage = new \Imagick($overlayImgFullPath);
$newImage->readimage($overlayImgFullPath);
$newImage->evaluateImage(
\Imagick::EVALUATE_MULTIPLY, $alpha, \Imagick::CHANNEL_ALPHA
);
$this->resource->compositeImage(
$newImage, $composite, $x ,$y
);
} else {
throw new \InvalidArgumentException(
"Overlay image not found: '$overlayImgFullPath'."
);
}
$this->reinitializeImage();
return $this;
}
public function CreateEmptyImageResource ($width, $height, $hexBgColor = 'transparent') {
$newImage = new \Imagick();
$newImage->newimage(
$width, $height,
new \ImagickPixel($hexBgColor == 'transparent' ? 'rgba(0%, 0%, 0%, 0.0)' : $hexBgColor)
);
$newImage->setImageFormat('png');
$this->reinitializeImage();
return $newImage;
}
protected function destroy() {
$this->resource->destroy();
return $this;
}
}