ImageAttributes.SetWrapMode : ImageAttributes « System.Drawing.Imaging « VB.Net by API






ImageAttributes.SetWrapMode

  

Imports System.Drawing
Imports System.Drawing.Imaging
Imports System.Drawing.Drawing2D
Imports System.Windows.Forms

public class SetWrapMode
   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 ImgAttr As New ImageAttributes

        ImgAttr.SetWrapMode(WrapMode.Tile)

        Dim curImage As Image = Image.FromFile("yourfile.jpg")

        Dim rect As New Rectangle(0, 0, 400, 400)
        g.DrawImage(curImage, rect, 0, 0, 400, 400, GraphicsUnit.Pixel, ImgAttr)

        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

   
    
  








Related examples in the same category

1.ImageAttributes.ClearColorKey
2.ImageAttributes.SetBrushRemapTable
3.ImageAttributes.SetColorMatrix
4.ImageAttributes.SetGamma
5.ImageAttributes.SetRemapTable
6.ImageAttributes.SetThreshold