How to Find if an Image is Animatable #211
-
Hi again, I was trying to find a function in Libvips docs that could return image iterations as an integer. PHP getimageiterations() function gives a BIT value for this purpose and I would like to find if Libvips has a similar function for the same. Is there any function in Libvips to find if an image is animatable, specially Webp images? Thank you PS: It is pretty hard to find functions for purposes. |
Beta Was this translation helpful? Give feedback.
Replies: 1 comment 3 replies
-
Hello @AmitSonkhiya, You need to look at the image metadata. For example:
In PHP you can use eg.
I usually use the function list: |
Beta Was this translation helpful? Give feedback.
Oop,
n-pages
, of course you're right.