[C#]
Response.Write("List of Graphics Exporters<br>");
foreach (string exporter in XSettings.GraphicsExporters) {
Response.Write(exporter + "<br>");
}
[Visual Basic]
Dim exporter As String
Response.Write("List of Graphics Exporters<br>")
For Each exporter In XSettings.GraphicsExporters
Response.Write(exporter + "<br>")
Next
The above will produce something like the following output:
List of Graphics Exporters
SGI
Photoshop
BMP
JPEG
PICT
PNG
MacPaint
TIFF
TGA
QuickTime Image
8BIM - Photoshop resource format
AFM - TrueType font
ART - PF1: 1st Publisher
AVI - Audio/Visual Interleaved
AVS - AVS X image
BIE - Joint Bi-level Image experts Group interchange format
BMP - Microsoft Windows bitmap image
CMYK - Raw cyan, magenta, yellow, and black bytes
CUT - DR Hallo
...
|