home *** CD-ROM | disk | FTP | other *** search
/ CD Actual 14 / CDACTUAL.iso / cdactual / demobin / share / program / Basic / RM04.ZIP / RM.DOC < prev    next >
Encoding:
Text File  |  1992-10-17  |  7.7 KB  |  231 lines

  1.                        Raster Master V3.0
  2.  
  3.           (c) Copyright 1991-92 by Scarborough Digital.
  4.                       All Rights Reserved. 
  5.  
  6.  
  7.  
  8.  
  9.  
  10. INTRODUCTION
  11.  
  12.   Raster Master is a powerful graphic editor that allows
  13. programmers and developers to create and manipulate small images.
  14. Raster Master can edit images from 1X1 pixel up to 100X100
  15. pixels. Images can be saved in standard PCX format or as source
  16. code making it easy to add to your programs.  Raster Master was
  17. designed to work in conjunction with other toolkits and graphic
  18. libraries such as Fastgraph and TEGL Windows Toolkit as well as
  19. the standard graphic libraries for Turbo C, QuickC, Turbo Pascal,
  20. and QuickBasic.
  21.  
  22.  
  23. REQUIREMENTS
  24.  
  25.   VGA Card, SVGA optional for the 256 color mode
  26.   Mouse
  27.   DOS 3.0 or higher
  28.  
  29.  
  30. USING THE EDITOR
  31.  
  32. OPEN/SAVE:  Click in the FILENAME area and type in the name.
  33.  
  34. Any FILE in the FILE LISTING can be selected by simply pointing
  35. to it.
  36.  
  37. DIRECTORIES can be accessed in one of two ways.  Either by
  38. changing the contents of the DIRECTORY area or pointing to the
  39. actual directory in the listing.
  40.  
  41. CHANGING THE OPEN FORMAT: Press the RIGHT mouse button over the
  42. OPEN gadget. 
  43.  
  44. CHANGING THE SAVE FORMAT: Press the RIGHT mouse button over the
  45. SAVE gadget.
  46.  
  47. Use the up and down gadgets to select the new format.
  48.  
  49.  
  50.  
  51.  CLR       Clears the screen.
  52.  
  53.  UNDO      Deletes last step taken.
  54.  
  55.  GRID      Toggles the grid ON/OFF.
  56.  
  57.  SIZE      Allows you to select the size of the zoom area.
  58.            25x25, 50x50, 100x100 pixels are supported.  The
  59.            scrollers can be used to move to different areas
  60.            of the image when in the 25x25 or 50x50 zoom mode.
  61.  
  62.  VIEW      Previews  drawing in one of the listed resolutions.
  63.  
  64.  MODE      Toggles between 16 and 256 color mode.
  65.            Note: ONLY registered users will be given the
  66.            opportunity to save their images in the 256
  67.            color mode.
  68.  
  69.  EXIT      Exits Raster Master.
  70.  
  71.  CLIP      Switches to clip mode allowing you perform the        
  72.            following functions.
  73.  
  74.            OPEN/SAVE: Works the same way as the OPEN/SAVE
  75.                       described above.  When OPENing/Saving,
  76.                       only the clipped area will be affected.
  77.  
  78.            HFLIP/VFLIP: Horizontally/vertically flips the
  79.                         clipped image.
  80.  
  81.            LEFT/RIGHT/UP/DOWN:  Scrolls the clipped image in
  82.                                 the appropriate direction.
  83.  
  84.            EXIT:  Returns to the main menu.
  85.  
  86.  
  87. DRAWING TOOLS
  88.  
  89.       FREEHAND DRAWING  Move the pointer inside the zoom area and
  90.                         click to plot a pixel.
  91.  
  92.       SPRAY PAINT  Randomly plot pixels until release of mouse   
  93.                    button.
  94.  
  95.       FLOOD PAINT  Fills an enclosed area with the current
  96.                    color. 
  97.  
  98.       ALL remaining tools work by selecting the starting point,
  99.       dragging the mouse, then releasing the mouse button.
  100.  
  101.  
  102. SELECTING COLORS
  103.  
  104. Simply select  the color of your choice.  In the 256 color mode
  105. you can scroll through the remaining colors by pressing on the up
  106. or down gadgets.
  107.  
  108.  
  109. PALETTE EDITING
  110.  
  111. Press the PAL gadget, select a color, use the RGB scrollers and
  112. gadgets to modify the color.
  113.  
  114.  
  115. ADDING GRAPHICS TO YOUR PROGRAMS
  116.  
  117.   One of the great features of Raster Master is its ability
  118.   create images compatible with the standard graphic libraries
  119.   included with Turbo C, QuickC, Turbo Pascal, and QuickBASIC.
  120.   Raster Master also supports additional libraries like Fastgraph
  121.   and TEGL Windows Toolkit.  Source code can be generated for    
  122.   images, palettes, and mouse pointers.
  123.  
  124.  
  125. 1.  RM RAW               - Raster Master's RAW format.
  126.  
  127. 2.  Palette              - Binary format containing RGB values.
  128. 3.  Palette (C)          - Source code in C for the palette.
  129. 4.  Palette (PAS)        - Source code in Pascal for the palette.
  130. 5.  Palette (BAS)        - Source code in BASIC for the palette.
  131.  
  132. 6.  TP/TC (Binary)       - Turbo C/Pascal binary image format to
  133.                            be displayed with the putimage        
  134.                            function.
  135.                      
  136.                            see Demo1.c for Turbo C
  137.                            see Demo1.pas for Turbo Pascal
  138.                            For 256 color images you must use the
  139.                            supplied SVGA256.bgi driver.
  140.  
  141.  
  142. 7.  TP Constants         - Turbo Pascal source code for format 6
  143.                            see Demo2.pas
  144.  
  145. 8.  TC Constants         - Turbo C source code for format 6
  146.                            see Demo2.c
  147.  
  148. 9.  QC/QB (Binary)       - QuickC/BASIC binary image format to be
  149.                            displayed with _putimage (QC) or PUT  
  150.                            (QB).
  151.                            See Demo3.c for QuickC
  152.                            See Demo1.bas for QuickBASIC
  153.  
  154.  
  155. 10. QC Constants         - QuickC source code for format 9
  156.                            see Demo4.c
  157.  
  158. 11. BASIC DATA           - QuickBASIC source code for format 9
  159.                            see Demo2.bas
  160.  
  161. 12. TEGL DEF             - TEGL Windows Toolkit text based HEX   
  162.                            format
  163.                            Refer to manual and TEGL code for DEF.
  164.  
  165.  
  166.  
  167. 13. PPR  Fastgraph       - Fastgraph Packed Pixel Run format. 16
  168.                            colors or less.
  169.  
  170. 14. SPR  Fastgraph       - Fastgraph Single Pixel Run format. max
  171.                            256 colors.
  172.  
  173. 15. FG PPR (C)           - C code for format 13
  174. 16. FG SPR (C)           - C code for format 14
  175. 17. FG PPR (PAS)         - Pascal code for format 13
  176. 18. FG SPR (PAS)         - Pascal code for format 14
  177. 19. FG PPR (BAS)         - Basic code for format 13
  178. 20. FG SPR (BAS)         - Basic code for format 14
  179.  
  180.  
  181.                           Refer to the Fastgraph user and        
  182.                           reference manuals.                     
  183.                           Use the included program xinfo.exe to  
  184.                           obtain the run count and width from    
  185.                           Raster Master created  SPR and PPR    
  186.                           files.
  187.  
  188.  
  189.  
  190.  
  191. 21. Mouse (C)            - C code for mouse image.
  192. 22. Mouse (PAS)          - Pascal code for mouse image.
  193. 23. Mouse (BAS)          - Basic code for mouse image
  194.  
  195.  
  196.  
  197.                           When saving in this format only the    
  198.                           first 16X16 pixels from the left top   
  199.                           corner will be saved. If the image is  
  200.                           clipped only the first 16X16
  201.                           pixels starting from the top left      
  202.                           corner of the clipped image will be    
  203.                           saved.
  204.  
  205.  
  206.                           The colors black, white, and dark blue
  207.                           are used to build the mouse image. Dark
  208.                           blue will be considered transparent.
  209.  
  210.  
  211. REGISTERED USERS
  212.  
  213.  The format of the key file has been changed. You can upgrade
  214. your key by sending a filled registration form along with $5.
  215. Include the word upgrade in the comments/suggestion area. The
  216. change was made because of the new format Raster Master is
  217. released under.  The key file should be placed in the same
  218. directory as your RM.EXE file.
  219.  
  220.  
  221. REGISTERING
  222.  
  223.  Raster Master is NOT free software. If you use this program you
  224. must pay for it. Registration entitles you to a key file that
  225. removes the delay screen and enables features not found in the
  226. "test drive" version. You will also receive the latest version of
  227. the program and any other utility programs we decide to include
  228. with the registered version.  Raster Master is updated constantly
  229. with new features being added all the time. See ORDER.TXT. 
  230.  
  231.