Java에서 크기 조정 후 낮은 이미지 품질
이미지를 약 300x300에서 60x60으로 줄이는 이미지 크기 조정 스크립트에서 결과 이미지 품질은 만족스럽지 않습니다.
품질을 향상시키는 한 가지 방법은 "분할 및 정복" 접근 방식을 사용합니다. 이 방법은 이미지 크기를 한 단계로 조정하는 대신 원하는 크기에 도달할 때까지 50%씩 점진적으로 크기를 조정합니다. 이러한 점진적인 크기 조정 프로세스는 품질을 유지하는 데 도움이 됩니다.
다음 Java 코드는 이미지 크기 조정에 대한 분할 정복 접근 방식을 보여줍니다.
import java.awt.image.BufferedImage; import java.io.File; import java.io.IOException; import javax.imageio.ImageIO; public class DivideAndConquerImageResize { public static void main(String[] args) { try { // Read the original image BufferedImage original = ImageIO.read(new File("master.jpg")); // Scale the image in 50% increments BufferedImage scaled = original; while (scaled.getWidth() > 60 || scaled.getHeight() > 60) { scaled = getScaledInstanceToFit(scaled, new Dimension(scaled.getWidth() / 2, scaled.getHeight() / 2)); } // Write the scaled image to a file ImageIO.write(scaled, "jpg", new File("scaled.jpg")); } catch (IOException e) { e.printStackTrace(); } } public static BufferedImage getScaledInstanceToFit(BufferedImage img, Dimension size) { float scaleFactor = getScaleFactorToFit(img, size); return getScaledInstance(img, scaleFactor); } public static float getScaleFactorToFit(BufferedImage img, Dimension size) { float scale = 1f; if (img != null) { int imageWidth = img.getWidth(); int imageHeight = img.getHeight(); scale = getScaleFactorToFit(new Dimension(imageWidth, imageHeight), size); } return scale; } public static float getScaleFactorToFit(Dimension original, Dimension toFit) { float scale = 1f; if (original != null && toFit != null) { float dScaleWidth = getScaleFactor(original.width, toFit.width); float dScaleHeight = getScaleFactor(original.height, toFit.height); scale = Math.min(dScaleHeight, dScaleWidth); } return scale; } public static float getScaleFactor(int iMasterSize, int iTargetSize) { float scale = 1; if (iMasterSize > iTargetSize) { scale = (float) iTargetSize / (float) iMasterSize; } else { scale = (float) iTargetSize / (float) iMasterSize; } return scale; } public static BufferedImage getScaledInstance(BufferedImage img, double dScaleFactor) { BufferedImage imgBuffer = null; imgBuffer = getScaledInstance(img, dScaleFactor, RenderingHints.VALUE_INTERPOLATION_BILINEAR, true); return imgBuffer; } protected static BufferedImage getScaledInstance(BufferedImage img, double dScaleFactor, Object hint, boolean higherQuality) { int targetWidth = (int) Math.round(img.getWidth() * dScaleFactor); int targetHeight = (int) Math.round(img.getHeight() * dScaleFactor); int type = (img.getTransparency() == Transparency.OPAQUE) ? BufferedImage.TYPE_INT_RGB : BufferedImage.TYPE_INT_ARGB; BufferedImage ret = (BufferedImage) img; if (targetHeight > 0 || targetWidth > 0) { int w, h; if (higherQuality) { w = img.getWidth(); h = img.getHeight(); } else { w = targetWidth; h = targetHeight; } do { if (higherQuality && w > targetWidth) { w /= 2; if (w < targetWidth) { w = targetWidth; } } if (higherQuality && h > targetHeight) { h /= 2; if (h < targetHeight) { h = targetHeight; } } BufferedImage tmp = new BufferedImage(Math.max(w, 1), Math.max(h, 1), type); Graphics2D g2 = tmp.createGraphics(); g2.setRenderingHint(RenderingHints.KEY_INTERPOLATION, hint); g2.drawImage(ret, 0, 0, w, h, null); g2.dispose(); ret = tmp; } while (w != targetWidth || h != targetHeight); } else { ret = new BufferedImage(1, 1, type); } return ret; } }
이 방법은 이미지 크기를 점진적으로 조정하여 영향을 효과적으로 줄입니다. 압축 아티팩트를 제거하고 이미지 선명도를 유지합니다.
위 내용은 Java에서 크기를 조정한 후 이미지 품질을 어떻게 향상시킬 수 있습니까?의 상세 내용입니다. 자세한 내용은 PHP 중국어 웹사이트의 기타 관련 기사를 참조하세요!