Skip to content Skip to sidebar Skip to footer

Sails Ejs-view After Html-pdf Usage Does Not Render Image

I need to be able to render html views (nothing new there) and to provide the same views as PDF file to the final user. The first case works perfectly on my side : I managed to ren

Solution 1:

all you have to do is use full path of image while render on pdf controller

var variables = {
  path: sails.config.appPath + 'assets/images/ymca.jpg'
};

view

<img class="smaller" src="<%= path %>" alt="Sample image #2" />

while render on pdf using html-pdf, it does not work with absolute path.

Post a Comment for "Sails Ejs-view After Html-pdf Usage Does Not Render Image"