388 questions
2
votes
2
answers
283
views
Why does my ASCII animation keep scrolling down instead of updating in place on Windows console?
I’m trying to create a simple ASCII 3D spinning cube animation in the Windows console using C++:
#include <iostream>
#include <cmath>
#include <cstring>
#include <windows.h>
#...
3
votes
1
answer
194
views
How can I add an ASCII art before this system information? [closed]
I am trying to build a neofetch/fastfetch like program from scratch, and I want to know how I can add an ASCII art to the left of my system information
package main
import (
"fmt"
&...
2
votes
1
answer
79
views
How Can I Correctly Delay the Printing of Strings in Windows Command Prompt to Match a Video's FPS?
I made an ASCII video player that runs in the Windows command prompt. However, I am having issues in regards to having the frames print at the same speed (FPS) as the original video.
At first I ...
1
vote
1
answer
230
views
How to efficiently make ASCII art in terminal with Haskell?
This is not a duplicate of Output ascii animation from Haskell?, as that post was, in spite of the title, about how to ensure a minimal pause between frames; regarding the actual drawing, the OP ...
1
vote
1
answer
60
views
How to optimize the output of a large number of characters on the console?
I am developing a program that plays video in the console using ascii characters.
This is an example of such a program text
To calculate the correct characters, I use opencl for parallelization.
Here ...
0
votes
0
answers
94
views
ASCII art with SDL2, an unexpected output
I wanted to create ASCII art using SDL2, but I don’t understand why I’m getting this result:program output](https://i.sstatic.net/1IUV743L.png) for the orginal image is](https://i.sstatic.net/ytrb2R0w....
0
votes
1
answer
227
views
image to ascii art with edge detection using the sobel filter in python using pygame not rotated correctly
I have to layers of ascii art, one for the sobel filter, one for the general ascii art. I then overlap then and, because the sobel filter is initially only 0, using a simpe filter. The code works for ...
1
vote
1
answer
133
views
Spinning square of ASCII symbols issues
everyone!
I made a little program of a square spinning in terminal. It works actually, but not as I expected.
For some reason part of the characters is not printed after each rotation. Got no idea why....
0
votes
1
answer
545
views
Bash/Zsh - How to randomly color letters in ascii art block text?
I am writing a zsh script to display ascii art in different colors.
Basically I have ascii text written in block letters and I want to write a script that randomizes the colors of each one using color ...
-1
votes
1
answer
116
views
ASCII art probleme
I'd like your help with a program that processes text in ASCII art.
The program must write a letter or a word in the ASCII style given as input.
The problem is that the program returns me at the end ...
1
vote
1
answer
175
views
C++ OpenCV - How to display a resized video frame to ASCII?
I made a program that turns a video into a resized ASCII animation, but the Mat frame only captures a portion of the top left corner of the full video. The depth and channel of the Mat is 0 and 1, ...
0
votes
1
answer
429
views
How can I print ASCII art in batch without it printing weird symbols?
So basically I am making a multitool, (don't judge me) and I want to print the following ASCII art, but when I do, some weird symbols come out instead of it. I know this has to do with the characters, ...
2
votes
1
answer
558
views
C++ - How do I draw an isosceles right side up triangle using recursion?
Write a recursive function called DrawTriangle() that outputs lines of '*' to form a right side up isosceles triangle. Function DrawTriangle() has one parameter, an integer representing the base ...
0
votes
1
answer
111
views
Batch (.bat or cmd) script crashes when trying to print my ASCII art [duplicate]
My code crashes when trying to print this ASCII image:
:91
title 911 turbo
echo please turn on fullscreen and wait...
timeout 5
echo 55555555555555555555555555555555555555555YYJJ???777777777777????...
0
votes
0
answers
42
views
Javascript function for ASCI not working in my HTML file
I've tried to use some JS function in order to create simple animations - what I'm doing wrong? I cannot see any effect and I'm new to JS. In theory that function should find DOM and change inner HTML ...