/* * Copyright (c) 2024, Lucas Chollet * * SPDX-License-Identifier: BSD-2-Clause */ #pragma once #include #include namespace Gfx { // Specified at: https://www.w3.org/Graphics/GIF/spec-gif89a.txt class GIFWriter { public: static ErrorOr encode(Stream&, Bitmap const&); }; }