在 GWT 中通过 JSNI 的帮助使用 mozImageSmoothingEnabled

发布于 2024-12-04 13:35:08 字数 320 浏览 2 评论 0原文

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 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

傲性难收 2024-12-11 13:35:08

好吧,我还没有尝试过,但我认为,你应该首先获取 Java 中的上下文:

Context ctx = canvas.getContext2d();
setMozImageSmooting(ctx, false);

然后实现

 public static native void setMozImageSmooting(Context ctx, boolean value) /*-{
    ctx.mozImageSmoothingEnabled = value;
 }-*/;

(如果它包含错误,请随意更正这个答案,因为我现在无法测试它。)

Well I haven't tried it, but I assume, you should first get the Context in Java:

Context ctx = canvas.getContext2d();
setMozImageSmooting(ctx, false);

Then implement

 public static native void setMozImageSmooting(Context ctx, boolean value) /*-{
    ctx.mozImageSmoothingEnabled = value;
 }-*/;

(Feel free to correct this answer, if it contains errors, because I can't test it right now.)

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文