PNGShared.h 469 B

1234567891011121314151617181920212223242526272829
  1. /*
  2. * Copyright (c) 2022, the SerenityOS developers.
  3. *
  4. * SPDX-License-Identifier: BSD-2-Clause
  5. */
  6. #pragma once
  7. namespace Gfx::PNG {
  8. // https://www.w3.org/TR/PNG/#6Colour-values
  9. enum class ColorType : u8 {
  10. Greyscale = 0,
  11. Truecolor = 2, // RGB
  12. IndexedColor = 3,
  13. GreyscaleWithAlpha = 4,
  14. TruecolorWithAlpha = 6,
  15. };
  16. // https://www.w3.org/TR/PNG/#9Filter-types
  17. enum class FilterType : u8 {
  18. None,
  19. Sub,
  20. Up,
  21. Average,
  22. Paeth,
  23. };
  24. };