I'm creating a website with Laminas (new zend framework).
And I have to resize the upload images. The images are NOT being upload using zend form as I created a dropzone.
The thing is that I need to do some resizing in the controller. Previously with Zend, I was using ImageSize, but it seems to not be ready for laminas. The code was:
require_once APPLICATION_PATH . '/../library/Zend/Filter/ImageSize.php';
$filter = new Users_Form_Users_Filter_ImageSize();
But neither that php file nor that class seems to be in Laminas, and when I google Laminas Image size, I only find the validation but not the resizing.
Is there a way to do this? As I need to generate the thumbnail and other image sizes.
Thanks!