var fDesc=new Array(); fDesc[0] = "Gimp WebP Plugin is an open-source plugin that provides Gimp with the ability to load and export WebP images. During export, a dialog is presented that provides access to image quality settings.

In order to build this plugin, you will need the following app, tools, and libraries installed:
- CMake 2.8.12 .
- Gimp 2.8 or 2.9 development files.
- Webp 0.4 development files."; function tShowHide(id, show) { var s = document.getElementById("desc"); if ((s.innerHTML.length<=212 || show==1) && show!=2) { s.innerHTML = fDesc[id]; if (document.getElementById('m1')) document.getElementById('m1').style.display='none'; if (document.getElementById('m2')) document.getElementById('m2').style.display='none'; if (document.getElementById('more_txt')) document.getElementById('more_txt').style.display='inline'; } else { s.innerHTML = ''; } }