1
1
Fork 0
mirror of https://github.com/FellippeHeitor/InForm.git synced 2024-05-12 06:50:12 +00:00

Fix typos

This commit is contained in:
Samuel Gomes 2023-11-20 08:51:59 +05:30
parent b5bb8a6f5c
commit ce2d98fb3e

View file

@ -1,17 +1,17 @@
# Animated GIF Decoder
`By Zom-B` ([QB64-PE Wiki](https://qb64phoenix.com/qb64wiki/index.php/GIF_Images))
***By Zom-B*** ([QB64-PE Wiki](https://qb64phoenix.com/qb64wiki/index.php/GIF_Images))
`Adapted for use with InForm's PictureBox controls by @FellippeHeitor`
*Adapted for use with InForm's PictureBox controls by @FellippeHeitor*
`Refactored and enhanced by a740g to use include guards, conditional compiles and cleaner API`
*Refactored and enhanced by a740g to use include guards, conditional compiles and cleaner API*
## Usage instructions
Your form must contain a PictureBox control that'll serve as a container for
the GIF file you'll load with this library.
In the *External modules* section of the .bas file generated by InForm,
In the **External modules section** of the .bas file generated by InForm,
`$INCLUDE` both `GIFPlay.bi` and `GIFPlay.bas`. The first must come before the
line that includes `InForm.ui` and the second must come after that, as in
the sample below:
@ -67,7 +67,7 @@ Closes the GIF file loaded in the specified PictureBox control and frees the mem
FUNCTION GIF_GetGeight~% (ID AS LONG)
```
Returns the height of the GIF in pixes.
Returns the height of the GIF in pixels.
```vb
FUNCTION GIF_GetWidth~% (ID AS LONG)