Image Viewer
Dalam kesempatan kali ini, saya mendapatkan tugas untuk membuat imageviewer dengan Blue J. Saya akan membuat fitur filter didalamnya. Berikut saya sertakan source code dari masing-masing class yang telah saya buat: 1. Class OFImage import java.awt.*; import java.awt.image.*; import javax.swing.*; /** * class OFImage untuk mendefinisikan sebuah image dalam format object first. * * @author Lutfiyanti * @version 26112018 */ public class OFImage extends BufferedImage { /** * Create an OFImage copied from a BufferedImage. * @param image The image to copy. */ public OFImage(BufferedImage image) { super(image.getColorModel(), image.copyData(null), image.isAlphaPremultiplied(), null); } /** * Create an OFImage with specified size and unspecified content. * @param width The width of the image. * @param height The height of the im...