summaryrefslogtreecommitdiff
path: root/Userland/Libraries/LibGfx/ImageFormats/PBMLoader.h
diff options
context:
space:
mode:
authorLucas CHOLLET <lucas.chollet@free.fr>2023-03-21 14:58:06 -0400
committerAndreas Kling <kling@serenityos.org>2023-03-21 22:39:25 +0100
commit496b7ffb2b58043a80d90b8b8f44cab1eaa874e8 (patch)
tree1fca47aa8123c9d3e110d45c8af637f95241dcd5 /Userland/Libraries/LibGfx/ImageFormats/PBMLoader.h
parent752f06f228119a70c59e844dcd2b9560e757b0ff (diff)
downloadserenity-496b7ffb2b58043a80d90b8b8f44cab1eaa874e8.zip
LibGfx: Move all image loaders and writers to a subdirectory
Diffstat (limited to 'Userland/Libraries/LibGfx/ImageFormats/PBMLoader.h')
-rw-r--r--Userland/Libraries/LibGfx/ImageFormats/PBMLoader.h26
1 files changed, 26 insertions, 0 deletions
diff --git a/Userland/Libraries/LibGfx/ImageFormats/PBMLoader.h b/Userland/Libraries/LibGfx/ImageFormats/PBMLoader.h
new file mode 100644
index 0000000000..37705432b3
--- /dev/null
+++ b/Userland/Libraries/LibGfx/ImageFormats/PBMLoader.h
@@ -0,0 +1,26 @@
+/*
+ * Copyright (c) 2020, Hüseyin ASLITÜRK <asliturk@hotmail.com>
+ * Copyright (c) 2022, the SerenityOS developers.
+ *
+ * SPDX-License-Identifier: BSD-2-Clause
+ */
+
+#pragma once
+
+#include <AK/StringView.h>
+#include <LibGfx/ImageFormats/ImageDecoder.h>
+#include <LibGfx/ImageFormats/PortableImageMapLoader.h>
+
+namespace Gfx {
+
+struct PBM {
+ static constexpr auto ascii_magic_number = '1';
+ static constexpr auto binary_magic_number = '4';
+ static constexpr StringView image_type = "PBM"sv;
+};
+
+using PBMLoadingContext = PortableImageMapLoadingContext<PBM>;
+using PBMImageDecoderPlugin = PortableImageDecoderPlugin<PBMLoadingContext>;
+
+bool read_image_data(PBMLoadingContext& context, Streamer& streamer);
+}