Custom Images for Custom Ribbon Buttons in SharePoint 2013 SharePoint Hosted Apps

I was struggling to get my custom images loaded for use on my custom ribbon buttons that I defined in my SharePoint Hosted App for SharePoint 2013 / SharePoint Online until I read this post…

https://sharepoint.stackexchange.com/questions/57328/is-it-possible-to-package-deploy-and-use-my-own-image-for-a-ribbon-customactio

People assume that ~appWebUrl is parsed for the image attributes and it makes total sense, however this is not the way these attributes are handled.

image

As you can see in the discussion attached above you have two choices:

1. Use the name of your application

Get the name from the Name property in the app manifest as shown here

image

use that in the image path as shown here

image

2. Use a Base64 string representation of your image

The Base64 string is easy to get and there are a few apps on the web like this one

https://sharepoint.stackexchange.com/questions/57328/is-it-possible-to-package-deploy-and-use-my-own-image-for-a-ribbon-customactio

Get the string for both the 16px and 32px versions of your image and then add to your elements.xml like this:

image

Here are the strings I used if you

Image16by16="data:image/png;base64,[your image string here]"

Image32by32="data:image/png;base64,[your image string here]"