"my"
Yes, my collection that I put together over the years. Hence “my.”
I converted my demoscene font collection to PNG and put it on GitHub
41–50 of 88 posts
Re: I converted my demoscene font collection to PNG and put it on GitHub
#42Converted them - what other formats exist for this sort of thing?
Re: I converted my demoscene font collection to PNG and put it on GitHub
#43It's great to see remnants of the demoscene pop up like this from time to time. I'm sure there are many of us relative old-timers here that got their first taste of graphics programming thanks to those demoscene BBS tuts from back in the day (Denthor of Asphyxia anyone?).
Just the other day I was reminiscing with a fellow programmer on freenode about mode13th shenanigans and the all-nighters that ensued.
This HN post put a smile on my face. Cheers from South Africa!
Re: I converted my demoscene font collection to PNG and put it on GitHub
#44Re: I converted my demoscene font collection to PNG and put it on GitHub
#45Re: I converted my demoscene font collection to PNG and put it on GitHub
#46Re: I converted my demoscene font collection to PNG and put it on GitHub
#47Earlier quoted context omitted.
> I don't claim rights to any of these works. That’s not how copyright works.
Typefaces nor bitmap fonts are copyrightable.
Re: I converted my demoscene font collection to PNG and put it on GitHub
#48This is such a cool passion project, thanks for sharing your collection with us. Will bookmark this one for sure. It's great to see remnants of the demoscene pop up like this from time to time. I'm sure there are many of us relative old-timers here that got their first taste of graphics programming thanks to those demoscene BBS tuts from back in the day (Denthor of Asphyxia anyone?). Just the other day I was reminisc…
mov ax, 13h
int 10h
The two most important lines of asm for any teen trying to emulate their demoscene heroes.Re: I converted my demoscene font collection to PNG and put it on GitHub
#49Re: I converted my demoscene font collection to PNG and put it on GitHub
#50Earlier quoted context omitted.
Thanks for posting! To turn this into a font for a sprite sheet would take some sort of mapping for each.. Autosegmentation seems maybe practical. Are the glyphs in any order? I just poked around and it doesn't seem so. Indexing them according to character code would be a fair amount of work by hand. Maybe a handwriting Neural Net? Hmm.. I have an old one somewhere
The few I've opened appear to cover a 60-character segment of the ASCII table from 0x20 to 0x5B in row major order with a fixed glyph size indicated in the file name.
https://github.com/ianhan/BitmapFonts/blob/main/32_32V1.png https://github.com/ianhan/BitmapFonts/blob/main/32X32-F1.png
Still, it's a good point that there's some ordering. Maybe it's not so bad setting up an index by hand for each group.