Example applications of the JVG package
=======================================

All the example applications have their corresponding .BAT file, which 
is called "GO"<name of application>. On other systems than Windows, 
just execute the commands that correspond to the ones executed by the 
.BAT files. 

RecordingTest.java
------------------
Does a certain number of drawing operations, including pixmap image 
drawing, and records them into a GraphicsRecording. The recording is 
saved to the file whose path is given as input argument. 

ReplayTest.java
---------------
Replays the JVG file whose path is given as input argument. GoReplayTest 
and GoRecordingTest are meant to go together, but you can of course 
visualize any JVG file. 

PICTtoJVGtest.java
------------------
Converts a Macintosh PICT file into a JVG file. The path of the PICT file 
is the first input argument and the path of the JVG the second input 
argument. 
This program simply connects a PICTReader to a RecorderGraphics and then 
saves the resulting recording onto disk. 

PICTShowDemo.java
-----------------
Reads and displays a the PICT file whose path is given as input argument. 

PICTLister.java
---------------
Gives a verbose listing of the operations found in a PICT file. In 
PICTLister.bat output is redirected to the file "list.txt".

ImgRecordingTest.java
-------------------------
Does a certain number of pixmap image drawing and records them 
into a GraphicsRecording. The recording is saved to the file whose path 
is given as input argument. 
This example differs from RecordingTest.java in the sense that it uses all 
Java Graphics image manipulation calls in order to get a complete 
pixmap operation recording test. Use ReplayTest.java to replay the 
recording "ImgTest.jvg".

PNGReadDemo.java
----------------
Displays the given PNG image in a window. Three PNG example images are 
included for demonstrating various image coding possibilities. 

ImageSaveApplication.java
-------------------------
Small example application that allows you to open and display a GIF or 
JPEG image and save it in any of the supported pixmap formats. 

Various example applications for showing image saving
-----------------------------------------------------
TestAllFormats.java : Saves a JPEG image in all the supported formats. 
TestBMPSave.java : Saves a GIF image as BMP. 
TestPICTSave.java : Saves a GIF image as PICT. 
TestPNGSave.java : Saves a GIF image as PNG.  
TestTarga.java : Saves a GIF image as GIF. 
TestTIFF.java : Saves a GIF image as TIFF. 

