Reputation: 83
I am working on the stock inventory angular web application. I want to generate and print the barcode label sticker for each of the stock items. I have generated the barcode. Now, I want to make a label sticker that has the content and barcode.
Do we have any library for the same in Angular? Or should I design using HTML and CSS? Also following are the challenges I am facing in developing this feature:
I tried to design using HTML and CSS, but it is not dynamic and fails if an existing label is of a different size. Can anyone please direct me on this or share some links for the same?
Upvotes: 0
Views: 208
Reputation: 713
Supporting multiple printers companies is not an easy task.
I've made an Angular app where you can print barcode sticker for the Dymo printer device.
It includes many things just to support one company, here is what I did for Dymo :
After all, if you are able to print sticker from multiples printers device, the user will just have the second requirement to make it works (drivers).
He just have to choose which device he's using and your code will do the job.
Upvotes: 0