ImageBundle
ImageBundle copied to clipboard
How get image width/height inside controller or entity ?
Hello, it's possible to get image height/width inside a controller or entity please ? Thanks.
+1
@TrkiSF2 you can with that:
list($width, $height) = getimagesize($file);
$this->imageWidth = $width;
$this->imageHeight = $height;
What about:
<?php
$image = $this->get('image.handling')->open('image.jpg');
$width = $image->width();
$height = $image->height();