Convert Color to 32-Bit ARGB Value
IronDrawing also has a feature of converting colors to 32-bit ARGB values for developers that seek to use the value in programming or simply want to know the value of a certain color.
To use this feature, create a variable of type System.Drawing.Color
and assign it to a color available in System.Drawing.Color
. From there, use the method .ToArgb()
on the variable to convert the color chosen to 32-bit ARGB value.