use imagemagick first stage thumbnail for cover photos, if configured

This commit is contained in:
zotlabs
2018-05-07 23:57:17 -07:00
parent 611e22d676
commit 3c8de7b59d
2 changed files with 37 additions and 7 deletions

View File

@@ -84,10 +84,11 @@ function photo_upload($channel, $observer, $args) {
// logger('imagick thumbnail command: ' . $cmd);
for($x = 0; $x < 4; $x ++) {
exec($cmd);
if(! file_exists($tmp_name)) {
logger('imagick scale failed. Retrying.');
continue;
if(file_exists($tmp_name)) {
break;
}
logger('imagick scale failed. Retrying.');
continue;
}
if(! file_exists($tmp_name)) {
logger('imagick scale failed. Abort.');