How To Support Panel Image Rendering in Grafana Server

Author: , July 15th, 2020

To render a panel image, you must install the Grafana Image Renderer plugin.

How To Force SVG To Use the Correct Content-Type

Author: , April 22nd, 2016

If when trying to use SVG as an image <img src=”image.svg”> or as a CSS background-image, the browser doesn’t display it, your web host is probably serving the SVG with the wrong content-type. Add this to your web server config or .htaccess file: AddType image/svg+xml .svg .svgz

How To Generate Any Size Dummy Image On The Fly

Author: , September 27th, 2011

I found this VERY cool website, http://dummyimage.com/, that lets me custom-build a placeholder image on the fly, like this:

How To Disable Right-Click On Images Using jQuery

Author: , April 15th, 2011

jQuery(‘img’).bind( ‘contextmenu’, function(e){ return false; } );