diff options
author | Pierre <pierre.git@posteo.de> | 2021-01-22 11:55:26 +0100 |
---|---|---|
committer | Andreas Kling <kling@serenityos.org> | 2021-01-22 20:39:25 +0100 |
commit | 8e265b512a3385b8494187e05132d7be90c4a340 (patch) | |
tree | 457dfd33f94455edac0ba7f5ff89150e79824605 /Userland/Applications/PixelPaint/Image.h | |
parent | a1d773960723dcd6395bef4c4e5eecf4fe3c68e3 (diff) | |
download | serenity-8e265b512a3385b8494187e05132d7be90c4a340.zip |
PixelPaint: adding an option to export as PNG
Diffstat (limited to 'Userland/Applications/PixelPaint/Image.h')
-rw-r--r-- | Userland/Applications/PixelPaint/Image.h | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/Userland/Applications/PixelPaint/Image.h b/Userland/Applications/PixelPaint/Image.h index 63184b3ad3..858c2381e1 100644 --- a/Userland/Applications/PixelPaint/Image.h +++ b/Userland/Applications/PixelPaint/Image.h @@ -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&); |