0
1
Fork 0

refs #5553 Insert/Update image table before save

This commit is contained in:
Juan Ferrer 2023-04-14 10:39:59 +02:00
parent 42f682739e
commit 74980fbdd7
3 changed files with 34 additions and 33 deletions

2
debian/changelog vendored
View File

@ -1,4 +1,4 @@
hedera-web (23.6.9) stable; urgency=low
hedera-web (23.6.10) stable; urgency=low
* Initial Release.

View File

@ -1,6 +1,6 @@
{
"name": "hedera-web",
"version": "23.6.9",
"version": "23.6.10",
"description": "Verdnatura web page",
"license": "GPL-3.0",
"repository": {

View File

@ -101,12 +101,6 @@ class Upload extends Vn\Web\JsonRequest {
$symbolicSrc = "../full/$fileName";
$image = Image::create($tmpName);
Image::resizeSave($image, $fullFile, $info['maxHeight'], $info['maxWidth']);
foreach ($info['sizes'] as $size => $i) {
$dstFile = "$collectionPath/$size/$fileName";
Image::resizeSave($image, $dstFile, $i['height'], $i['width'], $i['crop'], $symbolicSrc);
}
$query =
"INSERT INTO `image`
@ -121,6 +115,13 @@ class Upload extends Vn\Web\JsonRequest {
'name' => $name
]);
Image::resizeSave($image, $fullFile, $info['maxHeight'], $info['maxWidth']);
foreach ($info['sizes'] as $size => $i) {
$dstFile = "$collectionPath/$size/$fileName";
Image::resizeSave($image, $dstFile, $i['height'], $i['width'], $i['crop'], $symbolicSrc);
}
imagedestroy($image);
unlink($tmpName);
return TRUE;