MaRmAR
MaRmAR

Reputation: 136

AS3: Instagram-like image (bitmap) filters?

I'm wondering if there is some library (or maybe tutorial?) which can produce Instagram-like color tweaks for Bitmap/BitmapData objects in AS3.

ColorMatrix/ColorMatrixFilter will not be probably able to achieve such as results or yes?

Instragram filters

Upvotes: 3

Views: 6745

Answers (3)

tomergott
tomergott

Reputation: 74

Shader does work on mobile device, use CPU render and not GPU when you publish the apk file

Upvotes: 0

bukowski
bukowski

Reputation: 1943

Yes indeed there is a great library ready made by Eugene Zatepyakin get it here https://github.com/inspirit/GPUImage

Also check Adobe Pixel Bender Exchange, there are lots of filters, you might be able find something there

Upvotes: 3

Kodiak
Kodiak

Reputation: 5978

You should give a look at Pixel Bender, it will be much easier to create photo filters than AS3. You can still use these filters with Flash using a Shader. There are some tutorials for basic filters on the Internet. When you're fluent with the PB syntax you will be able to create almost any filter you can imagine.

For example, I used Pixel Bender to do this: http://bit.ly/pgaOU3

Upvotes: 2

Related Questions