1
0
mirror of https://github.com/devcode-it/openstamanager.git synced 2025-02-12 01:20:36 +01:00

Modifica richiamo funzione generazione immagine errata (#432)

This commit is contained in:
xxfuma85xx 2019-01-12 13:09:10 +01:00 committed by Thomas Zilio
parent 6d908e9460
commit 1ff9ce3650

View File

@ -489,7 +489,7 @@ switch (post('op')) {
$data = explode(',', post('firma_base64'));
$img = Intervention\Image\ImageManagerStatic::build(base64_decode($data[1]));
$img = Intervention\Image\ImageManagerStatic::make(base64_decode($data[1]));
$img->resize(680, 202, function ($constraint) {
$constraint->aspectRatio();
});