在从JFrame中捕获图像后,我在java中使用BufferedImage
。 我需要一些方法来锐化图像,这样当它放大时它看起来不像是像素化。这就是它保持相同图像尺寸的必要条件。
这是我用来捕捉图像的代码。
private void grabScreenShot() throws Exception
{
BufferedImage image = (BufferedImage)createImage(getSize().width, getSize().height);
paint(image.getGraphics());
try{
//ImageIO.write(image, "jpg", new File(TimeTable.path+"\\TimeLine.jpg"));
ImageIO.write(image, "jpg", new File("C:\\Users\\"+TimeTable.user+"\\AppData\\TimeLineMacroProgram\\TimeLine.jpg"));
//ImageIO.write(image, "jpg", new File("C:\\ProgramData\\TimeLineMacroProgram\\TimeLine.jpg"));
System.out.println("Image was created");
}
catch (IOException e){
System.out.println("Had trouble writing the image.");
throw e;
}
}
这是它创造的形象
答案 0 :(得分:4)
JPG不适合屏幕截图。它专为复杂和彩色图片而设计,其中压缩期间的信息丢失几乎可以忽略不计,例如照片。对于屏幕截图,您应该使用GIF,或者更好的是使用PNG。
ImageIO.write(image, "png", new File("C:\\Users\\"+TimeTable.user+"\\AppData\\TimeLineMacroProgram\\TimeLine.png"));
你只会得到一个更大的文件,但是你会得到像素完美的清晰度和细节,这对于JPG来说根本不可能。
答案 1 :(得分:1)
我认为这是因为你把它写成JPEG文件。
我将格式更改为无损的格式,否则强制编写者不要通过访问和更改其ImageWriteParam来使用压缩。