1
Fork 0
mirror of https://github.com/RGBCube/serenity synced 2025-05-31 18:18:12 +00:00

PixelPaint: Add exporting to the QOI image format

This commit is contained in:
Olivier De Canniere 2022-04-07 14:23:54 +02:00 committed by Linus Groh
parent 44a5558525
commit be4913c1fb
3 changed files with 26 additions and 0 deletions

View file

@ -71,6 +71,7 @@ public:
ErrorOr<void> write_to_file(String const& file_path) const;
ErrorOr<void> export_bmp_to_file(Core::File&, bool preserve_alpha_channel);
ErrorOr<void> export_png_to_file(Core::File&, bool preserve_alpha_channel);
ErrorOr<void> export_qoi_to_file(Core::File&) const;
void move_layer_to_front(Layer&);
void move_layer_to_back(Layer&);