c# - WPF equivalent to GDI+'s ColorMatrix -
i noticed wpf has system.windows.media(.imaging) namespaces contain lot of same functionality system.drawing(.imagine), don't see equivalent colormatrix in gdi+. don't see way of doing color transformations in general. 1 exist? i'm happy using gdi+ curious.
wpf allows write custom pixel shaders. these more versatile colormatrix replicate pixel shader, plus executed on gpu. shazzam ships samples , simplifies process of writing them.
just note: wpf more suited creating user interfaces image editing, there's not more members of system.windows.media.imaging writeablebitmap , rendertargetbitmap. if after bitmap image editing features gdi+ , direct2d might more appropriate.
Comments
Post a Comment