my current code is normal WPF with a custom image view. I need to pan and zoom a very high resolution picture but of course it needs a lot of CPU-Power to do this.

My question is: if I change the control from a image view to something like directX will this increase my zoom and panning expirience a lot or isnt there such a big difference? (The graphic card we use is a Nvidia ion2 and the CPU is a intel atom with up to 2 Ghz)

link|improve this question

feedback

2 Answers

up vote 2 down vote accepted

2D acceleration is not as perfected as 3D is. See benchmarks here. I believe using the picture as a texture and controlling the camera for pan and zoom should increase performance a lot.

link|improve this answer
i have never done anything in directX but I think this would be an overkill (or is it?).. – Martin Mar 24 '11 at 10:15
wasnt even that hard.. thanks! wpf 3d works much better than the 2d one ;) – Martin Mar 24 '11 at 13:28
feedback

From my knowledge WPF uses DirectX to render its content, so I wouldn't think that would give you a high performance boost.

If you're having performance issues I would think the answer is in looking through your caching algorythm.

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.