-
Notifications
You must be signed in to change notification settings - Fork 44
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Update this please #57
Comments
Found a fix for this, located here https://github.com/hzeller/timg |
I don't know how to compile hiptext anymore. I can't maintain it anymore because the Linux APIs it depended on kept radically changing. So I rewrote hiptext instead as two new and much better projects. Enjoy! |
Also if you want C code that does what hiptext does with the least amount of effort possible please see: |
I was actually able to compile and run hiptext, that took about an hour to figure out. All I had to do are couple replacements in
And borrowed an older Ragel version 6 from another machine to build Anyways, I'm shopping for the best terminal image viewer, sorry about looking the other way, but you know, 256 colors are out of fashion nowadays, as there are terminals and image viewers which support True Color. |
If you send me a pull request with your changes that make it build, I'll merge them. I believe the printimage.com program is the best. It uses 24-bit by default. You have to pass the |
As a matter of fact, I've found an existing #52. CI fails though, perhaps because of an older version of ffmpeg library. |
Merged |
FWIW, I was able to build I hacked around it by patching diff --git a/configure.ac b/configure.ac
index d1c8217..0a4ece8 100644
--- a/configure.ac
+++ b/configure.ac
@@ -47,9 +47,6 @@ AC_SUBST(LIBGFLAGS_CFLAGS)
AC_SUBST(LIBGFLAGS_LIBS)
AC_CHECK_PROGS(FREETYPE, freetype-config)
-if test -z "$FREETYPE"; then
- AC_MSG_ERROR([error: libfreetype-dev is required])
-fi
LIBFREETYPE_CFLAGS="`$FREETYPE --cflags`"
LIBFREETYPE_LIBS="`$FREETYPE --libs`"
AC_SUBST(LIBFREETYPE_CFLAGS) …and then patching the generated --- Makefile.old 2022-07-08 17:46:31.999241774 -0700
+++ Makefile 2022-07-08 17:45:23.812035049 -0700
@@ -519,4 +519,4 @@
LIBAVUTIL_LIBS = -lavutil
-LIBFREETYPE_CFLAGS =
-LIBFREETYPE_LIBS =
+LIBFREETYPE_CFLAGS = -I/usr/include/freetype2
+LIBFREETYPE_LIBS = -lfreetype
LIBGFLAGS_CFLAGS = That said, I later remembered how to find |
Since you put in the work, if you send me a PR I'll hit merge. |
Sure; I cleaned up the patch a bit and sent #60. |
The build instructions in the readme don't work, but just cloning the repo, running |
Hi there, there are some changes in ffmpeg and so the interface call signatures have been changed. Update this please, so we can all enjoy the ascii goodness
The text was updated successfully, but these errors were encountered: