HiQPdf with special fonts
I was trying to add this font to the PDF's that was generated by HiQPDF
@font-face {font-family: "Helvetica Neue LT Std";
src: url("//db.onlinewebfonts.com/t/f0db0faa0f4af4630e2db0cd30400f2c.eot");
src: url("//db.onlinewebfonts.com/t/f0db0faa0f4af4630e2db0cd30400f2c.eot?#iefix") format("embedded-opentype"),
url("//db.onlinewebfonts.com/t/f0db0faa0f4af4630e2db0cd30400f2c.woff2") format("woff2"),
url("//db.onlinewebfonts.com/t/f0db0faa0f4af4630e2db0cd30400f2c.woff") format("woff"),
url("//db.onlinewebfonts.com/t/f0db0faa0f4af4630e2db0cd30400f2c.ttf") format("truetype"),
url("//db.onlinewebfonts.com/t/f0db0faa0f4af4630e2db0cd30400f2c.svg#Helvetica Neue LT Std") format("svg"); }
Apparently it generates the PDF files without problem, but after i tried to open the PDF in Adobe Illustrator, AI catches a problem saying: "the document uses fonts that are currently unavailable on your computer" despite that i downloaded the fonts and installed in my pc.
I have used external urls because i am generating the pdfs from a server and not locally, so, i have those questions:
- If I should upload the .ttf files to the server and from the server
copy paste the links. - If the problem is with this font for being very particular
- If I change the code for the font-face.
I need help to solve this problem, thanks for considering my request
pdf pdf-generation font-face adobe-illustrator hiqpdf
add a comment |
I was trying to add this font to the PDF's that was generated by HiQPDF
@font-face {font-family: "Helvetica Neue LT Std";
src: url("//db.onlinewebfonts.com/t/f0db0faa0f4af4630e2db0cd30400f2c.eot");
src: url("//db.onlinewebfonts.com/t/f0db0faa0f4af4630e2db0cd30400f2c.eot?#iefix") format("embedded-opentype"),
url("//db.onlinewebfonts.com/t/f0db0faa0f4af4630e2db0cd30400f2c.woff2") format("woff2"),
url("//db.onlinewebfonts.com/t/f0db0faa0f4af4630e2db0cd30400f2c.woff") format("woff"),
url("//db.onlinewebfonts.com/t/f0db0faa0f4af4630e2db0cd30400f2c.ttf") format("truetype"),
url("//db.onlinewebfonts.com/t/f0db0faa0f4af4630e2db0cd30400f2c.svg#Helvetica Neue LT Std") format("svg"); }
Apparently it generates the PDF files without problem, but after i tried to open the PDF in Adobe Illustrator, AI catches a problem saying: "the document uses fonts that are currently unavailable on your computer" despite that i downloaded the fonts and installed in my pc.
I have used external urls because i am generating the pdfs from a server and not locally, so, i have those questions:
- If I should upload the .ttf files to the server and from the server
copy paste the links. - If the problem is with this font for being very particular
- If I change the code for the font-face.
I need help to solve this problem, thanks for considering my request
pdf pdf-generation font-face adobe-illustrator hiqpdf
Have you tried anything so far? (Like instralling the font on the machine that generates the PDF)
– cybernetic.nomad
Nov 26 '18 at 12:50
Yes, after a recommendation of my partnert, i uploaded the files in the server, and still is not working
– NiñoBoy2001
Nov 30 '18 at 4:22
add a comment |
I was trying to add this font to the PDF's that was generated by HiQPDF
@font-face {font-family: "Helvetica Neue LT Std";
src: url("//db.onlinewebfonts.com/t/f0db0faa0f4af4630e2db0cd30400f2c.eot");
src: url("//db.onlinewebfonts.com/t/f0db0faa0f4af4630e2db0cd30400f2c.eot?#iefix") format("embedded-opentype"),
url("//db.onlinewebfonts.com/t/f0db0faa0f4af4630e2db0cd30400f2c.woff2") format("woff2"),
url("//db.onlinewebfonts.com/t/f0db0faa0f4af4630e2db0cd30400f2c.woff") format("woff"),
url("//db.onlinewebfonts.com/t/f0db0faa0f4af4630e2db0cd30400f2c.ttf") format("truetype"),
url("//db.onlinewebfonts.com/t/f0db0faa0f4af4630e2db0cd30400f2c.svg#Helvetica Neue LT Std") format("svg"); }
Apparently it generates the PDF files without problem, but after i tried to open the PDF in Adobe Illustrator, AI catches a problem saying: "the document uses fonts that are currently unavailable on your computer" despite that i downloaded the fonts and installed in my pc.
I have used external urls because i am generating the pdfs from a server and not locally, so, i have those questions:
- If I should upload the .ttf files to the server and from the server
copy paste the links. - If the problem is with this font for being very particular
- If I change the code for the font-face.
I need help to solve this problem, thanks for considering my request
pdf pdf-generation font-face adobe-illustrator hiqpdf
I was trying to add this font to the PDF's that was generated by HiQPDF
@font-face {font-family: "Helvetica Neue LT Std";
src: url("//db.onlinewebfonts.com/t/f0db0faa0f4af4630e2db0cd30400f2c.eot");
src: url("//db.onlinewebfonts.com/t/f0db0faa0f4af4630e2db0cd30400f2c.eot?#iefix") format("embedded-opentype"),
url("//db.onlinewebfonts.com/t/f0db0faa0f4af4630e2db0cd30400f2c.woff2") format("woff2"),
url("//db.onlinewebfonts.com/t/f0db0faa0f4af4630e2db0cd30400f2c.woff") format("woff"),
url("//db.onlinewebfonts.com/t/f0db0faa0f4af4630e2db0cd30400f2c.ttf") format("truetype"),
url("//db.onlinewebfonts.com/t/f0db0faa0f4af4630e2db0cd30400f2c.svg#Helvetica Neue LT Std") format("svg"); }
Apparently it generates the PDF files without problem, but after i tried to open the PDF in Adobe Illustrator, AI catches a problem saying: "the document uses fonts that are currently unavailable on your computer" despite that i downloaded the fonts and installed in my pc.
I have used external urls because i am generating the pdfs from a server and not locally, so, i have those questions:
- If I should upload the .ttf files to the server and from the server
copy paste the links. - If the problem is with this font for being very particular
- If I change the code for the font-face.
I need help to solve this problem, thanks for considering my request
pdf pdf-generation font-face adobe-illustrator hiqpdf
pdf pdf-generation font-face adobe-illustrator hiqpdf
edited Nov 26 '18 at 15:04
cybernetic.nomad
2,85121121
2,85121121
asked Nov 26 '18 at 6:04
NiñoBoy2001NiñoBoy2001
296
296
Have you tried anything so far? (Like instralling the font on the machine that generates the PDF)
– cybernetic.nomad
Nov 26 '18 at 12:50
Yes, after a recommendation of my partnert, i uploaded the files in the server, and still is not working
– NiñoBoy2001
Nov 30 '18 at 4:22
add a comment |
Have you tried anything so far? (Like instralling the font on the machine that generates the PDF)
– cybernetic.nomad
Nov 26 '18 at 12:50
Yes, after a recommendation of my partnert, i uploaded the files in the server, and still is not working
– NiñoBoy2001
Nov 30 '18 at 4:22
Have you tried anything so far? (Like instralling the font on the machine that generates the PDF)
– cybernetic.nomad
Nov 26 '18 at 12:50
Have you tried anything so far? (Like instralling the font on the machine that generates the PDF)
– cybernetic.nomad
Nov 26 '18 at 12:50
Yes, after a recommendation of my partnert, i uploaded the files in the server, and still is not working
– NiñoBoy2001
Nov 30 '18 at 4:22
Yes, after a recommendation of my partnert, i uploaded the files in the server, and still is not working
– NiñoBoy2001
Nov 30 '18 at 4:22
add a comment |
0
active
oldest
votes
Your Answer
StackExchange.ifUsing("editor", function () {
StackExchange.using("externalEditor", function () {
StackExchange.using("snippets", function () {
StackExchange.snippets.init();
});
});
}, "code-snippets");
StackExchange.ready(function() {
var channelOptions = {
tags: "".split(" "),
id: "1"
};
initTagRenderer("".split(" "), "".split(" "), channelOptions);
StackExchange.using("externalEditor", function() {
// Have to fire editor after snippets, if snippets enabled
if (StackExchange.settings.snippets.snippetsEnabled) {
StackExchange.using("snippets", function() {
createEditor();
});
}
else {
createEditor();
}
});
function createEditor() {
StackExchange.prepareEditor({
heartbeatType: 'answer',
autoActivateHeartbeat: false,
convertImagesToLinks: true,
noModals: true,
showLowRepImageUploadWarning: true,
reputationToPostImages: 10,
bindNavPrevention: true,
postfix: "",
imageUploader: {
brandingHtml: "Powered by u003ca class="icon-imgur-white" href="https://imgur.com/"u003eu003c/au003e",
contentPolicyHtml: "User contributions licensed under u003ca href="https://creativecommons.org/licenses/by-sa/3.0/"u003ecc by-sa 3.0 with attribution requiredu003c/au003e u003ca href="https://stackoverflow.com/legal/content-policy"u003e(content policy)u003c/au003e",
allowUrls: true
},
onDemand: true,
discardSelector: ".discard-answer"
,immediatelyShowMarkdownHelp:true
});
}
});
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
StackExchange.ready(
function () {
StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2fstackoverflow.com%2fquestions%2f53475527%2fhiqpdf-with-special-fonts%23new-answer', 'question_page');
}
);
Post as a guest
Required, but never shown
0
active
oldest
votes
0
active
oldest
votes
active
oldest
votes
active
oldest
votes
Thanks for contributing an answer to Stack Overflow!
- Please be sure to answer the question. Provide details and share your research!
But avoid …
- Asking for help, clarification, or responding to other answers.
- Making statements based on opinion; back them up with references or personal experience.
To learn more, see our tips on writing great answers.
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
StackExchange.ready(
function () {
StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2fstackoverflow.com%2fquestions%2f53475527%2fhiqpdf-with-special-fonts%23new-answer', 'question_page');
}
);
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Have you tried anything so far? (Like instralling the font on the machine that generates the PDF)
– cybernetic.nomad
Nov 26 '18 at 12:50
Yes, after a recommendation of my partnert, i uploaded the files in the server, and still is not working
– NiñoBoy2001
Nov 30 '18 at 4:22