- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
‎08-14-2017 05:29 AM
I export the KB article as per the below option.However after export it does not shows the images that are on that KB.
Solved! Go to Solution.
- Labels:
-
Incident Management
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
‎08-14-2017 06:04 AM
Hi Bijender ,
You can use the "Printer friendly version", from the "System Settings" page.Then using Print > Save as PDF in Chrome it does work with images.
If you are using another browser you may consider download PDF printer software which is free and will do the job.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
‎09-05-2022 01:37 PM
Hi! It is not the same but when creating a PDF from the article body's HTML string I've noticed that the images do not show on PDF because the HTML looks like this
<p><img src="/sys_attachment.do?sys_id=attachImgID" alt="" width="214px" height="143px"></p>
When I replace the /sys_attachment with sys_attachment it looks like this
<p><img src="sys_attachment.do?sys_id=attachImgID" alt="" width="214px" height="143px"></p>
And then it works! The image shows up! I guess that this could be the problem here too