Indrek Kõue
Indrek Kõue

Reputation: 6449

Java photo manipulation library (want to achive something like Apple Photo booth stretch effect)

I want to achive something like the Apple Photo booth stretch effect on android: example

Is there already a Java library which implements this kind of manipulation or do I have to write one from scrap (start manually manipulateing pixels on bitmap etc)? If I have to write it from scrap, how would the general logic would look like?

Upvotes: 1

Views: 1019

Answers (1)

Anthony
Anthony

Reputation: 1333

I would advise you the jhlabs filters API: http://www.jhlabs.com/ip/filters/index.html

with the Wrap effect: http://www.jhlabs.com/ip/filters/WarpFilter.html

I've used it for my java software http://decoration.japplis.com which is a JavaSE software. It may need small changes for Android (it's open source).

Upvotes: 1

Related Questions