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

Register now to learn Fabric in free live sessions led by the best Microsoft experts. From Apr 16 to May 9, in English and Spanish.

Reply
Anonymous
Not applicable

Is there a way to use binary images in CARD BROWSER visual?

I have got to use binary in some visuals with the process explained in this blog:
https://www.blue-granite.com/blog/simple-steps-to-embed-images-in-power-bi

However, I have failed to use a binary image in the card browser visual. The image is not shown.
Does the card browser only admits hyperlinks to online images?
Is there a workaround so card browser admits the format: "data:image/png;base64, " & [BinaryToText]  that other visuals admit?

Regards!
Thanks
Nacho

1 ACCEPTED SOLUTION
dm-p
Super User
Super User

Hi @Anonymous,

Yes - it works fine. I did a quick mockup using a data URL and it loads, e.g.:

image.png

I checked the source code and it just uses a plain image URL in HTML/CSS so as long as the data URL is valid, you'll be fine.

The part the visual does not like in your expression is this:

, "

You are adding a space character after the comma and this doesn't generate a valid URL. If you remove it, it will be okay. For completeness, here's what worked for me (taking yours as an example):

DAX

ImageURL = "data:image/png;base64," & [BinaryToText]

M (Power query) Custom Column

"data:image/png;base64," & [BinaryToText]

Hopefully this is all you need 🙂

Daniel





Did I answer your question? Mark my post as a solution!

Proud to be a Super User!


My course: Introduction to Developing Power BI Visuals


On how to ask a technical question, if you really want an answer (courtesy of SQLBI)




View solution in original post

2 REPLIES 2
dm-p
Super User
Super User

Hi @Anonymous,

Yes - it works fine. I did a quick mockup using a data URL and it loads, e.g.:

image.png

I checked the source code and it just uses a plain image URL in HTML/CSS so as long as the data URL is valid, you'll be fine.

The part the visual does not like in your expression is this:

, "

You are adding a space character after the comma and this doesn't generate a valid URL. If you remove it, it will be okay. For completeness, here's what worked for me (taking yours as an example):

DAX

ImageURL = "data:image/png;base64," & [BinaryToText]

M (Power query) Custom Column

"data:image/png;base64," & [BinaryToText]

Hopefully this is all you need 🙂

Daniel





Did I answer your question? Mark my post as a solution!

Proud to be a Super User!


My course: Introduction to Developing Power BI Visuals


On how to ask a technical question, if you really want an answer (courtesy of SQLBI)




Anonymous
Not applicable

Yes, that was the problem. It works now. Thanks for the help!

Regards!
Nacho

Helpful resources

Announcements
Microsoft Fabric Learn Together

Microsoft Fabric Learn Together

Covering the world! 9:00-10:30 AM Sydney, 4:00-5:30 PM CET (Paris/Berlin), 7:00-8:30 PM Mexico City

PBI_APRIL_CAROUSEL1

Power BI Monthly Update - April 2024

Check out the April 2024 Power BI update to learn about new features.

April Fabric Community Update

Fabric Community Update - April 2024

Find out what's new and trending in the Fabric Community.