https://docs.oracle.com/javase/8/javafx/api/javafx/scene/image/PixelFormat.html具有有限的预定义像素格式集。 JavaFX默认使用ByteBgraPreInstance
用于图像和画布。我想将数据存储为整数数组,因此我需要定义IntBgraPreInstance
以避免像素转码。但是只定义了IntARGBPreInstance
。如果我使用该格式,每次将其放入Image
或Canvas
时,像素数据都会被转码。
如何使用IntBgraPre格式实现PifxelFormat抽象类?