C# Класс RemoteViewing.Windows.Forms.VncBitmap

Helps with Windows Forms bitmap conversion.
Показать файл Открыть проект Примеры использования класса

Открытые методы

Метод Описание
CopyFromFramebuffer ( VncFramebuffer source, VncRectangle sourceRectangle, Bitmap target, int targetX, int targetY ) : void

Copies a region of the framebuffer into a bitmap.

CopyToFramebuffer ( Bitmap source, VncRectangle sourceRectangle, VncFramebuffer target, int targetX, int targetY ) : void

Copies a region of a bitmap into the framebuffer.

Описание методов

CopyFromFramebuffer() публичный статический Метод

Copies a region of the framebuffer into a bitmap.
public static CopyFromFramebuffer ( VncFramebuffer source, VncRectangle sourceRectangle, Bitmap target, int targetX, int targetY ) : void
source RemoteViewing.Vnc.VncFramebuffer The framebuffer to read.
sourceRectangle VncRectangle The framebuffer region to copy.
target System.Drawing.Bitmap The bitmap to copy into.
targetX int The leftmost X coordinate of the bitmap to draw to.
targetY int The topmost Y coordinate of the bitmap to draw to.
Результат void

CopyToFramebuffer() публичный статический Метод

Copies a region of a bitmap into the framebuffer.
public static CopyToFramebuffer ( Bitmap source, VncRectangle sourceRectangle, VncFramebuffer target, int targetX, int targetY ) : void
source System.Drawing.Bitmap The bitmap to read.
sourceRectangle VncRectangle The bitmap region to copy.
target RemoteViewing.Vnc.VncFramebuffer The framebuffer to copy into.
targetX int The leftmost X coordinate of the framebuffer to draw to.
targetY int The topmost Y coordinate of the framebuffer to draw to.
Результат void