Web development , php , ajax , symfony, framework, zend
In: web resources
9 Mar 2010Board800 is an interactive whiteboard application which uses Red5 as the back-end media server, and flash (.swf) as the client front-end.
This blog delivers stylish and dynamic news for designers and web-developers on all subjects of design, ranging from: CSS, Ajax, Javascript, web design, graphics, typography, advertising & much more. Our goal is to help you communicate effectively on the web with an engaging website or functional interface.
3 Responses to Board800 – Flash based interactive whiteboard
Ashley
March 12th, 2010 at 2:56 pm
It should work. Maybe you currently have no Myspace messages? Then again, Blackberry Storms are know to act up. Well, at least mine does.
Javanoob
March 15th, 2010 at 10:32 pm
I update to make it more complete. Instead of drawing the fillOval on g2 just draw your whiteboard.
import java.awt.image.*;
import java.io.*;
import javax.imageio.*;
import javax.swing.*;
import java.awt.*;
public class Ship extends JPanel{
public void paint(Graphics g){
BufferedImage bi=new java.awt.image.BufferedImage(200, 200, Transparency.BITMASK);
g.fillOval(10,10,50,50);
Graphics2D g2=bi.createGraphics();
g2.setColor(Color.black);
g2.fillOval(10, 10, 50, 50);
try {
File file = new File("newimage.png");
ImageIO.write(bi, "png", file);
System.out.println("Saved");
} catch (Exception ex) {
System.out.println("didnt save");
}
}
public static void main(String[] args){
JPanel jp=new Ship();
JFrame jf=new JFrame();
jf.setPreferredSize(new Dimension(25,100));
jf.add(jp);
jf.pack();
jf.setVisible(true);
}
}
ctk
March 27th, 2010 at 12:20 pm
whiteboard?