Exemple #1
0
        public void DrawBitmap(int x, int y, VerticalByteBitmap bitmap)
        {
            var rectangle = new VerticalByteRectangle(x, y, bitmap.Width, bitmap.Height);

            this.SendColPagePreamble(rectangle);

            var buffer = bitmap.ShiftLsbToMsb(rectangle.YOffsetStart);

            //for( int index = 0; index < buffer.GetLength( 0 ); index++ ) {
            //	this.SendCommands( buffer[ index ] );
            //}
        }