问题 I've to make a parallel image processing script in java, the idea is to divide the images into tiles of any size, process them, and reassemble the final image. For now i've created a function: public static BufferedImage readImg (String path, int startx, int starty, int w, int h) that returns the region of an image as BufferedImage, then i'll process it and i want to place that region in the correct position of the final image. So i've tried to make a function writeImg that uses replacePixels