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

LibGfx: Add Bitmap::rotated and Bitmap::flipped

This commit is contained in:
Hüseyin ASLITÜRK 2020-04-12 13:19:18 +03:00 committed by Andreas Kling
parent c6944f8cc2
commit 8e9d031cb3
2 changed files with 49 additions and 0 deletions

View file

@ -42,6 +42,11 @@ enum class BitmapFormat {
Indexed8
};
enum RotationDirection {
Left,
Right
};
class Bitmap : public RefCounted<Bitmap> {
public:
static NonnullRefPtr<Bitmap> create(BitmapFormat, const Size&);
@ -50,6 +55,8 @@ public:
static RefPtr<Bitmap> load_from_file(const StringView& path);
static NonnullRefPtr<Bitmap> create_with_shared_buffer(BitmapFormat, NonnullRefPtr<SharedBuffer>&&, const Size&);
NonnullRefPtr<Gfx::Bitmap> rotated(Gfx::RotationDirection) const;
NonnullRefPtr<Gfx::Bitmap> flipped(Gfx::Orientation) const;
NonnullRefPtr<Bitmap> to_bitmap_backed_by_shared_buffer() const;
ShareableBitmap to_shareable_bitmap(pid_t peer_pid = -1) const;