Skip to content

Instantly share code, notes, and snippets.

@memish
Created October 23, 2017 20:35
Show Gist options
  • Save memish/8fb715e4b9a961fc99f002f7a57c8adb to your computer and use it in GitHub Desktop.
Save memish/8fb715e4b9a961fc99f002f7a57c8adb to your computer and use it in GitHub Desktop.
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