1706
|
1 psect view_help_a,0,0,0,0,0
|
|
2 Usage:
|
|
3 fcc "Usage: view [-<format>] [<options>] <filename>"
|
|
4 fcb $0d
|
|
5 fcc "Description: Displays a picture file on a Window screen."
|
|
6 fcb $0d
|
|
7 fcc "Display Options:"
|
|
8 fcb $0d
|
|
9 fcc " -s Use same screen -q# Quit after # seconds"
|
|
10 fcb $0d
|
|
11 fcc " -c Enable cycling -t# Use this type screen (5,6,7,or 8)""
|
|
12 fcb $0d
|
|
13 fcc " -y# Skip # lines -x# Skip # cols"
|
|
14 fcb $0d
|
|
15 fcc " -sml, -big, -huge Display picture in this size."
|
|
16 fcb $0d
|
|
17 fcc "Other Options:"
|
|
18 fcb $0d
|
|
19 fcc " -save <filename> Save picture in Squashed VEF format"
|
|
20 fcb $0d
|
|
21 fcc " -savevef, -savemge, -savecm3 As above, in normal VEF, MGE, or CM3 format"
|
|
22 fcb $0d
|
|
23 fcc " -nobuff Disable input buffering"
|
|
24 fcb $0d
|
|
25 fcc " -help Get this help message"
|
|
26 fcb $0d
|
|
27 fcc " -formats Gives complete list of picture formats supported."
|
|
28 fcb $0d
|
|
29 fcc "Control Keys: After picture is displayed, use:"
|
|
30 fcb $0d
|
|
31 fcc " Space Toggle color cycling Up/Down arrows Switch screens"
|
|
32 fcb $0d
|
|
33 fcc " <,S Slow down cycling F1 Toggle screen flipping"
|
|
34 fcb $0d
|
|
35 fcc " >,F Speed up cycling Break, Mouse End display"
|
|
36 fcb $0d
|
|
37 fcc "Ver. 4.4 Tim Kientzle, 1990. Released into Public Domain."
|
|
38 fcb $0d
|
|
39 fcc "If you like this, send $10 to: Tim Kientzle, 14 Croxton Ave, Oakland, CA 94611"
|
|
40 fcb $0d,0,0
|
|
41
|
|
42 Formats:
|
|
43 fcc "VIEW picture formats supported:"
|
|
44 fcb $0d
|
|
45 fcc " Picture formats can be specified with a file extension (i.e. file.cm3)."
|
|
46 fcb $0d
|
|
47 fcc "A command-line argument overrides the file extension."
|
|
48 fcb $0d
|
|
49 fcc "640: MGE storage format, 640 x 200 x 4 color display."
|
|
50 fcb $0d
|
|
51 fcc "ART: Artifacted PMode4 images. Pressing <ENTER> will swap red/blue."
|
|
52 fcb $0d
|
|
53 fcc "ARTCMP: MAXCMP-generated images, displayed with artifacting."
|
|
54 fcb $0d
|
|
55 fcc "BIN: PMode4/CoCoMax images, stored in LOADM format."
|
|
56 fcb $0d
|
|
57 fcc "CLP: OS9/MVCanvas Clip-art format."
|
|
58 fcb $0d
|
|
59 fcc "CM3: CoCoMax III pictures."
|
|
60 fcb $0d
|
|
61 fcc "GIF: CompuServe Graphics Interchange Format."
|
|
62 fcb $0d
|
|
63 fcc "GIFBW, BWGIF, GBW: GIF format, with grey-scale dither."
|
|
64 fcb $0d
|
|
65 fcc "IMG: Rascan Video Digitizer picture format."
|
|
66 fcb $0d
|
|
67 fcc "MAC,MCP: Macintosh MacPaint format. (supports -huge size option)"
|
|
68 fcb $0d
|
|
69 fcc "MAX: CoCoMax/CoCoMaxII format (same as P41 or BIN)."
|
|
70 fcb $0d
|
|
71 fcc "MAXCMP: RSBASIC picture programs generated by the MAXCMP program."
|
|
72 fcb $0d
|
|
73 fcc "MGE: Color Max III format."
|
|
74 fcb $0d
|
|
75 fcc "P00,P10,P20,P30,P40: Pmode 0/1/2/3/4, color set 0"
|
|
76 fcb $0d
|
|
77 fcc "P01,P11,P21,P31,P41: Pmode 0/1/2/3/4, color set 1"
|
|
78 fcb $0d
|
|
79 fcc "PIX: DS69 Digitizer 16-level pictures, uses file size to determine format."
|
|
80 fcb $0d
|
|
81 fcc "PIX128,PIX256: Forces 128x128 or 256x256 format."
|
|
82 fcb $0d
|
|
83 fcc "PIXCMP: RSBASIC picture programs generated by the PIXCMP program."
|
|
84 fcb $0d
|
|
85 fcc "PUB: Home Publisher clipart format."
|
|
86 fcb $0d
|
|
87 fcc "RAT: The RAT graphics editor format."
|
|
88 fcb $0d
|
|
89 fcc "RLE: CompuServe VIDTEX 256x192 and 128x96 2-color RLE images."
|
|
90 fcb $0d
|
|
91 fcc "ST,STP: Degas ST uncompressed format."
|
|
92 fcb $0d
|
|
93 fcc "VEF: Standard OS9 VDG Extended Format, normal or Squashed."
|
|
94 fcb $0d
|
|
95 fcc "VF2,...,VF9: Two to nine VEF images in one file, flickered."
|
|
96 fcb $0d
|
|
97 fcb 0,0
|
|
98
|
|
99 endsect
|