为什么javafx要修改我的半透明光标?

2022-08-31 13:41:27

以下是两张 PNG 图像:

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

  • “JavaFX Cursor”给出了不同的公式:(注意正方形)。(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();
    }
}

如何正确呈现此类半透明光标?


答案 1

更新:经过更深入的检查,JavaFX似乎没有故障 - 故障似乎在视频驱动程序实现中。下面的代码确实适用于硬件,驱动程序和操作系统的某些组合 - 但不是全部。

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


我找到了一种方法来解决这个问题(在JDK 8和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
    )
  }



答案 2

推荐