qb64 sub routines
  • FreeBASIC 100%
Find a file
2023-11-23 12:04:52 +01:00
.gitattributes Initial commit 2022-03-18 18:16:22 +01:00
.gitignore Update .gitignore 2022-09-19 01:36:19 +02:00
atob.bm Well 2022-10-07 09:17:31 +02:00
bool.bi precompile checks 2022-09-19 01:27:48 +02:00
btoa.bm Well 2022-10-07 09:17:31 +02:00
consolecolor.bm precompile checks 2022-09-19 01:27:48 +02:00
grayscale.bm precompile checks 2022-09-19 01:27:48 +02:00
hsb.bm Update hsb.bm 2023-11-23 11:58:07 +01:00
hsb32.bm Create hsb32.bm 2023-11-23 12:04:52 +01:00
lerp.bm precompile checks 2022-09-19 01:27:48 +02:00
LICENSE Initial commit 2022-03-18 18:16:22 +01:00
loadhexpalette.bm precompile checks 2022-09-19 01:27:48 +02:00
max.bm precompile checks 2022-09-19 01:27:48 +02:00
min.bm precompile checks 2022-09-19 01:27:48 +02:00
negative.bm precompile checks 2022-09-19 01:27:48 +02:00
noframe.bi precompile checks 2022-09-19 01:27:48 +02:00
point32.bm Update point32.bm 2022-10-05 10:35:21 +02:00
README.md Update README.md 2022-10-08 10:31:18 +02:00
saveansi.bm precompile checks 2022-09-19 01:27:48 +02:00
savebinarypbm.bm Update savebinarypbm.bm 2022-09-19 13:13:54 +02:00
savebinaryppm.bm precompile checks 2022-09-19 01:27:48 +02:00
savehexpalette.bm Update savehexpalette.bm 2022-09-19 10:55:34 +02:00
solarize.bm precompile checks 2022-09-19 01:27:48 +02:00
truncate.bm precompile checks 2022-09-19 01:27:48 +02:00
urldecode.bm precompile checks 2022-09-19 01:27:48 +02:00
urlencode.bm precompile checks 2022-09-19 01:27:48 +02:00

qb64-include

A collection of functions and subroutines.

atob.bm

Base64 ASCII to Binary encoding

Bool.bi

A header file containing the constants "False" and "True"

btoa.bm

Binary to Base64 ASCII encoding

ConsoleColor.bm

Change color of terminal text with escape sequences. If terminal emulator supports it then true color is possible.

Grayscale.bm

Convert an image to grayscale.

Lerp.bm

Computes the linear interpolation between two values by an amount between 0 and 1.

LoadHexPalette.bm

load an array of RGB colors stored as hexadecimal in a file.

Max.bm

Returns the larger of two numbers

Min.bm

Returns the smaller of two numbers

Negative.bm

Convert an image to the negative color.

NoFrame.bi

Start Windows program with no frame

Point32.bm

Returns the 32 bit color value no matter the image mode.

SaveAnsi.bm

Save "Screen 0" to an .ans file.

SaveBinaryPBM.bm

Save a monochrome image to pbm file.

SaveBinaryPPM.bm

Save a 24 bit image to ppm file.

SaveHexPalette

Save an array of colors to file

Solarize.bm

Solarize image

Truncate.bm

Truncate given value to a value between 0 and 255

Urldecode.bm

Decodes URL-encoded string.

Urlencode.bm

Applies URL encoding to a given string.