Untitled

mail@pastecode.io avatar
unknown
plain_text
a year ago
642 B
1
Indexable
Never
  if (toolRenderer && getProperty("showToolImage")) {
    var id = useToolNumber ? tool.number : (currentSection.getId() + 1);
    var path = "tool" + id + ".png";
    var width = 2.5 * 100;
    var height = 2.5 * 133;
    try {
      if (!exportedTools[id]) {
        toolRenderer.exportAs(path, "image/png", tool, width, height);
        exportedTools[id] = true; // do not export twice
      }
      c4 = "<table class=\"info\" cellspacing=\"0\">" +
        makeRow("<td class=\"image\"><img width=\"100px\" src=\"" + encodeURIComponent(path) + "\"/></td>") +
        "</table>";
    } catch (e) {
      // ignore
    }
  }