Skip to main content
cancel
Showing results for 
Search instead for 
Did you mean: 

Get Fabric Certified for FREE during Fabric Data Days. Don't miss your chance! Request now

Reply
guadano
New Member

Unable to print SharePoint images to PDF

Hi everyone!

I have a 'Simple image' visual (developed by Vincent Faigt) that points to images hosted on SharePoint. When I print the report to PDF, the visual doesn't print correctly, giving the error "The visual doesn't support exporting.". I think I've tried all the free external visuals, but none of them print.

Does anyone know how I could achieve this? I've also thought about maybe using HTML and the 'HTML Content (Lite)' visual, but I can't get the code to display the image.

 

Thank you so much

Kind regards

1 ACCEPTED SOLUTION
tayloramy
Community Champion
Community Champion

Hi @guadano,

 

The error is unfortuneately expected: most custom visuals can’t be exported/printed. Only certified custom visuals are supported in PDF/PPT exports; uncertified visuals show “This visual doesn’t support exporting.” (community thread, StackOverflow).

 


Try embeding images as Base64

  • In Power Query, use SharePoint connector to read image binaries.

  • Convert to Base64 and prefix a data URI so the image is in the model, not fetched at export time:

// Columns: [ImageBinary] is the file content
= Table.AddColumn(
    PreviousStep,
    "ImageDataUri",
    each "data:image/png;base64," & Binary.ToText([ImageBinary], BinaryEncoding.Base64),
    type text
  )

 

If you found this helpful, consider giving some Kudos. If I answered your question or solved your problem, mark this post as the solution.

View solution in original post

3 REPLIES 3
tayloramy
Community Champion
Community Champion

Hi @guadano,

 

The error is unfortuneately expected: most custom visuals can’t be exported/printed. Only certified custom visuals are supported in PDF/PPT exports; uncertified visuals show “This visual doesn’t support exporting.” (community thread, StackOverflow).

 


Try embeding images as Base64

  • In Power Query, use SharePoint connector to read image binaries.

  • Convert to Base64 and prefix a data URI so the image is in the model, not fetched at export time:

// Columns: [ImageBinary] is the file content
= Table.AddColumn(
    PreviousStep,
    "ImageDataUri",
    each "data:image/png;base64," & Binary.ToText([ImageBinary], BinaryEncoding.Base64),
    type text
  )

 

If you found this helpful, consider giving some Kudos. If I answered your question or solved your problem, mark this post as the solution.

Hello @tayloramy, thank you very much for your help. The solution worked perfectly. Have a great day!

Hi @guadano,

I would also take a moment to thank @tayloramy, for actively participating in the community forum and for the solutions you’ve been sharing in the community forum. Your contributions make a real difference.
 

I wanted to check if you had the opportunity to review the information provided. Please feel free to contact us if you have any further questions.

Regards,
Commnity Support team.

Helpful resources

Announcements
Fabric Data Days Carousel

Fabric Data Days

Advance your Data & AI career with 50 days of live learning, contests, hands-on challenges, study groups & certifications and more!

October Power BI Update Carousel

Power BI Monthly Update - October 2025

Check out the October 2025 Power BI update to learn about new features.

FabCon Atlanta 2026 carousel

FabCon Atlanta 2026

Join us at FabCon Atlanta, March 16-20, for the ultimate Fabric, Power BI, AI and SQL community-led event. Save $200 with code FABCOMM.