KO
|
EN
gitlite — search
Search
#javascript
#python
#hacktoberfest
#react
#ai
#typescript
#llm
#go
#golang
#android
#machine-learning
#rust
#deep-learning
#linux
Imagscii
★ 22
Open GitHub ↗
A free ascii image filter api
Download README (.md)
Explore Similar Repositories
VULOnceMore
:
记录个人的漏洞复现过程
report-nyc-coverage-github-action
:
GitHub Action that posts the report in a comment on a GitHub Pull Request from coverage data generated by nyc (istanbul)
orbit
:
Orbit: OS Support for Safe and Efficient Auxiliary Tasks in Applications
laravel-docker-deploy
:
No description available.
rock-pi-s
:
ROCK Pi S
// repository documentation
Was this content helpful?
★ 0
(0 ratings)
Select Rating:
★
★
★
★
★
Submit Feedback
Recent Feedback
×
Download README
Do you want to download the
README.md
file for
Imagscii
?
Download (.md)
# Imagscii 📷 [](https://www.python.org/downloads/release/python-310/) **A free ascii image filter API** Just upload an image and get the image back in ascii characters!  **Its your choice** -> You decide how detailed you want your images to be! Just specify a spacing between characters and the character size!  # How to use it ❓ Sample request using Python and the ```requests``` module: ```python import requests open("OUT_FILE.jpg", "wb").write(requests.post("https://imagscii.com/create/16/8", files={"file": open("FILE_TO_PROCESS.png", "rb")}).content) ``` The format for a request is the following: ```https://www.imagscii.com/create/FONT_SIZE/SPACING``` The same request using curl: ```curl -X POST -F file=@FILE_TO_PROCESS.png https://www.imagscii/create/16/8 >> OUT_FILE.png```