qb64-include/README.md
2022-10-07 09:52:42 +02:00

63 lines
2.6 KiB
Markdown

# qb64-include
A collection of functions and subroutines.
## [atob.bm](https://github.com/visionmercer/qb64-include/blob/main/atob.bm)
Base64 ASCII to Binary encoding
## [Bool.bi](https://github.com/visionmercer/qb64-include/blob/main/bool.bi)
A header file containing the constants "False" and "True"
## [btoa.bm](https://github.com/visionmercer/qb64-include/blob/main/btoa.bm)
Binary to Base64 ASCII encoding
## [ConsoleColor.bm](https://github.com/visionmercer/qb64-include/blob/main/consolecolor.bm)
Change color of terminal text with escape sequences.
If terminal emulator supports it then true color is possible.
## [Grayscale.bm](https://github.com/visionmercer/qb64-include/blob/main/grayscale.bm)
Convert an image to grayscale.
## [Lerp.bm](https://github.com/visionmercer/qb64-include/blob/main/lerp.bm)
Computes the linear interpolation between two values by an amount between 0 and 1.
## [LoadHexPalette.bm](https://github.com/visionmercer/qb64-include/blob/main/loadhexpalette.bm)
load an array of RGB colors stored as hexadecimal in a file.
## [Max.bm](https://github.com/visionmercer/qb64-include/blob/main/max.bm)
Returns the larger of two numbers
## [Min.bm](https://github.com/visionmercer/qb64-include/blob/main/min.bm)
Returns the smaller of two numbers
## [Negative.bm](https://github.com/visionmercer/qb64-include/blob/main/negative.bm)
Convert an image to the negative color.
## [NoFrame.bi](https://github.com/visionmercer/qb64-include/blob/main/noframe.bi)
Start Windows program with no frame
## [Point32]((https://github.com/visionmercer/qb64-include/blob/main/point32.bm)
Returns the 32 bit color value no matter the image mode.
## [SaveAnsi.bm](https://github.com/visionmercer/qb64-include/blob/main/saveansi.bm)
Save "Screen 0" to an .ans file.
## [SaveBinaryPBM.bm](https://github.com/visionmercer/qb64-include/blob/main/savebinarypbm.bm)
Save a monochrome image to pbm file.
## [SaveBinaryPPM.bm](https://github.com/visionmercer/qb64-include/blob/main/savebinaryppm.bm)
Save a 24 bit image to ppm file.
## [SaveHexPalette](https://github.com/visionmercer/qb64-include/blob/main/savehexpalette.bm)
Save an array of colors to file
## [Solarize.bm](https://github.com/visionmercer/qb64-include/blob/main/solarize.bm)
Solarize image
## [Truncate.bm](https://github.com/visionmercer/qb64-include/blob/main/truncate.bm)
Truncate given value to a value between 0 and 255
## [Urldecode.bm](https://github.com/visionmercer/qb64-include/blob/main/urldecode.bm)
Decodes URL-encoded string.
## [Urlencode.bm](https://github.com/visionmercer/qb64-include/blob/main/urlencode.bm)
Applies URL encoding to a given string.