mirror of
https://github.com/gui-cs/Terminal.Gui.git
synced 2026-01-01 16:59:35 +01:00
Merge pull request #3734 from tznind/sixel-encoder-tinkering
Fixes #1265 - Adds Sixel rendering support
This commit is contained in:
@@ -420,6 +420,13 @@ internal class CursesDriver : ConsoleDriver
|
||||
}
|
||||
}
|
||||
|
||||
// SIXELS
|
||||
foreach (var s in Application.Sixel)
|
||||
{
|
||||
SetCursorPosition (s.ScreenPosition.X, s.ScreenPosition.Y);
|
||||
Console.Write(s.SixelData);
|
||||
}
|
||||
|
||||
SetCursorPosition (0, 0);
|
||||
|
||||
_currentCursorVisibility = savedVisibility;
|
||||
|
||||
Reference in New Issue
Block a user