mirror of
https://git.code.sf.net/p/seeddms/code
synced 2024-11-26 15:32:13 +00:00
58 lines
1.4 KiB
PHP
58 lines
1.4 KiB
PHP
|
<?php
|
||
|
/**
|
||
|
* Implementation of conversion service image class
|
||
|
*
|
||
|
* @category DMS
|
||
|
* @package SeedDMS
|
||
|
* @license GPL 2
|
||
|
* @version @version@
|
||
|
* @author Uwe Steinmann <uwe@steinmann.cx>
|
||
|
* @copyright Copyright (C) 2021 Uwe Steinmann
|
||
|
* @version Release: @package_version@
|
||
|
*/
|
||
|
|
||
|
require_once("inc/inc.ClassConversionServiceBase.php");
|
||
|
|
||
|
/**
|
||
|
* Implementation of conversion service image class
|
||
|
*
|
||
|
* @category DMS
|
||
|
* @package SeedDMS
|
||
|
* @author Uwe Steinmann <uwe@steinmann.cx>
|
||
|
* @copyright Copyright (C) 2021 Uwe Steinmann
|
||
|
* @version Release: @package_version@
|
||
|
*/
|
||
|
class SeedDMS_ConversionServiceImageToImage extends SeedDMS_ConversionServiceBase {
|
||
|
/**
|
||
|
* timeout
|
||
|
*/
|
||
|
public $timeout;
|
||
|
|
||
|
public function __construct($from, $to) {
|
||
|
$this->from = $from;
|
||
|
$this->to = $to;
|
||
|
$this->timeout = 5;
|
||
|
}
|
||
|
|
||
|
public function convert($infile, $target = null, $params = array()) {
|
||
|
$start = microtime(true);
|
||
|
$imagick = new Imagick();
|
||
|
if($imagick->readImage($infile)) {
|
||
|
if(!empty($params['width']))
|
||
|
$imagick->scaleImage((int) $params['width'], 0);
|
||
|
$end = microtime(true);
|
||
|
if($this->logger) {
|
||
|
$this->logger->log('Conversion from '.$this->from.' to '.$this->to.' with image service took '.($end-$start).' sec.', PEAR_LOG_INFO);
|
||
|
}
|
||
|
if($target) {
|
||
|
return $imagick->writeImage($target);
|
||
|
} else {
|
||
|
return $imagick->getImageBlob();
|
||
|
}
|
||
|
}
|
||
|
return false;
|
||
|
}
|
||
|
}
|
||
|
|
||
|
|