1#include <LibCore/AnonymousBuffer.h>
2#include <LibGfx/ShareableBitmap.h>
3
4endpoint ImageDecoderServer
5{
6 decode_image(Core::AnonymousBuffer data, Optional<DeprecatedString> mime_type) => (bool is_animated, u32 loop_count, Vector<Gfx::ShareableBitmap> bitmaps, Vector<u32> durations)
7}