BufferedImage in java larger than 2^31 pixels – Photoshop
I need to create a very large image in java and so far I've been using the java.awt.image.BufferedImage class. But it seems that this class stores it's pixels with an int as it can not go past 2^31 pixels. I've…