I am trying to create an image filter, what i want to know is, is it possible to apply a color filter to an image and then save that image with the color filters applied ? If yes then how. Right now I have been able to apply the color filter to an image using the following code. But what is want is to save that image and have it display with the color filter.
Container(
child: Stack(
children: <Widget>[
ColorFiltered(
colorFilter: ColorFilter.mode(Colors.black87, BlendMode.color),
child: Image(
image: FileImage(
this.images[index]
),
),
),
)
]
)
);
What is want is some kind of a function like this, which convert the original image to the one with the color filter applied on it.
void transformImage(String path) {
// do something here ...
}