add GetPixbuf

This commit is contained in:
2025-06-16 19:28:34 +02:00
parent a49a3b2beb
commit bbaf620297
3 changed files with 20 additions and 5 deletions

View File

@@ -8,5 +8,7 @@ public interface IGtkSymbolFactory<TSymbols> : IBaseSymbolFactory<TSymbols>
{
Image? GetImage(TSymbols svgImage, Size size);
Image? GetImage(TSymbols svgImage, SymbolSize size);
Gdk.Pixbuf? GetPixbuf(TSymbols svgImage, Size size);
Gdk.Pixbuf? GetPixbuf(TSymbols svgImage, SymbolSize size);
Image GetImageFromPixbuf(Gdk.Pixbuf pixbuf);
}