我有精灵图片
http://spriters-resource.com/pc_computer/maplestory/sheet/21909
我想首先将整个图像加载为BufferedImage,我发现这很简单。
BufferedImage image_ = ImageIO.read(file_);
现在我有了这个缓冲的图像,我希望能够切片和切块。我想尝试编写一个返回此缓冲图像片段的函数
public BufferedImage getImage(int x, int y, int width, int height)
但我完全不知道如何将BufferedImage切割成碎片。什么是最好的方式,或者你会建议其他什么想法?
任何帮助都会受到赞赏,这让我疯狂。