So I am trying to copy a file to a new location this way:
FileReader in = new FileReader(strTempPath);
FileWriter out = new FileWriter(destTempPath);
int c;
while ((c = in.read()) != -1){
out.write(c);
}
in.close();
out.close();
Which works fine 99% of the time. Sometimes, if the image is rather small, <= 60x80px, the copied image comes out all distorted. Does anyone know what might be going on here? Is it the fault of the copy function here or should I be looking elsewhere?
Thanks.