Click here to Skip to main content
Licence CPOL
First Posted 2 May 2009
Views 24,151
Downloads 645
Bookmarked 49 times

Free Image Transformation

By YLS CS | 10 May 2009
Introducing a method to transform an image freely with C#

1

2
1 vote, 5.6%
3
3 votes, 16.7%
4
14 votes, 77.8%
5
4.84/5 - 18 votes
1 removed
μ 4.71, σa 1.03 [?]
picture.JPG

Introduction

I have written a small but powerful C# application that can scale, rotate, skew and distort an image. This program includes a user control Canvas and a class FreeTransform. Canvas can keep the picture in the center of window always, and let the user zoom the image by mouse wheel. You can pick up the corner of the picture by mouse left button and move it freely in Canvas. Image transformation is done by the class FreeTransform. When you set its Bitmap and FourCorners, you can get the transformed Bitmap. If you like high quality of picture, you can set IsBilinearInterpolation to true. How does it work? The following diagram demonstrates the key to this method:

The shortest distances of point P to image borders are w1, w2, h1 and h2. The position of point P on the original image is supposed to be at:

([w1/(w1+w2)]*imageWidth, [h1/(h1+h2)]*imageHeight) 

Then the colors at...

([w1/(w1+w2)]*imageWidth, [h1/(h1+h2)]*imageHeight) 

... on the original image were put on the point P and thus the result.
To calculate of the distances, the vector cross product was used:

dab = Math.Abs((new YLScsDrawing.Geometry.Vector(vertex[0], srcPt)).CrossProduct(AB));
dbc = Math.Abs((new YLScsDrawing.Geometry.Vector(vertex[1], srcPt)).CrossProduct(BC));
dcd = Math.Abs((new YLScsDrawing.Geometry.Vector(vertex[2], srcPt)).CrossProduct(CD));
dda = Math.Abs((new YLScsDrawing.Geometry.Vector(vertex[3], srcPt)).CrossProduct(DA));

ptInPlane.X = (float)(srcW * (dda / (dda + dbc)));ptInPlane.Y = 
					(float)(srcH*(dab/(dab+dcd)));

Thanks for trying it!

History

  • 2nd May, 2009: Initial post
  • 8th May, 2009: Added Config and Save functions

License

This article, along with any associated source code and files, is licensed under The Code Project Open License (CPOL)

About the Author

YLS CS



United States United States

Member


Sign Up to vote   Poor Excellent
Add a reason or comment to your vote: x
Votes of 3 or less require a comment

Comments and Discussions

 
You must Sign In to use this message board. (secure sign-in)
 
Search this forum  
 FAQ
    Noise  Layout  Per page   
  Refresh
QuestionAs previous post PinmemberTim Grindley5:54 5 Nov '11  
GeneralMy vote of 5 PinmemberTim Grindley5:50 5 Nov '11  
GeneralAwesome PinmemberScrappyPup18:59 23 Sep '10  
Questiontransforming from points PinmemberiLens5:50 8 Jul '10  
GeneralThank this program! PinmemberJiYC4185:54 28 Nov '09  
Generalnot implementing rotation Pinmembermiadmahmud1:40 14 Jun '09  
GeneralExcellent Pinmemberemarti10:30 10 May '09  
GeneralGreat solution! Pinmemberdherrmann23:50 5 May '09  
GeneralRe: Great solution! PinmemberYLS CS3:22 6 May '09  
GeneralRe: Great solution! Pinmemberdherrmann21:44 11 May '09  
GeneralRe: Great solution! PinmemberYLS CS5:16 12 May '09  
GeneralRe: Great solution! Pinmemberdherrmann22:04 12 May '09  
GeneralRe: Great solution! PinmemberYLS CS3:01 13 May '09  
GeneralRe: Great solution! Pinmemberdherrmann23:17 10 Jun '09  
GeneralIdea PinmemberGraGra_3314:27 2 May '09  
GeneralRe: Idea PinmemberYLS CS3:12 3 May '09  

General General    News News    Suggestion Suggestion    Question Question    Bug Bug    Answer Answer    Joke Joke    Rant Rant    Admin Admin   

Use Ctrl+Left/Right to switch messages, Ctrl+Up/Down to switch threads, Ctrl+Shift+Left/Right to switch pages.

Permalink | Advertise | Privacy | Mobile
Web04 | 2.5.120206.1 | Last Updated 10 May 2009
Article Copyright 2009 by YLS CS
Everything else Copyright © CodeProject, 1999-2012
Terms of Use
Layout: fixed | fluid