mirror of
https://github.com/vichan-devel/vichan.git
synced 2024-11-29 09:44:28 +01:00
convert: Suppress warnings when trying to delete temporary file.
This commit is contained in:
parent
8283449908
commit
99f86da203
@ -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!');
|
||||
}
|
||||
}
|
||||
|
Loading…
Reference in New Issue
Block a user