Android Xfermode说明
我是图形方面的新手,Android 文档中对 Xfermode 类有非常原始的解释。
在网上搜索,我发现只与以下术语相关:颜色混合、图像合成、关于传输模式算法的小解释、源颜色、目标颜色和操作颜色(如果我没记错的话,这意味着不透明颜色)。但这并没有给我足够的理解。
有没有人可以向我解释这个术语,或者更好地给我一个链接,让我可以研究他们的解释?
I'm newbie in graphics and there is really raw explanation of Xfermode
class in Android documentation for me.
Searching the web, I found only relation with such terms like: color blending, image compositing, small explanation about Transfer modes algorithms, source color, destenation color and op color (that means opacity color if I'm not wrong). But it didn't give me enough understanding.
Is there anybody who could explain me this terms, or better give me a link where I can study their explanation?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(3)
我发现这个非常好的解释:PorterDuff 模式和 Android
I found this really good explanation: PorterDuff Modes and Android
它基本上包含如何布局 2 个图像的不同布局。
为了更好地阅读,请尝试此链接:解释
It basically contains the different layouts of how 2 images can be laid out.
For better read try this link out to : explanation
Xfermode 用于描述两个位图的绘制关系,使用不同的 Xfermode 选项例如您可以绘制带有半径角的圆形图像或圆形图像,您可以在以下 android sdk 目录中找到示例:\your_sdk_directory\samples\android -8\ApiDemos\src\com\example\android\apis\graphics
Xfermode is use for describe the drawing relationship of two bitmaps, with different Xfermode option for example you can draw a round image with radius corners or a circle image, you can find the sample in the follow android sdk directory:\your_sdk_directory\samples\android-8\ApiDemos\src\com\example\android\apis\graphics