Skip to content

Commit

Permalink
add optional callback
Browse files Browse the repository at this point in the history
  • Loading branch information
t-bltg committed Sep 20, 2022
1 parent c988dc2 commit 0d82f93
Show file tree
Hide file tree
Showing 2 changed files with 40 additions and 15 deletions.
43 changes: 28 additions & 15 deletions src/ascii.jl
Original file line number Diff line number Diff line change
Expand Up @@ -73,7 +73,7 @@ function _printc(io::IO, x::Crayon, args...)
end

"""
ascii_encode(io::IO, enc::ImageEncoder, colordepth::TermColorDepth, img; trail_nl::Bool=false, ret::Bool=false)
ascii_encode(io::IO, enc::ImageEncoder, colordepth::TermColorDepth, img; trail_nl::Bool=false, ret::Bool=false, callback=nothing)
Transforms the pixel of the given image `img`, which has to be an
array of `Colorant`, into a string of unicode characters using
Expand All @@ -84,21 +84,26 @@ ansi terminal colors or directly writes into a i/o stream.
- The `colordepth` can either be `TermColor8bit()` or `TermColor24bit()`
and specifies which terminal color codes should be used.
# Arguments
It `ret` is set, the function returns a vector of strings containing the encoded image.
Each element represent one line. The lines do not contain newline characters.
If `trail_nl` is given, a final trailing newline is appended.
The keyword argument `callback` can be used to save encoded colors and characters.
"""
function ascii_encode(
io::IO,
::SmallBlocks,
colordepth::TermColorDepth,
img::AbstractMatrix{<:Colorant};
trail_nl::Bool=false,
ret::Bool=false
ret::Bool=false,
callback=nothing
)
yinds, xinds = axes(img)
for y in first(yinds):2:last(yinds)
for (n, y) in enumerate(first(yinds):2:last(yinds))
_printc(io, RESET)
for x in xinds
fgcol = _colorant2ansi(img[y, x], colordepth)
Expand All @@ -109,7 +114,8 @@ function ascii_encode(
# has only the upper pixel defined.
nothing
end
_printc(io, Crayon(; foreground=fgcol, background=bgcol), "")
callback nothing || callback((n, x), fgcol, bgcol, '')
_printc(io, Crayon(; foreground=fgcol, background=bgcol), '')
end
_printc(io, RESET)
(trail_nl || y < last(yinds)) && println(io)
Expand All @@ -123,7 +129,8 @@ function ascii_encode(
colordepth::TermColorDepth,
img::AbstractMatrix{<:Colorant};
trail_nl::Bool=false,
ret::Bool=false
ret::Bool=false,
callback=nothing
)
yinds, xinds = axes(img)
for y in yinds
Expand All @@ -132,6 +139,7 @@ function ascii_encode(
color = img[y, x]
fgcol = _colorant2ansi(color, colordepth)
chr = _charof(alpha(color))
callback nothing || callback((y, x), fgcol, missing, chr, chr)
_printc(io, Crayon(; foreground=fgcol), chr, chr)
end
_printc(io, RESET)
Expand All @@ -146,13 +154,15 @@ function ascii_encode(
colordepth::TermColorDepth,
img::AbstractVector{<:Colorant};
trail_nl::Bool=false,
ret::Bool=false
ret::Bool=false,
callback=nothing
)
_printc(io, RESET)
for i in axes(img, 1)
color = img[i]
fgcol = _colorant2ansi(color, colordepth)
chr = _charof(alpha(color))
callback nothing || callback((i,), fgcol, missing, chr)
_printc(io, Crayon(; foreground=fgcol), chr)
end
_printc(io, RESET)
Expand All @@ -166,7 +176,8 @@ function ascii_encode(
colordepth::TermColorDepth,
img::AbstractVector{<:Colorant};
trail_nl::Bool=false,
ret::Bool=false
ret::Bool=false,
callback=nothing
)
w = length(img)
n = enc.size[2] ÷ 3 == w ? w : enc.size[2] ÷ 6
Expand All @@ -176,15 +187,17 @@ function ascii_encode(
color = img[i]
fgcol = _colorant2ansi(color, colordepth)
chr = _charof(alpha(color))
_printc(io, Crayon(; foreground=fgcol), chr, chr, " ")
callback nothing || callback((i,), fgcol, missing, chr, chr, ' ')
_printc(io, Crayon(; foreground=fgcol), chr, chr, ' ')
end
if n < w # right part
_printc(io, RESET, "")
for i in ((-n + 1):0) .+ lastindex(img)
color = img[i]
fgcol = _colorant2ansi(color, colordepth)
chr = _charof(alpha(color))
_printc(io, Crayon(; foreground=fgcol), chr, chr, " ")
callback nothing || callback((i,), fgcol, missing, chr, chr, ' ')
_printc(io, Crayon(; foreground=fgcol), chr, chr, ' ')
end
end
_printc(io, RESET)
Expand Down Expand Up @@ -222,12 +235,12 @@ function ascii_show(
kws...
)
io_h, io_w = maxsize
downscale = if encoder === :auto
downscale = if encoder :auto
img_h, img_w = size(img)
img_h io_h && 2img_w io_w ? _downscale_big : _downscale_small
elseif encoder === :small
elseif encoder :small
_downscale_small
elseif encoder === :big
elseif encoder :big
_downscale_big
end
img, enc = downscale(img, (io_h, io_w))
Expand All @@ -243,12 +256,12 @@ function ascii_show(
kws...
)
_, io_w = maxsize
downscale = if encoder === :auto
downscale = if encoder :auto
img_w = length(img)
3img_w io_w ? _downscale_big : _downscale_small
elseif encoder === :small
elseif encoder :small
_downscale_small
elseif encoder === :big
elseif encoder :big
_downscale_big
end
img, enc = downscale(img, io_w)
Expand Down
12 changes: 12 additions & 0 deletions test/tst_ascii.jl
Original file line number Diff line number Diff line change
Expand Up @@ -461,3 +461,15 @@ end
@test_reference "reference/show_bar_80x80_$(depth)bit.txt" res
end
end

@testset "Callback" begin
img = imresize(mandril, (30, 30))
fgcols, bgcols = [], []
callback(I, fgcol, bgcol, chars...) = begin
push!(fgcols, fgcol)
push!(bgcols, bgcol)
end
@ensurecolor ascii_show(img, TermColor24bit(), :auto, (20, 20); callback=callback)
@test length(fgcols) > 100
@test !any(ismissing.(bgcols))
end

0 comments on commit 0d82f93

Please sign in to comment.