Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

I would like to do some standard color transformation on a Loader object (Which is used to display a picture) like Sepia, Black & White etc...

I'm currently using methods like this one :

var colorTransformer:ColorTransform = selectedItm.transform.colorTransform; 
colorTransformer.redMultiplier = 1/6;
colorTransformer.greenMultiplier = 1/5;
colorTransformer.blueMultiplier = 1/3;
selectedItm.transform.colorTransform = colorTransformer; 

But I dont know how obtain a Sepia or a Black and White effect. Is there a function to do this ? If not is there some kind of database which contains "multiplier" to obtains effect ?

share|improve this question
Hey I'm not aware of any way to directly choose one of these styles or of any dictionaries/databases of styles to values but this will probably help to figure it out yourself: kelvinluck.com/2009/04/colortransform-explorer – shaunhusain May 19 '12 at 18:42
Also black and white you'd just want to reduce the saturation to 0 at kevinlucks site he has a link in the comments about an HSL class. – shaunhusain May 19 '12 at 18:45
you should use a pixel bender filter for this: adobe.com/cfusion/exchange/… – TheDarkIn1978 May 19 '12 at 19:39

1 Answer

up vote 3 down vote accepted

You'll have to explore to fine tune a sepia filter:

var sepia = new flash.filters.ColorMatrixFilter();
sepia.matrix = [0.3930000066757202, 0.7689999938011169, 
0.1889999955892563, 0, 0, 0.3490000069141388, 
0.6859999895095825, 0.1679999977350235, 0, 0, 
0.2720000147819519, 0.5339999794960022, 
0.1309999972581863, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 1];

Online color transform generators can help for real time tuning:

Online matrix generator: http://www.onebyonedesign.com/flash/matrixGenerator/

enter image description here

share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

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