为什么 javafx 会破坏我的半透明光标?

下面是两张巴布亚新几内亚的图片:

enter image description here enter image description here

在视觉上它们是完全相同的-唯一的区别是在一些像素中有半透明的背景(你可以下载图像来检查它)。

但是当我在 JavaFX 节点上使用这些图像作为图像光标时,我得到以下结果:

enter image description here enter image description here

第一个光标(没有部分透明像素)仍然清晰,但第二个会变形。

在与这个问题斗争了一段时间之后,我发现了解释这种差异混合模式的算法:

  • “期望”的方法(例如,您可以在这个浏览器中看到)是取每个通道的值之和,以 alpha 值加权: (1 - alpha) * background_color + alpha * foreground_color

  • “ JavaFXCursor”给出了不同的公式: (1 - alpha) * background_color + alpha^2 * foreground_color(注意正方形)。

我发现了这个失真,但是我不知道我做错了什么,也不知道如何纠正这个问题。

下面是我的测试程序的完整可运行源代码:

import javafx.application.Application;
import javafx.scene.Scene;
import javafx.scene.control.Button;
import javafx.scene.layout.StackPane;
import javafx.stage.Stage;
import javafx.scene.ImageCursor;
import javafx.scene.image.Image;


public class HelloWorld extends Application {


public static void main(String[] args) {
launch(args);
}


@Override
public void start(Stage primaryStage) {
System.out.println(ImageCursor.getBestSize(32, 32));


primaryStage.setTitle("Hello World!");


StackPane root = new StackPane();
root.setCursor(new ImageCursor(new Image("/test-cursor.png"), 0, 0));


primaryStage.setScene(new Scene(root, 100, 100));
primaryStage.show();
}
}

如何实现这种半透明光标的正确呈现?

1564 次浏览

更新 : 经过更深入的检查,JavaFX 似乎没有问题——问题似乎出在视频驱动程序的实现上。下面的代码可以在硬件、驱动程序和操作系统的某些组合上工作,但不能在所有的组合上工作。

不幸的是,目前最好的解决方案似乎是避免光标具有部分透明的白色或灰色像素。不过,部分透明的黑色像素是可以的。


我找到了解决这个问题的方法(在 JDK8和 Linux & Windows 上进行了测试)。它丑陋,需要反思,但似乎工作。下面的代码(在 Scala 语法中,但是可以很容易地适应 Java) :

  import com.sun.prism.PixelFormat
import javafx.scene.ImageCursor
import javafx.scene.image.{Image, WritableImage}


private def undoPremultipliedAlpha(image: Image): Image = {
// Fixes JavaFX bug with semi-transparent cursors -
// somewhere deep in JavaFX code they premultiply alpha
// on already premultiplied image, which screws up transparencies.
// This method attempts to counteract it by removing premultiplied alpha
// directly from bytes of internal JavaFX image.


def getPlatformImage(image: Image) = image.impl_getPlatformImage()


val platformImage = getPlatformImage(image)


val pixelFormat = platformImage.getClass.getDeclaredMethod("getPixelFormat").invoke(platformImage).asInstanceOf[PixelFormat]
if (pixelFormat != PixelFormat.BYTE_BGRA_PRE) {
println(s"wrong platform image pixel format (${pixelFormat}), unable to apply cursor transparency bug workaround")
} else {
val pixelBufferField = platformImage.getClass.getDeclaredField("pixelBuffer")
pixelBufferField.setAccessible(true)
val pixelBuffer = pixelBufferField.get(platformImage).asInstanceOf[java.nio.Buffer]
val pixelArray = pixelBuffer.array().asInstanceOf[Array[Byte]]
for (i <- 0 until pixelArray.length / 4) {


val alpha = (pixelArray(i * 4 + 3).toInt & 0xff) / 255.0
if (alpha != 0) {
pixelArray(i * 4) = math.min(255, math.max(0, ((pixelArray(i * 4).toInt & 0xff).toDouble / alpha))).toInt.toByte
pixelArray(i * 4 + 1) = math.min(255, math.max(0, ((pixelArray(i * 4 + 1).toInt & 0xff).toDouble / alpha))).toInt.toByte
pixelArray(i * 4 + 2) = math.min(255, math.max(0, ((pixelArray(i * 4 + 2).toInt & 0xff).toDouble / alpha))).toInt.toByte
}
}
}


image
}


def createImageCursor(resource: String, hotspotX: Int, hotspotY: Int): ImageCursor = {
new ImageCursor(
undoPremultipliedAlpha(
new Image(resource)),
hotspotX,
hotspotY
)
}