Is it possible to skew or distort an Image object in Java? I 'pull' one side of an image out, making it seem closer to me. (LIke 3D).

Any suggestions?

link|improve this question

possible duplicate of Java image transformation – trashgod Sep 9 '11 at 19:52
feedback

1 Answer

up vote 1 down vote accepted

Yes. Lots of ways but I would start with the Advanced Imaging API. It provides a ton of advanced imaging functionality.

But just to do the type of transform that you're talking about you might just need an Affine Transform. Sample results here for the previous link.

link|improve this answer
Good advice on JAI, but I don't think AffineTransform alone is sufficient, as suggested here. – trashgod Sep 9 '11 at 19:51
I'm not certain that it's the right transform either. That's why I added the image searrch result, for corroboration. – Paul Sasik Sep 9 '11 at 20:27
1  
Maybe PerspectiveTransform? – trashgod Sep 9 '11 at 20:56
Trashgod, PerspectiveTransform is what I needed. I need perspective and the straightness of the lines. Thanks. – Hidde Sep 13 '11 at 6:11
feedback

Your Answer

 
or
required, but never shown

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