Membuka Image Dengan Java v1.0
Untuk tugas kali ini, saya akan membuat sebuah program untuk dapat menampilkan image sebuah gambar. Selain dapat menampilkan gambar, program saya juga dapat membuat gambar lebih terang dan lebih gelap. Berikut merupakan class yang ada : 1. Image Viewer 2. Image File Manager 3. Image Panel 4. OFImage Berikut merupakan source code program saya: 1. Image viewer import java.awt.*; import java.awt.event.*; import java.awt.image.*; import javax.swing.*; import java.io.File; /** * ImageViewer is the main class of the image viewer application. It builds and * displays the application GUI and initialises all other components. * * To start the application, create an object of this class. * * @author Krisna Badru W (05111740000048) * @version 1.0 */ public class ImageViewer { // static fields: private static final String VERSION = "Version 1.0"; private static JFileChooser fileChooser = new JF...