mirror of
https://github.com/RGBCube/serenity
synced 2025-05-31 12:28:12 +00:00
image: Support writing to PPM files
This commit is contained in:
parent
9c9bd271c8
commit
13d1721852
1 changed files with 4 additions and 1 deletions
|
@ -10,6 +10,7 @@
|
||||||
#include <LibGfx/BMPWriter.h>
|
#include <LibGfx/BMPWriter.h>
|
||||||
#include <LibGfx/ImageDecoder.h>
|
#include <LibGfx/ImageDecoder.h>
|
||||||
#include <LibGfx/PNGWriter.h>
|
#include <LibGfx/PNGWriter.h>
|
||||||
|
#include <LibGfx/PortableFormatWriter.h>
|
||||||
#include <LibGfx/QOIWriter.h>
|
#include <LibGfx/QOIWriter.h>
|
||||||
|
|
||||||
ErrorOr<int> serenity_main(Main::Arguments arguments)
|
ErrorOr<int> serenity_main(Main::Arguments arguments)
|
||||||
|
@ -41,10 +42,12 @@ ErrorOr<int> serenity_main(Main::Arguments arguments)
|
||||||
bytes = TRY(Gfx::BMPWriter::encode(*frame));
|
bytes = TRY(Gfx::BMPWriter::encode(*frame));
|
||||||
} else if (out_path.ends_with(".png"sv, CaseSensitivity::CaseInsensitive)) {
|
} else if (out_path.ends_with(".png"sv, CaseSensitivity::CaseInsensitive)) {
|
||||||
bytes = TRY(Gfx::PNGWriter::encode(*frame));
|
bytes = TRY(Gfx::PNGWriter::encode(*frame));
|
||||||
|
} else if (out_path.ends_with(".ppm"sv, CaseSensitivity::CaseInsensitive)) {
|
||||||
|
bytes = TRY(Gfx::PortableFormatWriter::encode(*frame));
|
||||||
} else if (out_path.ends_with(".qoi"sv, CaseSensitivity::CaseInsensitive)) {
|
} else if (out_path.ends_with(".qoi"sv, CaseSensitivity::CaseInsensitive)) {
|
||||||
bytes = TRY(Gfx::QOIWriter::encode(*frame));
|
bytes = TRY(Gfx::QOIWriter::encode(*frame));
|
||||||
} else {
|
} else {
|
||||||
warnln("can only write .bmp, .png, and .qoi");
|
warnln("can only write .bmp, .png, .ppm, and .qoi");
|
||||||
return 1;
|
return 1;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue