本文整理汇总了VB.NET中System.Drawing.Imaging.ImageAttributes.SetThreshold方法的典型用法代码示例。如果您正苦于以下问题:VB.NET ImageAttributes.SetThreshold方法的具体用法?VB.NET ImageAttributes.SetThreshold怎么用?VB.NET ImageAttributes.SetThreshold使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类System.Drawing.Imaging.ImageAttributes 的用法示例。
在下文中一共展示了ImageAttributes.SetThreshold方法的2个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于我们的系统推荐出更棒的VB.NET代码示例。
示例1: SetThresholdExample
Public Sub SetThresholdExample(ByVal e As PaintEventArgs)
' Open an Image file, and draw it to the screen.
Dim myImage As Image = Image.FromFile("Camera.jpg")
e.Graphics.DrawImage(myImage, 20, 20)
' Create an ImageAttributes object, and set its color threshold.
Dim imageAttr As New ImageAttributes
imageAttr.SetThreshold(0.7F)
' Draw the image with the colors bifurcated.
Dim rect As New Rectangle(300, 20, 200, 200)
e.Graphics.DrawImage(myImage, rect, 0, 0, 200, 200, _
GraphicsUnit.Pixel, imageAttr)
End Sub
开发者ID:VB.NET开发者,项目名称:System.Drawing.Imaging,代码行数:15,代码来源:ImageAttributes.SetThreshold
示例2: SetThreashold
' 导入命名空间
Imports System.Drawing
Imports System.Drawing.Imaging
Imports System.Drawing.Drawing2D
Imports System.Windows.Forms
public class SetThreashold
public Shared Sub Main
Application.Run(New Form1)
End Sub
End class
public class Form1
Inherits System.Windows.Forms.Form
Protected Overrides Sub OnPaint(ByVal e As PaintEventArgs)
Dim g As Graphics = Me.CreateGraphics()
g.Clear(Me.BackColor)
Dim lClr As Color = Color.FromArgb(245, 0, 0)
Dim uClr As Color = Color.FromArgb(255, 0, 0)
Dim ImgAttr As New ImageAttributes
ImgAttr.SetThreshold(0.7F, ColorAdjustType.Default)
Dim curImage As Image = Image.FromFile("yourfile.jpg")
g.DrawImage(curImage, 0, 0)
Dim rect As New Rectangle(0, 0, 400, 400)
g.DrawImage(curImage, rect, 0, 0, 400, 400, GraphicsUnit.Pixel, ImgAttr)
' Dispose
g.Dispose()
End Sub
Public Sub New()
MyBase.New()
Me.AutoScaleBaseSize = New System.Drawing.Size(5, 13)
Me.ClientSize = New System.Drawing.Size(292, 273)
Me.StartPosition = System.Windows.Forms.FormStartPosition.CenterScreen
End Sub
End Class
开发者ID:VB程序员,项目名称:System.Drawing.Imaging,代码行数:42,代码来源:ImageAttributes.SetThreshold
注:本文中的System.Drawing.Imaging.ImageAttributes.SetThreshold方法示例由纯净天空整理自Github/MSDocs等源码及文档管理平台,相关代码片段筛选自各路编程大神贡献的开源项目,源码版权归原作者所有,传播和使用请参考对应项目的License;未经允许,请勿转载。 |
请发表评论