convert: Suppress warnings when trying to delete temporary file.

This commit is contained in:
Michael Save 2012-03-18 00:57:11 +11:00
parent ff172eb418
commit b561066a4c

View File

@ -242,14 +242,14 @@
return $this->height;
}
public function destroy() {
unlink($this->temp);
@unlink($this->temp);
}
public function resize() {
global $config;
$quality = $config['thumb_quality'] * 10;
if(shell_exec("convert -flatten -antialias -filter Point -scale {$this->width}x{$this->height} -quality {$quality} " . escapeshellarg($this->src . '[0]') . " " . escapeshellarg($this->temp)) || !file_exists($this->temp))
if(shell_exec("convert -flatten -filter Point -scale {$this->width}x{$this->height} +antialias -quality {$quality} " . escapeshellarg($this->src . '[0]') . " " . escapeshellarg($this->temp)) || !file_exists($this->temp))
error('Failed to resize image!');
}
}