
04-18-2008, 01:36 AM
|
|
Member
|
|
Join Date: Nov 2007
Posts: 46
|
|
deleting multiple colors
hi,
there is a function to delete a color this way:
Quote:
var format = "png files(*.png)|*.png|";
var path = Dialogs.fileSave(format, "", "");
image.save(path, 1, 0xFFFFFF);
|
but is there a way to delete multiple colors??
that'd be nice 
something like this:
Quote:
var f = "png files(*.png)|*.png|";
var path = Dialogs.fileSave(f, "", "");
image.save(path, 1, 0xFFFFFF, 0x123456, 0xFFF123);
|
|