1
1
Fork 0
mirror of https://github.com/boxgaming/qbjs.git synced 2024-09-19 20:14:58 +00:00

Add files via upload

This commit is contained in:
boxgaming 2022-11-10 14:47:50 -06:00 committed by GitHub
parent fb4d246578
commit 9e7b8a61b7
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

23
samples/include/caman.bas Normal file
View file

@ -0,0 +1,23 @@
Export Render
IncludeJS "https://cdnjs.cloudflare.com/ajax/libs/camanjs/4.0.0/caman.full.min.js"
Sub Render(opts)
$If Javascript Then
Caman("#gx-canvas", function() {
if (opts.brightness) { this.brightness(opts.brightness); }
if (opts.contrast) { this.contrast(opts.contrast); }
if (opts.saturation) { this.saturation(opts.saturation); }
if (opts.vibrance) { this.vibrance(opts.vibrance); }
if (opts.exposure) { this.exposure(opts.exposure); }
if (opts.hue) { this.hue(opts.hue); }
if (opts.sepia) { this.sepia(opts.sepia); }
if (opts.gamma) { this.gamma(opts.gamma); }
if (opts.noise) { this.noise(opts.noise); }
if (opts.clip) { this.clip(opts.clip); }
if (opts.sharpen) { this.sharpen(opts.sharpen); }
if (opts.blur) { this.stackBlur(opts.blur); }
this.render();
});
$End If
End Sub