-
-
Notifications
You must be signed in to change notification settings - Fork 3.2k
/
Copy pathCMYKBitmap.h
89 lines (68 loc) · 1.92 KB
/
CMYKBitmap.h
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
/*
* Copyright (c) 2024, Nico Weber <[email protected]>
*
* SPDX-License-Identifier: BSD-2-Clause
*/
#pragma once
#include <AK/ByteBuffer.h>
#include <AK/Format.h>
#include <AK/NonnullRefPtr.h>
#include <AK/RefCounted.h>
#include <LibGfx/Bitmap.h>
#include <LibGfx/Size.h>
namespace Gfx {
struct CMYK {
u8 c;
u8 m;
u8 y;
u8 k;
int operator<=>(CMYK const&) const = default;
};
class CMYKBitmap : public RefCounted<CMYKBitmap> {
public:
static ErrorOr<NonnullRefPtr<CMYKBitmap>> create_with_size(IntSize const& size);
IntSize const& size() const { return m_size; }
[[nodiscard]] CMYK* scanline(int y);
[[nodiscard]] CMYK const* scanline(int y) const;
[[nodiscard]] CMYK* begin();
[[nodiscard]] CMYK* end();
[[nodiscard]] size_t data_size() const { return m_data.size(); }
ErrorOr<RefPtr<Bitmap>> to_low_quality_rgb() const;
private:
CMYKBitmap(IntSize const& size, ByteBuffer data)
: m_size(size)
, m_data(move(data))
{
}
IntSize m_size;
ByteBuffer m_data;
mutable RefPtr<Bitmap> m_rgb_bitmap;
};
inline CMYK* CMYKBitmap::scanline(int y)
{
VERIFY(y >= 0 && y < m_size.height());
return reinterpret_cast<CMYK*>(m_data.data() + y * m_size.width() * sizeof(CMYK));
}
inline CMYK const* CMYKBitmap::scanline(int y) const
{
VERIFY(y >= 0 && y < m_size.height());
return reinterpret_cast<CMYK const*>(m_data.data() + y * m_size.width() * sizeof(CMYK));
}
inline CMYK* CMYKBitmap::begin()
{
return reinterpret_cast<CMYK*>(m_data.data());
}
inline CMYK* CMYKBitmap::end()
{
return reinterpret_cast<CMYK*>(m_data.data() + data_size());
}
}
namespace AK {
template<>
struct Formatter<Gfx::CMYK> : Formatter<FormatString> {
ErrorOr<void> format(FormatBuilder& builder, Gfx::CMYK const& value)
{
return Formatter<FormatString>::format(builder, "{:#02x}{:02x}{:02x}{:02x}"sv, value.c, value.m, value.y, value.k);
}
};
}