1
Fork 0
mirror of https://github.com/RGBCube/serenity synced 2025-07-27 22:27:35 +00:00

PixelPaint: adding an option to export as PNG

This commit is contained in:
Pierre 2021-01-22 11:55:26 +01:00 committed by Andreas Kling
parent a1d7739607
commit 8e265b512a
3 changed files with 29 additions and 0 deletions

View file

@ -70,6 +70,7 @@ public:
void paint_into(GUI::Painter&, const Gfx::IntRect& dest_rect);
void save(const String& file_path) const;
void export_bmp(const String& file_path);
void export_png(const String& file_path);
void move_layer_to_front(Layer&);
void move_layer_to_back(Layer&);