I am using fontface to define a link to a barcode font.and the output charachter is not the same as the input character
My Pdf.css file
defined the font and the class
@font-face {
font-family: eanbarcode;
font-style: normal;
font-weight: normal;
src: url("Barcode3of9_0.ttf")
}
.list .ean { font-family: eanbarcode; font-size: 100%; white-space: nowrap; line-height: 3cm }
The issue is that the * at the front and end of my barcode is converted to a +
Which of course makes it non-scannable.
The HTML received by Prince is
<td align="left" valign="top" bgcolor="#ffffff" width="1%" nowrap="" class="ean"><font class="repData" color="#000000">*5023242333809*</font></td>
Do I need to escape the * somehow..
The same behaviour is received If I use any FONT for a barcode...
help!
My Pdf.css file
defined the font and the class
@font-face {
font-family: eanbarcode;
font-style: normal;
font-weight: normal;
src: url("Barcode3of9_0.ttf")
}
.list .ean { font-family: eanbarcode; font-size: 100%; white-space: nowrap; line-height: 3cm }
The issue is that the * at the front and end of my barcode is converted to a +
Which of course makes it non-scannable.
The HTML received by Prince is
<td align="left" valign="top" bgcolor="#ffffff" width="1%" nowrap="" class="ean"><font class="repData" color="#000000">*5023242333809*</font></td>
Do I need to escape the * somehow..
The same behaviour is received If I use any FONT for a barcode...
help!