Add functions for loading image-data from arsd.color

This commit is contained in:
Elias Batek 2024-05-06 00:49:20 +02:00
parent 7c3d511a33
commit 9d0c6e1d0c
1 changed files with 20 additions and 0 deletions

View File

@ -112,6 +112,26 @@ struct Pixmap {
this.width = width;
}
static {
/++
Creates a Pixmap wrapping the pixel data from the provided `TrueColorImage`.
Interoperability function: `arsd.color`
+/
Pixmap fromTrueColorImage(TrueColorImage source) @nogc {
return Pixmap(source.imageData.colors, source.width);
}
/++
Creates a Pixmap wrapping the pixel data from the provided `MemoryImage`.
Interoperability function: `arsd.color`
+/
Pixmap fromMemoryImage(MemoryImage source) {
return fromTrueColorImage(source.getAsTrueColorImage());
}
}
@safe pure nothrow @nogc:
/// Height of the buffer, i.e. the number of lines