我的导师给我发了这个代码,这个代码应该是正在进行的项目中不可或缺的一部分。事情是,它不起作用。
import java.io.File;
import java.io.FileOutputStream;
import java.io.IOException;
import java.awt.*;
import java.awt.image.BufferedImage;
import java.awt.image.Kernel;
import java.awt.image.ConvolveOp;
import com.sun.image.codec.jpeg.JPEGImageEncoder;
import com.sun.image.codec.jpeg.JPEGCodec;
import com.sun.image.codec.jpeg.JPEGEncodeParam;
import javax.swing.*;
public class ImageUtil {
public static void resize(File originalFile, File resizedFile, int newWidth, float quality) throws IOException{
if(quality <0||quality>1){
throw new IllegalArgumentException ("quality has to be between 0 and 1");
}
ImageIcon ii = new ImageIcon(originalFile.getCanonicalPath());
Image i = ii.getImage();
Image resizedImage = null;
int iWidth = i.getWidth (null);
int iHeight = i.getHeight(null);
if (iWidth > iHeight){
resizedImage = i.getScaledInstance(newWidth,(newWidth*iHeight)/iWidth, Image.SCALE_SMOOTH);
} else {
resizedImage = i.getScaledInstance((newWidth*iWidth)/iHeight,newWidth, Image.SCALE_SMOOTH);
}
Image temp = new ImageIcon (resizedImage).getImage();
BufferedImage bufferedImage = new BufferedImage (temp.getWidth(null), temp.getHeight(null),
BufferedImage.TYPE_INT_RGB);
// copy to a buffered image
Graphics g = bufferedImage.createGraphics();
g.setColor(Color.white);
g.fillRect(0,0,temp.getWidth(null), temp.getHeight(null)); // causea el error de ejecución?
g.drawImage(temp,0,0,null);
g.dispose();
float softenFactor = 0.05f;
float [] softenArray = {0, softenFactor,0, softenFactor, 1-(softenFactor*4), softenFactor,0, softenFactor,0};
Kernel kernel = new Kernel (3,3,softenArray);
ConvolveOp cOp = new ConvolveOp (kernel, ConvolveOp.EDGE_NO_OP,null);
bufferedImage = cOp.filter (bufferedImage,null);
FileOutputStream out = new FileOutputStream(resizedFile);
JPEGImageEncoder encoder = JPEGCodec.createJPEGEncoder(out);
JPEGEncodeParam param = encoder.getDefaultJPEGEncodeParam(bufferedImage);
param.setQuality(quality,true);
encoder.setJPEGEncodeParam(param);
encoder.encode(bufferedImage);
}
public static void main(String args[]) throws IOException {
File originalImage= new File ("/images/goya.jpg");
resize(originalImage,new File("/images/goyanuevotamanio.jpg"),350, 0.2f);
resize(originalImage, new File("/images/goyanuevotamanio.jpg"), 350, 1f);
}
}
他说代码应该能够调整高度和宽度,但他的调整大小方法:
public static void resize(File originalFile, File resizedFile, int newWidth, float quality)
缺少newHeight
参数。
抛出的RuntimeException说:
Exception in thread "main" java.lang.IllegalArgumentException: **Width (-1) and height (-1) cannot be <= 0**
at java.awt.image.DirectColorModel.createCompatibleWritableRaster(DirectColorModel.java:999)
at java.awt.image.BufferedImage.<init>(BufferedImage.java:312)
at ImageUtil.resize(ImageUtil.java:38)
at ImageUtil.main(ImageUtil.java:72)
Java Result: 1
我该如何更改?
答案 0 :(得分:1)
如果不分析代码以查看问题可能是什么,我可以说,如果目的是保持图像宽高比,则不需要新的高度参数。它始终是宽度的固定比率。
<强>更新强>
我已根据自己的测试图像运行代码,它确实按预期工作。当程序找不到您指定的源图像时,很可能导致您获得的错误。当我指定不存在的源图像时,我得到相同的错误。
尝试使用源图像的绝对路径(包括驱动器号等)。
更新2
在行之后添加以下代码..
ImageIcon ii = new ImageIcon(originalFile.getCanonicalPath());
if(ii.getImageLoadStatus() == MediaTracker.COMPLETE)
{
System.out.print("Load image ok\n");
}
else
{
System.out.print("Load image failed\n");
}
这将告诉您程序是否无法加载源图像。
答案 1 :(得分:1)
为什么你应用softten来调整大小它必须锐化Kernal -1 -2 -1 -2 12 + q -2 -1 -2 -1,其中一个tip q可能是28并且你没有应用调整大小版本的drawImage
(q = 36相当于你的F = 0.05锐化)
答案 2 :(得分:0)
根据堆栈跟踪判断此行引发异常:
BufferedImage bufferedImage = new BufferedImage (temp.getWidth(null), temp.getHeight(null), BufferedImage.TYPE_INT_RGB);
我认为这可能是因为temp.getWidth
和temp.getHeight
返回-1,因为图片尚未完成加载。
有一些教程和示例可用于在Web上使用Java中的图像。一个样本在这里http://snippets.dzone.com/posts/show/92。使用ImageObserver
查找代码。
答案 3 :(得分:0)
您必须为程序提供0到1之间的起始参数。 我做到了,效果很好。
答案 4 :(得分:0)
适应这个:
private void ResizeImage(Image img, double maxWidth, double maxHeight)
{
double srcWidth = img.Source.Width;
double srcHeight = img.Source.Height;
double resizeWidth = srcWidth;
double resizeHeight = srcHeight;
double aspect = resizeWidth / resizeHeight;
if (resizeWidth > maxWidth)
{
resizeWidth = maxWidth;
resizeHeight = resizeWidth / aspect;
}
if (resizeHeight > maxHeight)
{
aspect = resizeWidth / resizeHeight;
resizeHeight = maxHeight;
resizeWidth = resizeHeight * aspect;
}
img.Width = resizeWidth;
img.Height = resizeHeight;
}