summary refs log tree commit diff
diff options
context:
space:
mode:
authorJune McEnroe <june@causal.agency>2018-09-29 17:19:17 -0400
committerJune McEnroe <june@causal.agency>2018-09-29 17:19:17 -0400
commita36443af9e8c505c036c56ee5df1dc32f5cf3e9d (patch)
tree319297c6fb240d95a2746b7b40045fda6654a951
parentAdd box drawing glyphs to sans6x10 (diff)
downloadsrc-a36443af9e8c505c036c56ee5df1dc32f5cf3e9d.tar.gz
src-a36443af9e8c505c036c56ee5df1dc32f5cf3e9d.zip
Add -c and -s to psf2png
-rw-r--r--bin/man/psf2png.117
-rw-r--r--bin/psf2png.c33
2 files changed, 40 insertions, 10 deletions
diff --git a/bin/man/psf2png.1 b/bin/man/psf2png.1
index 3450dce8..bbabd484 100644
--- a/bin/man/psf2png.1
+++ b/bin/man/psf2png.1
@@ -8,6 +8,8 @@
 .
 .Sh SYNOPSIS
 .Nm
+.Op Fl c Ar cols
+.Op Fl s Ar str
 .Op Ar file
 .
 .Sh DESCRIPTION
@@ -17,7 +19,20 @@ renders the PSF2 font
 or standard input
 to PNG
 on standard output.
-The glyphs are arranged in 32 columns.
+.
+.Pp
+The arguments are as follows:
+.Bl -tag -width Ds
+.It Fl c Ar cols
+Arrange glyphs in
+.Ar cols
+columns.
+The default number of columns is 32.
+.It Fl s Ar str
+Render glyphs for string
+.Ar str
+rather than all glyphs.
+.El
 .
 .Sh SEE ALSO
 .Xr pngo 1 ,
diff --git a/bin/psf2png.c b/bin/psf2png.c
index 4aff6c11..1d95c8a3 100644
--- a/bin/psf2png.c
+++ b/bin/psf2png.c
@@ -21,10 +21,9 @@
 #include <stdlib.h>
 #include <string.h>
 #include <sysexits.h>
+#include <unistd.h>
 #include <zlib.h>
 
-static const uint32_t GlyphCols = 32;
-
 static uint32_t crc;
 static void pngWrite(const void *ptr, size_t size) {
 	fwrite(ptr, size, 1, stdout);
@@ -42,8 +41,22 @@ static void pngChunk(const char *type, uint32_t size) {
 }
 
 int main(int argc, char *argv[]) {
+	uint32_t cols = 32;
+	const char *str = NULL;
+
+	int opt;
+	while (0 < (opt = getopt(argc, argv, "c:s:"))) {
+		switch (opt) {
+			break; case 'c': cols = strtoul(optarg, NULL, 0);
+			break; case 's': str = optarg;
+			break; default:  return EX_USAGE;
+		}
+	}
+	if (!cols && str) cols = strlen(str);
+	if (!cols) return EX_USAGE;
+
 	const char *path = NULL;
-	if (argc > 1) path = argv[1];
+	if (optind < argc) path = argv[optind];
 	
 	FILE *file = path ? fopen(path, "r") : stdin;
 	if (!file) err(EX_NOINPUT, "%s", path);
@@ -76,8 +89,9 @@ int main(int argc, char *argv[]) {
 
 	pngWrite("\x89PNG\r\n\x1A\n", 8);
 
-	uint32_t width = header.glyph.width * GlyphCols;
-	uint32_t rows = (header.glyph.len + GlyphCols - 1) / GlyphCols;
+	uint32_t count = (str ? strlen(str) : header.glyph.len);
+	uint32_t width = header.glyph.width * cols;
+	uint32_t rows = (count + cols - 1) / cols;
 	uint32_t height = header.glyph.height * rows;
 
 	pngChunk("IHDR", 13);
@@ -89,12 +103,13 @@ int main(int argc, char *argv[]) {
 	uint8_t data[height][1 + width];
 	memset(data, 0, sizeof(data));
 
-	for (uint32_t i = 0; i < header.glyph.len; ++i) {
-		uint32_t row = header.glyph.height * (i / GlyphCols);
-		uint32_t col = 1 + header.glyph.width * (i % GlyphCols);
+	for (uint32_t i = 0; i < count; ++i) {
+		uint32_t row = header.glyph.height * (i / cols);
+		uint32_t col = 1 + header.glyph.width * (i % cols);
+		uint32_t g = (str ? str[i] : i);
 		for (uint32_t y = 0; y < header.glyph.height; ++y) {
 			for (uint32_t x = 0; x < header.glyph.width; ++x) {
-				uint8_t bit = glyphs[i][y][x / 8] >> (7 - x % 8) & 1;
+				uint8_t bit = glyphs[g][y][x / 8] >> (7 - x % 8) & 1;
 				data[row + y][col + x] = -bit;
 			}
 		}