ladybird/Userland/Libraries/LibGfx/ImageFormats/PGMLoader.cpp
Nico Weber 83ab9f7c2d LibGfx/PNM: Remove unnecessary line
This is already done at the caller decode() in
PortableImageLoaderCommon.h, as pointed out by @LucasChollet at
https://github.com/SerenityOS/serenity/pull/22935#discussion_r1467158789

No behavior change.
2024-01-26 14:53:33 +01:00

41 lines
1.3 KiB
C++

/*
* Copyright (c) 2020, Hüseyin ASLITÜRK <asliturk@hotmail.com>
* Copyright (c) 2022, the SerenityOS developers.
*
* SPDX-License-Identifier: BSD-2-Clause
*/
#include "PGMLoader.h"
#include "PortableImageLoaderCommon.h"
namespace Gfx {
ErrorOr<void> read_image_data(PGMLoadingContext& context)
{
TRY(create_bitmap(context));
auto& stream = *context.stream;
auto const context_size = context.width * context.height;
if (context.type == PGMLoadingContext::Type::ASCII) {
for (u64 i = 0; i < context_size; ++i) {
auto value = TRY(read_number(stream));
TRY(read_whitespace(context));
Color color { static_cast<u8>(value), static_cast<u8>(value), static_cast<u8>(value) };
if (context.format_details.max_val < 255)
color = adjust_color(context.format_details.max_val, color);
context.bitmap->set_pixel(i % context.width, i / context.width, color);
}
} else if (context.type == PGMLoadingContext::Type::RAWBITS) {
for (u64 i = 0; i < context_size; ++i) {
auto const pixel = TRY(stream.read_value<u8>());
context.bitmap->set_pixel(i % context.width, i / context.width, { pixel, pixel, pixel });
}
}
return {};
}
}