I have a Pan Card image, and when I try to rotate it 45 degrees and save it, I get a cropped image. Code for image rotation:
BufferedImage dimg = new BufferedImage(w, h, img.getType()); Graphics2D g = dimg.createGraphics(); g.setRenderingHint(RenderingHints.KEY_ANTIALIASING, // Anti-alias! RenderingHints.VALUE_ANTIALIAS_ON); g.rotate(Math.toRadians(angle), w / 2, h / 2); g.drawImage(img, null, 0, 0);
source share