DEV Community

Discussion on: Resize Images with Active Storage in Rails

Collapse
 
hoss3770 profile image
Hossam Khalifa • Edited

I don't knwo why I can not convert my image to avif formati with activestorage
Do you have any clue how to do this?

<%= image_tag @post.avatar.variant(format: :avif) %>
Enter fullscreen mode Exit fullscreen mode

does not work

Collapse
 
konnorrogers profile image
Konnor Rogers • Edited

I dont think symbols get converted to strings. I think this should work:

 <%= image_tag @post.avatar.variant(convert: "avif") %>
Enter fullscreen mode Exit fullscreen mode