Commit d9a470a4a5404cb09953fdd2898219fe227c7a33
1 parent
820a8dfe
*** empty log message ***
Showing
1 changed file
with
12 additions
and
12 deletions
Show diff stats
anubis_dev/library/predefined.anubis
| ... | ... | @@ -119,12 +119,12 @@ |
| 119 | 119 | *** (10.3.4) Cropping and encrusting, rotating and flipping. |
| 120 | 120 | *** (10.3.5) Drawing system characters. |
| 121 | 121 | *** (10.3.6) System characters and fonts informations. |
| 122 | - *** (10.1) The type 'HostImage'. | |
| 123 | - *** (10.2) Handling JPEG/JFIF image files. | |
| 124 | - *** (10.2.1) Converting to 'HostImage'. | |
| 125 | - *** (10.2.2) Converting to 'RGBAImage'. | |
| 126 | - *** (10.2.2) Writing (creating) a JPEG file. | |
| 127 | - *** (10.2.3) Reading a JPEG file. | |
| 122 | + *** (10.4) The type 'HostImage'. | |
| 123 | + *** (10.5) Handling JPEG/JFIF image files. | |
| 124 | + *** (10.5.1) Converting to 'HostImage'. | |
| 125 | + *** (10.5.2) Converting to 'RGBAImage'. | |
| 126 | + *** (10.5.3) Writing (creating) a JPEG file. | |
| 127 | + *** (10.5.4) Reading a JPEG file. | |
| 128 | 128 | |
| 129 | 129 | *** (11) Managing the graphic screen. |
| 130 | 130 | *** (11.1) Types for screen, mouse and keyboard handling. |
| ... | ... | @@ -3083,7 +3083,7 @@ public define SystemCharacterInfo get_char_info(SystemFont font, |
| 3083 | 3083 | |
| 3084 | 3084 | |
| 3085 | 3085 | |
| 3086 | - *** (10.1) The type 'HostImage'. | |
| 3086 | + *** (10.4) The type 'HostImage'. | |
| 3087 | 3087 | |
| 3088 | 3088 | We represent host images in some way which is as close as possible to the |
| 3089 | 3089 | representation of images in the host system. As far as Anubis is concerned, 'host |
| ... | ... | @@ -3146,7 +3146,7 @@ public define Int32 |
| 3146 | 3146 | |
| 3147 | 3147 | |
| 3148 | 3148 | |
| 3149 | - *** (10.2) Handling JPEG/JFIF image files. | |
| 3149 | + *** (10.5) Handling JPEG/JFIF image files. | |
| 3150 | 3150 | |
| 3151 | 3151 | The following functions are an interface to the IJG (Independant JPEG Group) library, |
| 3152 | 3152 | which has been linked with 'anbexec'. |
| ... | ... | @@ -3176,7 +3176,7 @@ public type JPEG_BitMapImage: |
| 3176 | 3176 | |
| 3177 | 3177 | |
| 3178 | 3178 | |
| 3179 | - *** (10.2.1) Converting to 'HostImage'. | |
| 3179 | + *** (10.5.1) Converting to 'HostImage'. | |
| 3180 | 3180 | |
| 3181 | 3181 | An image of type 'JPEG_BitMapImage' may be converted to a host image for use on the |
| 3182 | 3182 | graphic screen. |
| ... | ... | @@ -3201,7 +3201,7 @@ public define HostImage |
| 3201 | 3201 | |
| 3202 | 3202 | |
| 3203 | 3203 | |
| 3204 | - *** (10.2.2) Converting to 'RGBAImage'. | |
| 3204 | + *** (10.5.2) Converting to 'RGBAImage'. | |
| 3205 | 3205 | |
| 3206 | 3206 | Similarly, JPEG images may be converted to RGBA for manipulations. |
| 3207 | 3207 | |
| ... | ... | @@ -3222,7 +3222,7 @@ public define JPEG_BitMapImage |
| 3222 | 3222 | |
| 3223 | 3223 | |
| 3224 | 3224 | |
| 3225 | - *** (10.2.2) Writing (creating) a JPEG file. | |
| 3225 | + *** (10.5.3) Writing (creating) a JPEG file. | |
| 3226 | 3226 | |
| 3227 | 3227 | Here is the public tool for writing an image into a file in JPEG format. |
| 3228 | 3228 | |
| ... | ... | @@ -3242,7 +3242,7 @@ public define Result_JPEG_write |
| 3242 | 3242 | |
| 3243 | 3243 | |
| 3244 | 3244 | |
| 3245 | - *** (10.2.3) Reading a JPEG file. | |
| 3245 | + *** (10.5.4) Reading a JPEG file. | |
| 3246 | 3246 | |
| 3247 | 3247 | Here is the tool for reading an image from a JPEG file. |
| 3248 | 3248 | ... | ... |