Aspose.Pdf.Examples.CSharp.AsposePDFFacades.TechnicalArticles.WinAPIIndexBitmapConverter.MAKERGB C# (CSharp) Method

MAKERGB() static private method

static private MAKERGB ( int r, int g, int b ) : uint
r int
g int
b int
return uint
        static uint MAKERGB(int r, int g, int b)
        {
            return ((uint)(b & 255)) | ((uint)((r & 255) << 8)) | ((uint)((g & 255) << 16));
        }