FileDocCategorySizeDatePackage
Demo.javaAPI DocExample565Sat Nov 25 12:56:10 GMT 2000None

Demo

public class Demo extends Object
trivial text test of SPDF package

Fields Summary
Constructors Summary
Methods Summary
public static voidmain(java.lang.String[] argv)

		PrintWriter pout = new PrintWriter(System.out);
		PDF p = new PDF(pout);
		Page p1 = new Page(p);
		p1.add(new MoveTo(p, 100, 600));
		p1.add(new Text(p, "Hello world, live on the web."));
		p1.add(new Text(p, "Hello world, live on the web."));
		p.add(p1);
		p.setAuthor("Ian F. Darwin");
		p.writePDF();