var fDesc=new Array(); fDesc[0] = "InkscapeBatch gives you a way to convert/export Inkscape SVG files into other file formats such as PNG or EPS. You can define batch projects with steps such as group Inkscape objects, loops, arrays and much, much more.

Main features:

- GUI with Wizard to helps beginners
- Script based conversion or rather export process
- Adapted for small thru very large image conversion projects
- Take advantage of convenient macros for complex tasks
- Process more than one SVG source file in a project
- Define arrays and use iteration to reduce manual effort
- Handles efficiently batch conversion
- Support Inkscape version 0.47.x and 0.48.x"; 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 = ''; } }