Libre Barcode Project
41–50 of 71 posts
Re: Libre Barcode Project
#42Re: Libre Barcode Project
#43Damn, yes please. Another cool font, but less original, I stumbled upon recently is Marelle https://marelle.forge.apps.education.fr/ for cursive.
Re: Libre Barcode Project
#44Re: Libre Barcode Project
#45Earlier quoted context omitted.
Aside from obfuscating the source code to sell licenses, how does this benefit from WASM? Barcodes have been generated for decades on low-resource embedded devices. Even what would have been a modest-to-low-end machine 25 years ago would have no problem handling the compute needed for this job. On this end, it just looks like the user has to deal with the penalty of dealing with 1 MB of resources when hitting the mai…
The benefit of WASM in this case is that you can wrap a mature library written in C/C++ (in this case, Zint), and run it in a runtime that supports WASM, e.g. the browser. There's plenty of people who occasionally need to create barcodes, and not in some industrial, automated way, and a browser is just an easy way to accomplish that. Yes, you have 1MB loaded when you load the page, but hopefully that will be served f…
Re: Libre Barcode Project
#46just curious: are barcodes better in anyway compared to a QR code?
Re: Libre Barcode Project
#47Now, do it with QR codes...
Re: Libre Barcode Project
#48Earlier quoted context omitted.
> https://marelle.forge.apps.education.fr/ This website is in French so I was unable tounderstand the text and the website is very resistant to automatic translation by Google Translate > https://marelle-forge-apps-education-fr.translate.goog/?_x_t... What gives?
No problem translating it with Firefox : " Marelle is a free cursive police force for teaching writing in elementary school. Introduction This project is supported by the Digital Directorate for Education of the Ministry of National Education, and developed in the Forge of Digital Educational Commons. The Marelle police is designed specifically for teaching cursive writing in elementary school, it was developed by a…
(the first line made me laugh)
I now understand why there is no English version (though still surprised Google could not translate it)
Re: Libre Barcode Project
#49Earlier quoted context omitted.
> https://marelle.forge.apps.education.fr/ This website is in French so I was unable tounderstand the text and the website is very resistant to automatic translation by Google Translate > https://marelle-forge-apps-education-fr.translate.goog/?_x_t... What gives?
"Marelle is a free cursive font designed for teaching handwriting in [French] elementary school." I'm not sure they owe it to anyone to make the website available in English :-)
Thanks
Re: Libre Barcode Project
#50Do not do this unless you do not have any other choice. Preferrably use whatever native barcode support of the printer involved, if it does not have that, just generate the barcode as vector image or bitmap with a resolution that is a integer fraction of the printers resolution. Generating correct Code128 as a SVG is about the same amount of work as generating the correct input for some sort of barcode font (the hard…
I once worked at a company that used a Code39 font cartridge in HP Laserjets. When HP stopped putting font cartridge slots in their printers, I had the task of intercepting print jobs and detecting the font selection sequence, then taking the text and converting it to a Code128 bitmap graphic. It wasn't hard at all, kind of fun actually.