在JLabel 上自動調整影像大小
使用JLabel 在JPanel 上顯示影像時,通常需要自動調整影像的大小以適合標籤的尺寸。預設情況下,JLabel 將保持原始影像的長寬比,並將其縮放以適合標籤的可用空間。
要實現自動影像大小調整,一種方法是利用擴充 JPanel 並處理縮放後的自訂元件影像渲染。這樣可以更好地控制縮放行為,例如指定是否適合或填充標籤內的圖像。
調整大小選項
有兩個主要的調整大小選項適用於JLabel 上的圖像:
適合
適合
public class ScalablePane extends JPanel { // ... (code omitted for brevity) @Override protected void paintComponent(Graphics g) { // Draw the scaled image super.paintComponent(g); if (scaled != null) { g.drawImage(scaled, x, y, this); } else if (master != null) { g.drawImage(master, x, y, this); } } // ... (code omitted for brevity) }
適合:影像將縮放以適應標籤的邊界,同時保持其原始長寬比。
填滿ScalablePane scalablePane = new ScalablePane(image); // Set the fit/fill option scalablePane.setToFit(true); // Fit image within the component // Add the component to your JPanel yourJPanel.add(scalablePane);
以上是如何自動調整 JLabel 中影像的大小?的詳細內容。更多資訊請關注PHP中文網其他相關文章!