|
[Visual Basic]
Dim exporter As String
Dim myobj As New Gestalt
Response.Write("List of Graphics Exporters<br>")
For Each exporter In myobj.GraphicsExporters
Response.Write(exporter + "<br>")
Next
[C#]
Gestalt myobj = new Gestalt();
Response.Write("List of Graphics Exporters<br>");
foreach (string exporter in myobj.GraphicsExporters) {
Response.Write(exporter + "<br>");
}
The above may 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
...
|