我正在使用Dymo模板创建Dymo标签。我希望添加包含链接数据文本的QR代码。每当我将数据链接到QR代码时,它会自动将QR代码格式化为一个网站,并在文本的开头添加"url:“。当我添加链接数据时,是否有办法阻止dymo将我的数据格式化为一个网站?我更希望它的格式为文本。
发布于 2022-08-01 12:45:00
按常规创建模板,但使用普通条形码代替QR代码。使用文本编辑器打开模板文件,然后将BarcodeFormat标记更改为包含QRCOde。如果需要,还可以将大小更改为“大”。
<?xml version="1.0" encoding="utf-8"?>
<DesktopLabel Version="1">
<DYMOLabel Version="3">
...
<DynamicLayoutManager>
...
<LabelObjects>
...
<BarcodeObject>
...
<BarcodeFormat>QRCode</BarcodeFormat>
...
<Size>Large</Size>
...
</BarcodeObject>
</LabelObjects>
</DynamicLayoutManager>
</DYMOLabel>
...
</DesktopLabel>https://developers.dymo.com/2011/11/29/printing-qr-code-part-1/
https://stackoverflow.com/questions/73158376
复制相似问题