/* * Copyright (c) 2024, Nico Weber * * SPDX-License-Identifier: BSD-2-Clause */ #include namespace Gfx { ErrorOr WebPWriter::encode(Stream&, Bitmap const&, Options const&) { return Error::from_string_literal("WebP encoding not yet implemented"); } }