我有以下java方法,它成功创建了png文件:
TakesScreenshot scrShot = ((TakesScreenshot) webdriver);
File SrcFile = scrShot.getScreenshotAs(OutputType.FILE);
File DestFile = new File(fileWithPath + featureFileName + ".png");
// BufferedImage img = ImageIO.read(SrcFile);
// ImageIO.write(img, "jpg", new File(fileWithPath + featureFileName + ".jpg"));
FileUtils.copyFile(SrcFile, DestFile);
我正在尝试使用 2 条注释行将图像转换为 jpg,但jpg
没有生成输出文件。没有错误。无文件。我不知道为什么。提前感谢您的帮助。