New in Symfony 2.4: A more powerful image validator
October 31, 2013 • Published by Fabien Potencier
Warning: This post is about an unsupported Symfony version. Some of this information may be out of date. Read the most recent Symfony Docs.
Contributed by
Luciano Mammino
in #8490.
When using a file upload input on an HTML page to allow images to be uploaded,
you should use the Image
constraint instead of the more generic File
one. Besides restricting the allowed mime-types, it exposes additional options
specific to images like validating the image height or their width.
And as of Symfony 2.4, you can also validate the image aspect ratio (defined as
width / height
) and selectively allow square, landscape, and portrait image
orientations with the new maxRatio
, minRatio
, allowSquare
,
allowLandscape
, and allowPortrait
options.
Read the Image constraint documentation page for more information.
Help the Symfony project!
As with any Open-Source project, contributing code or documentation is the most common way to help, but we also have a wide range of sponsoring opportunities.
Comments are closed.
To ensure that comments stay relevant, they are closed for old posts.