views:

262

answers:

3

I have a picture that I need to resize to a specific dimension and then move one of the corner to a place higher than before so the image is not rectangular anymore but some kind of polygon. Is there a library that could help me with this kind of image manipulation or does someone knows the name of this operation?

This is for a .NET application and there is an option for a six-points area also.

A: 

I don't know if it can help for certain but you might want to look at CxImage:

http://www.xdp.it/cximage.htm

Rob
+3  A: 

Have a look at here

tafa
+1  A: 

Anti-Grain Geometry is an interesting graphical library. There is also a .NET wrapper called CreativeDocs.NET.

spoulson