Tagged Questions

0
votes
2answers
478 views

colorTransform equivalent color matrix

I'm trying to convert a simple FXG to SVG. The conversion is pretty much straightforward, but I'm encountering a color manipulation problem. The FXG have a base shades of gray path, and I apply a ...
0
votes
1answer
521 views

Make Black darker using colorMatrix in Android

I currently have the following code to get a Bitmap object, strip the color and then turn it red which works but I need the darker elements of the image to come through as darker, at the moment it's ...
0
votes
1answer
37 views

How can I reverse the colors of an image with the tool ColorMatrix?

What values do I have to put in the Matrix? Dim clMatriz As Imaging.ColorMatrix = New Imaging.ColorMatrix(New Single()() _ {New Single() {¿?, 0, 0, 0, 0}, _ New Single() {0, ¿?, 0, 0, 0}, _ New ...
0
votes
2answers
815 views

How to continuously fade a BitmapData to a certain color?

I'm drawing stuff on a bitmapData and I need to continuously fade every pixel to 0x808080 while still drawing (its for a DisplacementMapFilter)... I think this illustrates my problem: ...