summaryrefslogtreecommitdiff
path: root/Userland/Services/ImageDecoder/ImageDecoderServer.ipc
blob: a2d24f1952dc2eab3f4bed6c36ac05f261002fca (plain)
1
2
3
4
5
6
7
#include <LibCore/AnonymousBuffer.h>
#include <LibGfx/ShareableBitmap.h>

endpoint ImageDecoderServer
{
    decode_image(Core::AnonymousBuffer data, Optional<DeprecatedString> mime_type) => (bool is_animated, u32 loop_count, Vector<Gfx::ShareableBitmap> bitmaps, Vector<u32> durations)
}