mibollma
mibollma

Reputation: 15108

DYMO label printing. Font size & printing result issues

I've implemented label printing using the DYMO compatibility SDK as well as the more recent label printing framework using the DYMO LabelWriter 450. Although both implementations work fine in a best case situation there are two things that bother me for it to be solid.

Did any of you work with those libraries and got better solutions to those issues?

Upvotes: 1

Views: 4837

Answers (1)

Brian Mains
Brian Mains

Reputation: 50728

In reading the guide found here: http://download.dymo.com/usermanuals/create_label_content.pdf

In the Object Details section, it shows a "Text Scaling" option, which the default is text to fit. In the XML definition that yields the following TextFitMode element, which the setting needed is "None" instead of "ShrinkToFit".

<TextObject>
 ..
 <TextFitMode>None</TextFitMode>
 ..
</TextObject>

This can be done in the Dymo Label 8, by right-clicking on the label and selecting Properties, finding the Text Scaling dropdown in the properties window. If the properties window doesn't show up in the right-click menu, I had some trouble with getting it to show up.

Upvotes: 1

Related Questions