我正在使用 Visual Studio 2017 RC 中的 Visual Basic.NET 进行编程。
在我的表单中,我使用名为“PictureBox”的图片框。我正在尝试使用 PictureBox.Image.Flags 属性获取有关图片框中显示的图片的信息,以便用户可以查看这些信息
但使用此属性似乎非常困难,因为它返回的值是其他值的总和。
使用此属性的正确和最有效的方法是什么?如果它不起作用,是否有其他方式表示图像标记信息而不使用此属性?
答案 0 :(得分:0)
测试单个标志使用和功能
echo preg_filter("/^(.*?[aeiouy]+)/i","$1 $1 $0",$argn);
echo preg_filter(~ðíÎÐı└ñ×ÜûÉèåóÈÍðû,~█╬▀█╬▀█¤,$argn); # Encoded
或倍数
If (PictureBox1.Image.Flags And System.Drawing.Imaging.ImageFlags.ColorSpaceGray) <> 0 Then
<强>替代强>
Imports System.Drawing.Imaging.ImageFlags
If (PictureBox1.Image.Flags And (ColorSpaceGray + ColorSpaceRgb)) <> 0 Then
或倍数
Imports System.Drawing.Imaging
Imports System.Drawing.Imaging.ImageFlags
If CType(PictureBox1.Image.Flags, ImageFlags).HasFlag(ColorSpaceGray) then