我正在编写一个有趣的图像库,但遇到了一个我似乎无法解决的问题。这个类非常简单:拍照,处理,通过 JFrame 显示,最后保存为 BufferedImage (javax.imageio.ImageIO)。这是我的照片通过 JFrame 的样子(这是我在 Drustan 星云上的 ColorEnhance 课程):
这是保存的版本(一个 png,但 ImageIO.write() 支持的所有类型看起来都一样):
我不确定变化发生在哪里,但是当我通过我的模糊方法运行它时,整行出现在 png 中......无论如何,这里有一些代码:
public void writeToFile(BufferedImage finalPic, String nameToAppend)
{
String temp=fileName.replace(".", nameToAppend+".");
String ext=fileName.substring(fileName.indexOf(".")+1);
File file=new File(temp);
try
{
ImageIO.write(finalPic, ext.toUpperCase(), file);
System.out.println("Successfully saved to: "+temp);
} catch (Exception e) { e.getMessage(); }
}
public void displayImage(String titleName)
{
ImageIcon icon = new ImageIcon(newPic);
JFrame frame = new JFrame(titleName);
JLabel label = new JLabel(icon);
label.setIcon(icon);
frame.getContentPane().add(label, BorderLayout.CENTER);
frame.setSize(WIDTH, HEIGHT+22);
frame.setVisible(true);
}
最后一件事是,对于某些处理类,保存比其他类更好,如果您需要查看更多代码,请询问,谢谢