Atlanta Custom Software Development 

 
   Search        Code/Page
 

User Login
Email

Password

 

Forgot the Password?
Services
» Web Development
» Maintenance
» Data Integration/BI
» Information Management
Programming
  Database
Automation
OS/Networking
Graphics
Links
Tools
» Regular Expr Tester
» Free Tools

DrawFlipImage - flipping an image on one or both axes

Total Hit ( 3200)

Rate this article:     Poor     Excellent 

 Submit Your Question/Comment about this article

Rating


 


Click here to copy the following block
' Flip an image on one or both axes. The x and y
' parameters are the coordinates of the upper-left point
' Note: requires Imports System.Drawing.Imaging
'
' Example:
'  Dim gr As Graphics = Me.CreateGraphics
'  gr.Clear(Color.White)
'  Dim bmp As New Bitmap("logo.bmp")
'  DrawFlipImage(gr, bmp, 100, 20, False, False)
'  DrawFlipImage(gr, bmp, 300, 20, True, False)
'  DrawFlipImage(gr, bmp, 100, 120, False, True)
'  DrawFlipImage(gr, bmp, 300, 120, True, True)
'  bmp.Dispose()
'  gr.Dispose()

Sub DrawFlipImage(ByVal gr As Graphics, ByVal bmp As Bitmap, ByVal x As Single, _
  ByVal y As Single, ByVal flipX As Boolean, ByVal flipY As Boolean)
  ' Start with values of parallelogram's vertex as if no flipping occurs.
  Dim x0 As Single = x
  Dim y0 As Single = y
  Dim x1 As Single = x + bmp.Width
  Dim y1 As Single = y
  Dim x2 As Single = x
  Dim y2 As Single = y + bmp.Height

  ' Account for horizontal flipping.
  If flipX Then
    x0 = x + bmp.Width
    x1 = x
    x2 = x0
  End If
  ' Account for vertical flipping.
  If flipY Then
    y0 = y + bmp.Height
    y1 = y0
    y2 = y
  End If
  ' Create the points array.
  Dim points() As Point = {New Point(x0, y0), New Point(x1, y1), New Point(x2, _
    y2)}
  ' Draw the flipped image
  gr.DrawImage(bmp, points)
End Sub


Submitted By : Nayan Patel  (Member Since : 5/26/2004 12:23:06 PM)

Job Description : He is the moderator of this site and currently working as an independent consultant. He works with VB.net/ASP.net, SQL Server and other MS technologies. He is MCSD.net, MCDBA and MCSE. In his free time he likes to watch funny movies and doing oil painting.
View all (893) submissions by this author  (Birth Date : 7/14/1981 )


Home   |  Comment   |  Contact Us   |  Privacy Policy   |  Terms & Conditions   |  BlogsZappySys

© 2008 BinaryWorld LLC. All rights reserved.