ThumbImageBuffer

Image content of a thumbnail or icon. Set in ScreenCaptureSourceInfo.

public class ThumbImageBuffer
    {
        public Int64 buffer { set; get; }
        public uint length { set; get; }
        public uint width { set; get; }
        public uint height { set; get; }

        public ThumbImageBuffer()
        {
            buffer = 0;
            length = 0;
            width = 0;
            height = 0;
        }
    };
Note: The image is in ARGB format by default. If you need another format, please convert it manually.

Properties

buffer
The buffer of the thumbnail or icon.
length
The buffer length of the thumbnail or icon, in bytes.
width
The actual width (px) of the thumbnail or icon.
height
The actual height (px) of the thumbnail or icon.