I'm still surprised how often I get still direct mail with something "handwritten" on it, where it's obviously not, because every same letter looks the same.
This seems like a problem solvable with just software, i.e. introducing artificial variations in the fonts. Why the seemingly overly complicated jump to using real pens in a plotter?
It's the font improvements that could possibly fool me, not the indentation of a real pen.
Adobe’s CFF font format (found tucked away inside OTF font files) has a ‘random’ operator, though most font handlers I’ve seen don’t bother to implement it.
I think a naive randomness would look bad. As in "I have 3 variations of each letter and choose one on random". Because how I write a letter is influenced by letters before (so have to create ligatures I guess). But for the same reason, randomly making some variation to the letters would feel "off" if it doesn't take into account the letters before and after. There is a flow to writing.
Of course, doing anything is better than having the two e's in "meet" be identical, which spoils it being real handwriting from the get-go.
It's hard to introduce random into actual fonts. I don't even know how I'd do that. What I could've done is just generate the SVG and then print it, that would've been a lot easier but way less fun.
The reason you get crappy printed mail that's obviously a fake is because it's cheap and easy. Not everyone wants to build robots.
Create hundreds of variations of a font by making small random changes to each character. Then set each character on an envelope to use a random font from that set.
I have no idea if this is possible, but I remember an article in Douglas Hofstadter's "Metamagical Themas" about Knuth's "Metafont". It sounded like one could define certain variables to alter the equations of the font. This could be one way of easily introducing randomness.
This seems like a problem solvable with just software, i.e. introducing artificial variations in the fonts. Why the seemingly overly complicated jump to using real pens in a plotter?
It's the font improvements that could possibly fool me, not the indentation of a real pen.