SWTFXUtils#fromFXImage() no longer works
This is due to a change in PixelReader#getPixels() when the pixel format is getByteBgraInstance() (maybe others)
In the pixel byte array written by getPixels the color information used to be in this order:
offset + 0 = alpha = 0xFF000000
offset + 1 = red = 0x00FF0000
offset + 2 = green = 0x0000FF00
offset + 3 = blue = 0x000000FF
SWT Palette = 0xFF0000, 0xFF00, 0xFF = redMask, greenMask, blueMask
Now:
offset + 0 = blue = 0xFF000000
offset + 1 = green = 0x00FF0000
offset + 2 = red = 0x0000FF00
offset + 3 = alpha = 0x000000FF
SWT Palette = 0xFF00, 0xFF0000, 0xFF000000
I see that PixelReader#getPixels() and PixelWriter#setPixels() are consistent (the output of the first can be used as input for the second).
Thus, I suppose getPixel() had a bug in the past, which I "worked around" in the converter by using the wrong palette, and now that the bug is fixed the converter is broken.