-
Notifications
You must be signed in to change notification settings - Fork 77
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Images not coming in the generated PDF #84
Comments
What is the URL itself? What does it look like on the image tag in the HTML in the browser?
You should inspect the image using Developer’s tools and copy the HTML that is the image and try and past here as code so we can examine what the URL is.
Kevin
From: MeenalW [mailto:[email protected]]
Sent: Thursday, December 13, 2018 12:39 AM
To: Xportability/css-to-pdf <[email protected]>
Cc: Subscribed <[email protected]>
Subject: [Xportability/css-to-pdf] Images not coming in the generated PDF (#84)
Hi Team,
I want to convert the HTML present on a SharePoint page to PDF for which i am using your plugin. I can see the image on my page but it is not getting loaded in the PDF.
I have used embedLocalImages : 'true' as well. The image is stored in a SharePoint Library and I have given the absolute path in the image source.
Can you please help me with this issue?
—
You are receiving this because you are subscribed to this thread.
Reply to this email directly, view it on GitHub <#84> , or mute the thread <https://github.com/notifications/unsubscribe-auth/AAsJo8qVKv2PqpS_huv_NErsr8SB_76fks5u4hIsgaJpZM4ZRKVv> . <https://github.com/notifications/beacon/AAsJo7qnS7hMlH5RU0ArUjZPDrYeShiJks5u4hIsgaJpZM4ZRKVv.gif>
|
However, that said … the rendering server is never going to find the absolute path of a local image to your server on it’s server.
The @src you must use must be available to the world as the formatting server must reach back through the internet to get the image to include in the PDF.
A local reference such as “c:\foo\bar\myimage.png” will never work unless that exact path and image existed on the formatting server @cloudformatter.
Normally someone would need some proxy or server that could do something like this:
http://www.myserver.com/getimage?myimage.png
So that @cloudformatter can go to that image link and get the image during the format.
Kevin
From: MeenalW [mailto:[email protected]]
Sent: Thursday, December 13, 2018 12:39 AM
To: Xportability/css-to-pdf <[email protected]>
Cc: Subscribed <[email protected]>
Subject: [Xportability/css-to-pdf] Images not coming in the generated PDF (#84)
Hi Team,
I want to convert the HTML present on a SharePoint page to PDF for which i am using your plugin. I can see the image on my page but it is not getting loaded in the PDF.
I have used embedLocalImages : 'true' as well. The image is stored in a SharePoint Library and I have given the absolute path in the image source.
Can you please help me with this issue?
—
You are receiving this because you are subscribed to this thread.
Reply to this email directly, view it on GitHub <#84> , or mute the thread <https://github.com/notifications/unsubscribe-auth/AAsJo8qVKv2PqpS_huv_NErsr8SB_76fks5u4hIsgaJpZM4ZRKVv> . <https://github.com/notifications/beacon/AAsJo7qnS7hMlH5RU0ArUjZPDrYeShiJks5u4hIsgaJpZM4ZRKVv.gif>
|
I am having the same issue. I have tried on my local server and staging servers and everything I run this it gives me "Failed to load resource: Frame load interrupted". If I remove the image there are no issues. Take a look and let me know what you think. Here is the page https://boraamindustries.dev-mustang.com/boraam/misty-folding-chair/. If you scroll down below the huge image you will see a text link for sell sheet. I am at a loss for this. Any help would be greatly appreciated. |
I do not see any link to execute and debug on that page. One question would be, are you using https or http in the Javascript for the formatting server and other assets? If you are using http and your images are https, they cannot be loaded. |
@MeenalW I have similair issue I had to convert my image to base64 and its worked ! |
Hi Team,
I want to convert the HTML present on a SharePoint page to PDF for which i am using your plugin. I can see the image on my page but it is not getting loaded in the PDF.
I have used embedLocalImages : 'true' as well. The image is stored in a SharePoint Library and I have given the absolute path in the image source.
Can you please help me with this issue?
The text was updated successfully, but these errors were encountered: