All checks were successful
Build and Deploy / build-and-deploy (push) Successful in 1m28s
- Add JAX text rendering with font atlas, styled text placement, and typography primitives - Add xector (element-wise/reduction) operations library and sexp effects - Add deferred effect chain fusion for JIT-compiled effect pipelines - Expand drawing primitives with font management, alignment, shadow, and outline - Add interpreter support for function-style define and require - Add GPU persistence mode and hardware decode support to streaming - Add new sexp effects: cell_pattern, halftone, mosaic, and derived definitions - Add path registry for asset resolution - Add integration, primitives, and xector tests Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>
18 lines
834 B
Common Lisp
18 lines
834 B
Common Lisp
;; ASCII Art effect - converts image to ASCII characters
|
|
(require-primitives "ascii")
|
|
|
|
(define-effect ascii_art
|
|
:params (
|
|
(char_size :type int :default 8 :range [4 32])
|
|
(alphabet :type string :default "standard")
|
|
(color_mode :type string :default "color" :desc "color, mono, invert, or any color name/hex")
|
|
(background_color :type string :default "black" :desc "background color name/hex")
|
|
(invert_colors :type int :default 0 :desc "swap foreground and background colors")
|
|
(contrast :type float :default 1.5 :range [1 3])
|
|
)
|
|
(let* ((sample (cell-sample frame char_size))
|
|
(colors (nth sample 0))
|
|
(luminances (nth sample 1))
|
|
(chars (luminance-to-chars luminances alphabet contrast)))
|
|
(render-char-grid frame chars colors char_size color_mode background_color invert_colors)))
|