NodeJS Pdfmake how to add an image

Mohamed Borhene Hamedi

I'm using the api pdfmake in nodeJS to generate pdf files http://pdfmake.org/#/ but i do not not know how to add image to the document and always i get below error

error invalid image, images dictionary should contain dataURL entries (or local file paths in node.js) 

This is how i add the image and it exist in the same folder of the code:

body: [
    [{ rowSpan: 2, image: 'data:aa/png' }, 'Capteur', '', 'image', 'image', 'image'],
    ['', 'Health', '', 'Proximite', 'Lumiere', 'Geroscope'],
]

I need some helps and thank you.

eol

In your example you're not specifing a valid base64-encoded string. You need to change it to a correct base64-encoded string (note that you can use e.g. this website to convert your png to a base64-encoded string or you let node do the conversion as they did in this issue):

const pdfDefinition = {
    content: [          
        { rowSpan: 2, image:'data:image/png;base64,<put-your-base64-string-here>'}          
    ]       
}

Also note that only JPEG and PNG images are supported currently.

この記事はインターネットから収集されたものであり、転載の際にはソースを示してください。

侵害の場合は、連絡してください[email protected]

編集
0

コメントを追加

0

関連記事

分類Dev

How to center align table - PDFMAKE

分類Dev

Image not showing when generating pdf in angularjs using pdfmake

分類Dev

How to add text above the image?

分類Dev

How to add a background image to string?

分類Dev

How to use external library on angular-cli? (pdfmake)

分類Dev

How to add an Image Resizing transform to CNTK

分類Dev

Xcode Swift how to add image to UIAlertController options?

分類Dev

How to add image on the border of a winform panel?

分類Dev

How to add pagination in php image grid view?

分類Dev

How to add image to v-card in vuetify

分類Dev

Google Maps How to add Image into InfoWindow

分類Dev

How to add a custom image/icon in balsamiq mockups?

分類Dev

How to add a custom image in MGWT ImageButton

分類Dev

how to add image to listview from drawable

分類Dev

How do you add a swirl to an image (image distortion)?

分類Dev

GIMP. How To Add a Small Moveable, Resizeable Image To A Larger Image?

分類Dev

NodeJS: add options to npmrc

分類Dev

How do I add a CA root certificate inside a docker image?

分類Dev

How do I add a CA root certificate inside a docker image?

分類Dev

How do I add a CA root certificate inside a docker image?

分類Dev

How do I add an image and a label to a tab bar item with SwiftUI

分類Dev

How to add an image as a header/footer in Markdown for a PDF document

分類Dev

How to exclude app settings from a docker image (and add them to the container)?

分類Dev

How to add polygon points and draw it on an image in fabric js

分類Dev

How do I add a simple image overlay in Mapbox Javascript?

分類Dev

How to add an image with alt tag but without caption in Pandoc?

分類Dev

How to add cropVariants to an image field in TYPO3 flexform

分類Dev

How to add a CSS class to clicked image in Vue.js

分類Dev

How to add an image into a spot colour channel for a PDF document using ABCpdf?

Related 関連記事

  1. 1

    How to center align table - PDFMAKE

  2. 2

    Image not showing when generating pdf in angularjs using pdfmake

  3. 3

    How to add text above the image?

  4. 4

    How to add a background image to string?

  5. 5

    How to use external library on angular-cli? (pdfmake)

  6. 6

    How to add an Image Resizing transform to CNTK

  7. 7

    Xcode Swift how to add image to UIAlertController options?

  8. 8

    How to add image on the border of a winform panel?

  9. 9

    How to add pagination in php image grid view?

  10. 10

    How to add image to v-card in vuetify

  11. 11

    Google Maps How to add Image into InfoWindow

  12. 12

    How to add a custom image/icon in balsamiq mockups?

  13. 13

    How to add a custom image in MGWT ImageButton

  14. 14

    how to add image to listview from drawable

  15. 15

    How do you add a swirl to an image (image distortion)?

  16. 16

    GIMP. How To Add a Small Moveable, Resizeable Image To A Larger Image?

  17. 17

    NodeJS: add options to npmrc

  18. 18

    How do I add a CA root certificate inside a docker image?

  19. 19

    How do I add a CA root certificate inside a docker image?

  20. 20

    How do I add a CA root certificate inside a docker image?

  21. 21

    How do I add an image and a label to a tab bar item with SwiftUI

  22. 22

    How to add an image as a header/footer in Markdown for a PDF document

  23. 23

    How to exclude app settings from a docker image (and add them to the container)?

  24. 24

    How to add polygon points and draw it on an image in fabric js

  25. 25

    How do I add a simple image overlay in Mapbox Javascript?

  26. 26

    How to add an image with alt tag but without caption in Pandoc?

  27. 27

    How to add cropVariants to an image field in TYPO3 flexform

  28. 28

    How to add a CSS class to clicked image in Vue.js

  29. 29

    How to add an image into a spot colour channel for a PDF document using ABCpdf?

ホットタグ

アーカイブ