Hello,
I have fonts installed on my server from [
www.barcodesinc.com] and I am having troubles figuring out how to get HTMLConverterX to embed the font into the destination PDF.
Is there a way to convert the HTML to PDF? I am open to options available from your other server-side products.
Thank you.
Ted
---
"\Program Files\TotalHTMLConverterX\HTMLConverterX.exe" barcode.html barcode.pdf
barcode.html file is (different div tags for different styles, just trying to figure out what will work):
<html>
<head>
<title>Barcode Font Test</title>
<style type="text/css" >
@font-face {font-family: bbff;
src: url("[
servername]

;}
.barcode { font-family: "Free 3 of 9 Regular", verdana, calibri; font-size: 36pt; }
.barcodeX { font-family: "Free 3 of 9 Extended Regular", verdana, calibri; font-size: 36pt; }
.bbff1 { font-family:bbff; }
</style>
</head>
<body>
barcode: <div class="barcode">*574656*</div><br>
barcodeX: <div class="barcodeX">*574656*</div><br>
plain: <div >*574656*</div><br>
bbff1: <div class="bbff1">*574656*</div><br>
</body>
</html>