I download a picture from a URL with the following method :
private void download(String srcUrl, String destination) throws Throwable {
File file = new File(destination);
if (!file.exists()) {
file.createNewFile();
BufferedOutputStream out = new BufferedOutputStream(new FileOutputStream(file));
BufferedInputStream in = new BufferedInputStream(new URL(srcUrl).openStream());
byte bytes[] = new byte[1024];
while (0 <= in.read(bytes, 0, 1024)) {
out.write(bytes);
}
out.close();
in.close();
}
}
On windows the resulting picture is a perfect copy of the original. However on my debian server, the picture is altered: the bottom right area of the picture is blur. It happens on every picture, and it is always on the same area of the picture.
Thanks a lot for any help!