Newer
Older
minerva / Userland / Libraries / LibGfx / ImageFormats / WebPWriter.h
@minerva minerva on 13 Jul 885 bytes Initial commit
/*
 * Copyright (c) 2024, Nico Weber <thakis@chromium.org>
 *
 * SPDX-License-Identifier: BSD-2-Clause
 */

#pragma once

#include <AK/Error.h>
#include <LibGfx/Color.h>
#include <LibGfx/Forward.h>
#include <LibGfx/ImageFormats/WebPWriterLossless.h>
#include <LibGfx/Point.h>

namespace Gfx {

class AnimationWriter;

struct WebPEncoderOptions {
    VP8LEncoderOptions vp8l_options;
    Optional<ReadonlyBytes> icc_data;
};

class WebPWriter {
public:
    using Options = WebPEncoderOptions;

    // Always lossless at the moment.
    static ErrorOr<void> encode(Stream&, Bitmap const&, Options const& = {});

    // Always lossless at the moment.
    static ErrorOr<NonnullOwnPtr<AnimationWriter>> start_encoding_animation(SeekableStream&, IntSize dimensions, int loop_count = 0, Color background_color = Color::Black, Options const& = {});

private:
    WebPWriter() = delete;
};

}