I'm using mediawiki 1.17 so I tried both:
$wgAllowImageTag = true;
$wgRawHtml = true; #I know it's insecure just wanted to see if it'd work
My img tags of the form:
<img src="data:image/gif;base64,R0lGODlhDwAPAKECAAAAzMzM/////
wAAACwAAAAADwAPAAACIISPeQHsrZ5ModrLlN48CXF8m2iQ3YmmKqVlRtW4ML
wWACH+H09wdGltaXplZCBieSBVbGVhZCBTbWFydFNhdmVyIQAAOw=="
alt="Base64 encoded image" width="150" height="150"/>
Are getting rendered as:
<img alt="Base64 encoded image" width="150" height="150" />
If i edit the page, the img tag still has all the data.
Background
I'm exporting kb articles from my CRM system (sugarcrm). Sugar encodes the images linked to each KB article in base64. This makes it pretty convenient for syncing those images to the mediawiki site without having to export / relink images. So, would be great if I could get mediawiki to allow the base64 encoded images. In my case our mediawiki site is not edited by the general public, just members of our company.