Created
October 23, 2017 20:35
-
-
Save memish/8fb715e4b9a961fc99f002f7a57c8adb to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
import javax.swing.JFrame; | |
public class ImageStarter extends JFrame { | |
public ImageStarter() | |
{ | |
add(new ImageFilter()); | |
setTitle("Image Filter"); | |
setDefaultCloseOperation(EXIT_ON_CLOSE); | |
setSize(800,500); | |
setLocationRelativeTo(null); | |
setVisible(true); | |
setResizable(false); | |
} | |
public static void main(String[] args) { | |
new ImageStarter(); | |
} | |
} | |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment