mirror of
https://github.com/gui-cs/Terminal.Gui.git
synced 2025-12-26 15:57:56 +01:00
20 lines
687 B
C#
20 lines
687 B
C#
namespace Terminal.Gui.Drawing;
|
|
|
|
/// <summary>
|
|
/// Describes a request to render a given <see cref="SixelData"/> at a given <see cref="ScreenPosition"/>.
|
|
/// Requires that the terminal and <see cref="IDriver"/> both support sixel.
|
|
/// </summary>
|
|
public class SixelToRender
|
|
{
|
|
/// <summary>
|
|
/// gets or sets the encoded sixel data. Use <see cref="SixelEncoder"/> to convert bitmaps
|
|
/// into encoded sixel data.
|
|
/// </summary>
|
|
public string SixelData { get; set; }
|
|
|
|
/// <summary>
|
|
/// gets or sets where to move the cursor to before outputting the <see cref="SixelData"/>.
|
|
/// </summary>
|
|
public Point ScreenPosition { get; set; }
|
|
}
|