在 GWT 中通过 JSNI 的帮助使用 mozImageSmoothingEnabled
Gecko 1.9.2 为 canvas 元素引入了 mozImageSmoothingEnabled 属性;如果此布尔值为 false,则缩放时图像不会平滑。该属性默认为 true。
ctx.mozImageSmoothingEnabled = false
我想在 GWT 中使用这个属性。 如何
public static void setMozImageSmooting(Canvas canvas, boolean value)
{
...
}
使用JSNI来实现?
Gecko 1.9.2 introduced the mozImageSmoothingEnabled property to the canvas element; if this Boolean value is false, images won't be smoothed when scaled. This property is true by default.
ctx.mozImageSmoothingEnabled = false
I want to use this property in GWT.
How can I implement
public static void setMozImageSmooting(Canvas canvas, boolean value)
{
...
}
by using JSNI?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
好吧,我还没有尝试过,但我认为,你应该首先获取 Java 中的上下文:
然后实现
(如果它包含错误,请随意更正这个答案,因为我现在无法测试它。)
Well I haven't tried it, but I assume, you should first get the Context in Java:
Then implement
(Feel free to correct this answer, if it contains errors, because I can't test it right now.)