[EditorBrowsableAttribute(EditorBrowsableState.Always)]
public static IEnumerable<PixelInfo> GetPixelInfo(
this Image sender
)
public:
[ExtensionAttribute]
[EditorBrowsableAttribute(EditorBrowsableState::Always)]
static IEnumerable<PixelInfo^>^ GetPixelInfo(
Image^ sender
)
[<ExtensionAttribute>]
[<EditorBrowsableAttribute(EditorBrowsableState.Always)>]
static member GetPixelInfo :
sender : Image -> IEnumerable<PixelInfo>
No code example is currently available or this language may not be supported.
[Missing <param name="sender"/> documentation for "M:DevCase.Extensions.ImageExtensions.ImageExtensions.GetPixelInfo(System.Drawing.Image)"]
No code example is currently available or this language may not be supported.
Dim color As Color = color.FromArgb(117, 228, 26)
Dim bmp As Bitmap = CreateSolidcolorBitmap(New Size(2, 2), color, PixelFormat.Format32bppArgb)
Dim pxInfoCol As IEnumerable(Of PixelInfo) = bmp.GetPixelInfo()
For Each pxInfo As PixelInfo In pxInfoCol
Console.WriteLine(String.Format("Position: {0}, Location: {1}, Color: {2}",
pxInfo.Position, pxInfo.Location.ToString(), pxInfo.Color.ToString()))
Next
No code example is currently available or this language may not be supported.
No code example is currently available or this language may not be supported.
No code example is currently available or this language may not be supported.
No code example is currently available or this language may not be supported.