Fresh Off The Boat
Fresh Off The Boat
@andrewphahn Yes, I updated karma-phantomjs-launcher (1.0.2), and it works fine now. Thanks!
Any updates for this?
I want this too!
Have you fixed the issue?
I fixed the issue, check out this link: https://github.com/btcpayserver/btcpayserver-docker/issues/519
I had a similar issue (converting from `PNG` to `JPG`) but fixed it by using `BufferedImage.TYPE_INT_RGB` ``` BufferedImage thumbnailImg = Thumbnails.of(pngImage) .size(width, height) .outputFormat("jpg") .imageType(BufferedImage.TYPE_INT_RGB) // PNG -> JPG .asBufferedImage();...