hi @brunomanguinho, assets by default search in the jsreport store, if you want to read a file from the filesystem you need to enable the external file access, add this to your jsreport options (either your configuration file or the options you pass when calling jsreport({ /* options here */ }):

{ extensions: { assets: { allowedFiles: "**/*.*", searchOnDiskIfNotFoundInStore: true } } }

after it the assets will be allowed to read from the filesystem and will find your image.