No description
  • QuickBASIC 100%
Find a file
2022-05-21 08:22:16 +02:00
.gitattributes Initial commit 2022-03-18 18:16:22 +01:00
atob.bm Added base64 encoding and decoding 2022-05-09 12:36:52 +02:00
bool.bi a start 2022-03-18 18:33:58 +01:00
btoa.bm Added base64 encoding and decoding 2022-05-09 12:36:52 +02:00
consolecolor.bm a start 2022-03-18 18:33:58 +01:00
grayscale.bm a start 2022-03-18 18:33:58 +01:00
lerp.bm a start 2022-03-18 18:33:58 +01:00
LICENSE Initial commit 2022-03-18 18:16:22 +01:00
loadhexpalette.bm Update loadhexpalette.bm 2022-05-10 22:40:20 +02:00
max.bm a start 2022-03-18 18:33:58 +01:00
min.bm a start 2022-03-18 18:33:58 +01:00
negative.bm Update negative.bm 2022-05-20 23:31:48 +02:00
noframe.bi a start 2022-03-18 18:33:58 +01:00
README.md Update README.md 2022-05-21 08:22:16 +02:00
saveansi.bm Added SaveAnsi 2022-05-06 18:36:17 +02:00
savebinarypbm.bm Create savebinarypbm.bm 2022-05-21 00:18:24 +02:00
savehexpalette.bm Create savehexpalette.bm 2022-05-10 22:44:23 +02:00
solarize.bm Update solarize.bm 2022-05-20 23:24:48 +02:00
truncate.bm Update truncate.bm 2022-05-18 08:36:00 +02:00
urldecode.bm Create urldecode.bm 2022-05-21 08:20:05 +02:00
urlencode.bm Update urlencode.bm 2022-05-21 08:14:58 +02:00

qb64-include

A collection of functions and sub routines.

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.

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.