Skip to content

Instantly share code, notes, and snippets.

View finnkuusisto's full-sized avatar

Finn Kuusisto finnkuusisto

View GitHub Profile
@finnkuusisto
finnkuusisto / gist:3352961
Created August 14, 2012 20:55
Display image quickly for review in Java
BufferedImage image = ImageIO.read(new File("./image.jpg"));
Icon icon = new ImageIcon(image);
JOptionPane.showMessageDialog(null, "", "title", JOptionPane.INFORMATION_MESSAGE, icon);
@finnkuusisto
finnkuusisto / MixerTest.java
Created April 28, 2012 18:26
Test Java Sound Mixer Availability (for TinySound library)
import javax.sound.sampled.AudioFormat;
import javax.sound.sampled.AudioSystem;
import javax.sound.sampled.DataLine;
import javax.sound.sampled.Line;
import javax.sound.sampled.LineUnavailableException;
import javax.sound.sampled.Mixer;
import javax.sound.sampled.SourceDataLine;
public class MixerTest {