-
Notifications
You must be signed in to change notification settings - Fork 57
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
Support Printing Text #50
Conversation
I'm stuck and I could use a hand. I believe my only option is to give the catprinter a set of lattice points (x,y coords telling the printer where to print in 2d space). So I need to take a string as input, and produce a bunch of x,y coords that represent the text. Sounds hard, I wanted to do a couple more things with my weekend besides making some type of algo for this. Someone has to have already done this before, right? If you know of anything, or have any potential leads you can throw my way, I'm all ears. |
Hey @sstiglitz thanks for getting start on the PR and on the discussion. I think we have some options. From the top of my head:
Then we would have to teach the Python script how to render this into an image. We already have OpenCV as a dependency, so we could use that.
In fact, the app that was reverse engineered apparently has already some notion of HTML. I think there might be some capacity of text printing, but it would need more investigation (I suspect it's rendered into an image and then sent to the printer). These are the notes I took when I was taking a look at it, if someone wants to dig in:
|
Alright should be good to go. I wanted to go with option 3, but I was running into too many issues when trying to run from a headless server. |
In my Golang port, I do this via markdown and wkhtmltopdf: https://github.com/jo-m/mdcatprint |
Hey, thank you for putting all this together, what a great idea.
There is #42 which talked about the idea of printing text, but nothing was implemented and the linked PR isn't the solve.
What I would like is I could issue a command like
And it would print something very close to the image in the repo.
With this, my hope is to create a silly shopping list creator. Glue a magnet to the back of this badboy, pop it on the fridge, then send a text/email/tweet, "Buy more peanut butter". Tear it off on your way to the store. Voila, shopping list creator.