mirror of
https://github.com/LadybirdBrowser/ladybird.git
synced 2025-10-19 15:43:20 +00:00
17 lines
326 B
C++
17 lines
326 B
C++
![]() |
/*
|
||
|
* Copyright (c) 2024, Nico Weber <thakis@chromium.org>
|
||
|
*
|
||
|
* SPDX-License-Identifier: BSD-2-Clause
|
||
|
*/
|
||
|
|
||
|
#include <LibGfx/ImageFormats/WebPWriter.h>
|
||
|
|
||
|
namespace Gfx {
|
||
|
|
||
|
ErrorOr<void> WebPWriter::encode(Stream&, Bitmap const&, Options const&)
|
||
|
{
|
||
|
return Error::from_string_literal("WebP encoding not yet implemented");
|
||
|
}
|
||
|
|
||
|
}
|