WebPWriterLossless.h 254 B

12345678910111213141516
  1. /*
  2. * Copyright (c) 2024, Nico Weber <thakis@chromium.org>
  3. *
  4. * SPDX-License-Identifier: BSD-2-Clause
  5. */
  6. #pragma once
  7. #include <AK/Error.h>
  8. #include <LibGfx/Forward.h>
  9. namespace Gfx {
  10. ErrorOr<ByteBuffer> compress_VP8L_image_data(Bitmap const&);
  11. }