ladybird/Libraries/LibWeb/HTML/Canvas/SerializeBitmap.h
Totto16 49500ac386 LibWeb: Factor out canvas serialization algorihtm
Factor out canvas serialization algorihtm from HTMLCanvasElement to
seperate file. This makes it usable by other things too.
2025-06-30 09:46:21 -06:00

23 lines
522 B
C++

/*
* Copyright (c) 2025, Ladybird contributors
*
* SPDX-License-Identifier: BSD-2-Clause
*/
#pragma once
#include <AK/ByteBuffer.h>
#include <LibGfx/Bitmap.h>
#include <LibWeb/DOM/Document.h>
namespace Web::HTML {
struct SerializeBitmapResult {
ByteBuffer buffer;
StringView mime_type;
};
// https://html.spec.whatwg.org/multipage/canvas.html#a-serialisation-of-the-bitmap-as-a-file
ErrorOr<SerializeBitmapResult> serialize_bitmap(Gfx::Bitmap const& bitmap, StringView type, Optional<double> quality);
}