mirror of
https://github.com/RGBCube/serenity
synced 2025-05-16 22:05:09 +00:00
6 lines
172 B
C
6 lines
172 B
C
#pragma once
|
|
|
|
#include <LibDraw/GraphicsBitmap.h>
|
|
|
|
RefPtr<GraphicsBitmap> load_png(const StringView& path);
|
|
RefPtr<GraphicsBitmap> load_png_from_memory(const u8*, size_t);
|