本文整理汇总了C#中PixelFormat.Equals方法的典型用法代码示例。如果您正苦于以下问题:C# PixelFormat.Equals方法的具体用法?C# PixelFormat.Equals怎么用?C# PixelFormat.Equals使用的例子?那么, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类PixelFormat
的用法示例。
在下文中一共展示了PixelFormat.Equals方法的2个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的C#代码示例。
示例1: SupportsPixelFormat
/// <summary>
/// Checks if we support the pixel format
/// </summary>
/// <param name="pixelformat">PixelFormat to check</param>
/// <returns>bool if we support it</returns>
public static bool SupportsPixelFormat(PixelFormat pixelformat)
{
return (pixelformat.Equals(PixelFormat.Format32bppArgb) ||
pixelformat.Equals(PixelFormat.Format32bppRgb) ||
pixelformat.Equals(PixelFormat.Format24bppRgb));
}
示例2: LockBits
public BitmapData LockBits(Rectangle rectangle, ImageLockMode readOnly, PixelFormat pixelFormat)
{
switch (pixelFormat)
{
case PixelFormat.Alpha:
case PixelFormat.PAlpha:
case PixelFormat.Indexed:
case PixelFormat.Undefined:
throw new ArgumentException("LockBits method only applicable to pixel formats with prefix Format",
"pixelFormat");
}
if (!pixelFormat.Equals(_pixelFormat))
throw new ArgumentException(String.Format("Bitmap.PixelFormat = {0}", _pixelFormat), "pixelFormat");
return new BitmapData(_width, _height, _stride, _pixelFormat, _scan0);
}