This question is unlikely to help any future visitors; it is only relevant to a small geographic area, a specific moment in time, or an extraordinarily narrow situation that is not generally applicable to the worldwide audience of the internet. For help making this question more broadly applicable, visit the help center。
6年前关闭。
我在这里搜索了一下,找到了答案,但是找到的答案并没有帮助我,所以我创建了一个新帖子。
错误在这里:
//错误
有什么帮助吗?
6年前关闭。
我在这里搜索了一下,找到了答案,但是找到的答案并没有帮助我,所以我创建了一个新帖子。
错误在这里:
private BufferedImage image = new BufferedImage(WIDTH, HEIGHT,BufferedImage.TYPE_INT_RGB);
private int[] pixels =((DataBufferInt)image.getRaster().getDataBuffer()).getData();
//错误
DataBufferInt cannot be resolved to a variable
有什么帮助吗?
最佳答案
请输入DataBufferInt
:
import java.awt.image.DataBufferInt;
07-26 09:42