ImageRotate   --   ReadMe File



ImageRotate is a simple .NET console application that allows you to rotate
images sitting in a file folder. The application is meant to be a test-bed
application for demonstrating the use of the various tracing classes in the
.NET Framework class library.

REQUIREMENTS
Visual Studio .NET 2002 (Visual C# or Visual Basic .NET)
.NET Framework class library

USAGE
The application is controlled through a series of command line switches:
     /path: the path in which to process files
     /image: file types (*.bmp, *.jpg, *.gif)
     /rotate: rotation angle (90, 180, 270)
     /switch: numeric tracing switching values
           0: tracing turned off
           1: trace error messages
           2: trace error and warning messages
           3: trace error, warning, and info messages
           4: trace all (verbose)

All of the trace messages are targeted at a TextWriterTraceListener object; this
should generate a log file (in the application run directory) that contains the
trace output of the application.

EX: ImageRotate /path:c:\images\*.bmp /image:*.jpg /rotate:90 /switch:4


For questions/comments, please contact us at info@brilliantstorm.com.

