No description
  • QuickBASIC 100%
Find a file
2022-09-19 13:13:54 +02: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 precompile checks 2022-09-19 01:27:48 +02:00
bool.bi precompile checks 2022-09-19 01:27:48 +02:00
btoa.bm precompile checks 2022-09-19 01:27:48 +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
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
README.md Update README.md 2022-09-19 02:20:12 +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

ASCII to Base64 encoding

Bool.bi

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

btoa.bm

Base64 to ASCII decoding

ConsoleColor.bm

Change color of terminal text with escape sequences. If terminal emulator supports it, 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

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.