ladybird/Userland/Libraries/LibGfx/ImageFormats/PortableFormatWriter.cpp
Lucas CHOLLET a08de19922 LibGfx/PortableFormat: Use FixedArray::unchecked_at
This allows us to drop from 7% to 5% passed on `add_pixels` when using
`image` to do conversions from JPEG to PPM.
2023-05-09 11:18:46 +02:00

64 lines
1.9 KiB
C++

/*
* Copyright (c) 2023, Lucas Chollet <lucas.chollet@serenityos.org >
*
* SPDX-License-Identifier: BSD-2-Clause
*/
#include "PortableFormatWriter.h"
#include <AK/FixedArray.h>
#include <AK/Stream.h>
namespace Gfx {
ErrorOr<void> PortableFormatWriter::encode(Stream& output, Bitmap const& bitmap, Options options)
{
// FIXME: Add support for PBM and PGM
TRY(add_header(output, options, bitmap.width(), bitmap.height(), 255));
TRY(add_pixels(output, options, bitmap));
return {};
}
ErrorOr<void> PortableFormatWriter::add_header(Stream& output, Options const& options, u32 width, u32 height, u32 maximal_value)
{
TRY(output.write_formatted("P{}\n", options.format == Options::Format::ASCII ? "3"sv : "6"sv));
TRY(output.write_formatted("# {}\n", options.comment));
TRY(output.write_formatted("{} {}\n", width, height));
TRY(output.write_formatted("{}\n", maximal_value));
return {};
}
ErrorOr<void> PortableFormatWriter::add_pixels(Stream& output, Options const& options, Bitmap const& bitmap)
{
if (options.format == Options::Format::Raw) {
auto row = TRY(FixedArray<u8>::create(bitmap.width() * 3ul));
for (int i = 0; i < bitmap.height(); ++i) {
for (int j = 0; j < bitmap.width(); ++j) {
auto const color = bitmap.get_pixel(j, i);
row.unchecked_at(j * 3 + 0) = color.red();
row.unchecked_at(j * 3 + 1) = color.green();
row.unchecked_at(j * 3 + 2) = color.blue();
}
TRY(output.write_until_depleted(row.span()));
}
return {};
}
for (int i = 0; i < bitmap.height(); ++i) {
for (int j = 0; j < bitmap.width(); ++j) {
auto color = bitmap.get_pixel(j, i);
TRY(output.write_formatted("{} {} {}\t", color.red(), color.green(), color.blue()));
}
TRY(output.write_value('\n'));
}
return {};
}
}