image - Is there an equivalent to UIImageRenderingModeAlwaysTemplate in C#/UWP? -
one of handiest things working images in ios ability treat image transparency mask (looking @ alpha channel) , recolor image using tint color, allowing single image resource used generate solid color glyph in color dynamically @ runtime.
i'm wondering if there similar such ability in c# (preferably without third-party code) on uwp platform, or if i'm better off doing in photoshop , saving new resource.
i'm wondering if there similar such ability in c# (preferably without third-party code) on uwp platform, or if i'm better off doing in photoshop , saving new resource.
not familiar ios development, after googling think, there no such api avaiable in uwp afaik, microsoft lumia sdks can make easier although prefer not using third-party code.
if you're interest in package, here information. can use coloradjusteffect class adjust rgb color composition of image setting coloradjusteffect.blue
, coloradjusteffect.green
, coloradjusteffect.red
. range of these properties -1.0 1.0. can set color.r value between 0 , 255.
doing in photoshop , saving new resource method since there no standard api can directly work in uwp.
Comments
Post a Comment