tags:

views:

680

answers:

2

hello, i want to implement 3D image manipulation(i.e., image edit,re-size,rotate,zoom-in & zoom-out). please give me your ideas as soon as possible.

+1  A: 

Silverlight 2.0 does not support true 3D. Silverlight 3 will support a perspective projection simulated 3D (think 3D images in PowerPoint).

For standard image manipulation you have a few ways to go. If you just want to do rotation and resizing for display purposes, you can set a RenderTransform on the image object. This does not actually change the bits in the image but just cases them to be drawn differently.

If you want to learn about full image processing, see this other post on StackOverflow:

Image Processing

Jared Bienz - MSFT
A: 

hello, thanks for quick reply i am new to silverlight. i am learning basics of silverlight now. but i need to implement image rotation and drop&drop from one position to another position as soon as possible. Can you just explain image rotation,drag&drop with corresponding code samples. Please as soon as possible.