mirror of
https://github.com/gui-cs/Terminal.Gui.git
synced 2025-12-30 17:57:57 +01:00
Fix fill area - y is not in sixels its in pixels
This commit is contained in:
@@ -10,7 +10,7 @@ public class SixelEncoderTests
|
||||
string expected = "\u001bP" // Start sixel sequence
|
||||
+ "0;0;0" // Defaults for aspect ratio and grid size
|
||||
+ "q" // Signals beginning of sixel image data
|
||||
+ "\"1;1;12;2" // no scaling factors (1x1) and filling 12px width with 2 'sixel' height = 12 px high
|
||||
+ "\"1;1;12;12" // no scaling factors (1x1) and filling 12x12 pixel area
|
||||
/*
|
||||
* Definition of the color palette
|
||||
* #<index>;<type>;<R>;<G>;<B>" - 2 means RGB. The values range 0 to 100
|
||||
@@ -82,7 +82,7 @@ public class SixelEncoderTests
|
||||
string expected = "\u001bP" // Start sixel sequence
|
||||
+ "0;0;0" // Defaults for aspect ratio and grid size
|
||||
+ "q" // Signals beginning of sixel image data
|
||||
+ "\"1;1;12;2" // no scaling factors (1x1) and filling 12px width with 2 'sixel' height = 12 px high
|
||||
+ "\"1;1;12;12" // no scaling factors (1x1) and filling 12x12 pixel area
|
||||
/*
|
||||
* Definition of the color palette
|
||||
*/
|
||||
|
||||
Reference in New Issue
Block a user