mirror of
https://github.com/RGBCube/serenity
synced 2025-05-14 11:24:58 +00:00

This is only used for vector graphics format where requesting the true displayed size leads to visual enhancement.
7 lines
317 B
Text
7 lines
317 B
Text
#include <LibCore/AnonymousBuffer.h>
|
|
#include <LibGfx/ShareableBitmap.h>
|
|
|
|
endpoint ImageDecoderServer
|
|
{
|
|
decode_image(Core::AnonymousBuffer data, Optional<Gfx::IntSize> ideal_size, Optional<ByteString> mime_type) => (bool is_animated, u32 loop_count, Vector<Gfx::ShareableBitmap> bitmaps, Vector<u32> durations)
|
|
}
|