자바 imageViewer
Image size : 556 Ⅹ 476 import java.awt.*; import java.awt.image.*; import java.awt.event.*; import java.io.File; import javax.swing.JOptionPane; public class ImgViewer extends Frame implements ActionListener { Image curImg; Panel p; Button b0, b1, b2, b3, b4, b5, b6, b7; Dimension d; int command; static final int SHOW_NORM = 0; static final int SHOW_PART = 1; static final int SHOW_BIG = 2; stati..