asdf23 / qtWrite

Single stroke font generator

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

qtWrite

Single stroke font generator image

Placeholder for single stroke font generator. Write text in your own handwriting using a plotter, or generate a woff2 font that mimicks your handwriting.

This code is in a alpha state. What you can do currently is to generate an SVG document containing words using your own handwriting. To do that it takes a two step process.

image

To come: Generate a woff font with a collasped border. Streamline process to generate SVG document.

Possibly to come: GUI to capture text to convert. Export gcode. Interact with plotter in real-time.

To do: Clean up code Figure out license(s) Requests? (need help) Load existing font, skip ahead to missing letters

To use: Compile: This has only been tested on Fedora. I'm not sure how/if other OS's will work (need help)

	Install Required libraries:
	dnf install libxkbcommon-devel qxkb make gcc qt6-qtdeclarative cmake @development-tools gcc-c++ qt6-qtbase qt6-qtbase-devel qt6-qtquick3d-devel qt6-qtquick3d qt6-qtsvg-devel qt6-qtsvg
	
	Optionally turn on debugging messages:
	export QT_LOGGING_RULES="*.debug=true; qt.*.debug=false"
	
	Compile and run:
	clear && cmake -S . -B build && pushd build && make && ./writeboard && popd
	
	In the lower screen draw the first letter, adjust the spacing and curvature, when it's ready click on the letter "a", this will save the data in the ./data directory and reset the tool for letter "b"
	The next button (back) will clear the drawing. Use this to clear the current letter.
	The next button (refresh) will generate a svg file. This file will be used to genreate the font and/or to draw your text.
	To draw text open the svg file. A separate script is included (./data/sentenceToUseDefs.js.txt). Open the savedGlyph.svg file in a browser, set the text in line one of the file then execute the script from the console. 
	  This will place the letters on the page adjusting for spacing between the letters.
	In a future version the next button (save - missing) will generate a woff file.
	To generate gcode you could use a tool like juicy. I would integrate this but currently there is no GUI to capture the text.

To generate a TTF font: Install svg2ttf npm install -g svg2ttf Load up the preview mode in this tool, click the Save icon, Add a name, family and descripton. Optionally set a text rotation and a width. This is required if you want to see the fonts in a tool like word since the lines have a width of 0. Run svg2ttf data/myFont.svg myFont.ttf then install the font depending on the OS.

Need help: Not sure how to resolve dependanies and run on other OS's Not familiar with QML, I want to open a sepate window, for unrelated GUI inputs

The application is pretty ugly, The following screen shows a preview of the text to be generated

image

Each letter is captured then edited for spacing / boarders image

About

Single stroke font generator

License:GNU General Public License v3.0


Languages

Language:JavaScript 65.3%Language:QML 29.7%Language:C++ 3.7%Language:CMake 1.3%