Add example to doc comment of Gamut integration

This commit is contained in:
Elias Batek 2024-05-26 18:40:15 +02:00
parent 6c9fa81e68
commit 2a6044643c
1 changed files with 10 additions and 0 deletions

View File

@ -311,6 +311,16 @@ static if (hasGamutIntegration) {
/++
Creates a Pixmap copying the pixel data from the provided [GamutImage].
---
// Load image using Gamut
import gamut;
Image img;
img.loadFromFile("dunes.jpg");
// Convert to Pixmap
Pixmap pixmap = img.toPixmap();
---
+/
bool toPixmap(ref GamutImage source, out Pixmap result) @trusted nothrow
in (source.isValid) {