{% set imageFilters = ['image/jpg', 'image/jpeg', 'image/png', 'image/webp'] %}
{% set otherFilters = ['text/plain', 'application/pdf'] %}
{% if item.encodingFormat is defined and item.encodingFormat in imageFilters %}
{% set webpFilename = item.filename|split('.')|first ~ ".webp" %}
{# the second parameter is the name of the property with the UploadableField annotation #}
#}