We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
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
I am currently using the library and followed this example. In the example, labels are printed one at a time using a for loop, as shown below:
for (const record of [dataOne, dataTwo]) { await tag.print(record, { copies: 2, cutAtEnd: true }); }
I am wondering if it is possible to print multiple labels in one call to improve efficiency, using something like this:
await tag.print([dataOne, dataTwo], { highResolution: true });
Does the library support this kind of batch printing? If not, are there plans to add this feature in the future?
Thank you for your help
The text was updated successfully, but these errors were encountered:
Hi, I will try to work this in on the next release. As for now, a for loop is needed for batch printing.
Sorry, something went wrong.
yeasir01
No branches or pull requests
I am currently using the library and followed this example. In the example, labels are printed one at a time using a for loop, as shown below:
I am wondering if it is possible to print multiple labels in one call to improve efficiency, using something like this:
Does the library support this kind of batch printing? If not, are there plans to add this feature in the future?
Thank you for your help
The text was updated successfully, but these errors were encountered: