So if anybody still uses this plugin, here's a fix for tag-text-image appearing incorrectly after export (In preview mode we have all sprites each in a seperate file, but after export we get sprite-sheets)
And it always showed us a whole sprite sheet image, when a single frame expected.
Download fixed version (Google drive)
Or change runtime.js code by yourself:
Line 1316 (change ctx.drawImage line to make it look like)
ctx.drawImage(img.img, img.offx, img.offy, img.frame_width, img.frame_height, startX, y, img.width, img.height);
Line 2189 (To make object look like this)
this.images[name] = {
img: img,
offx: inst.curFrame.offx,
offy: inst.curFrame.offy,
frame_width: inst.curFrame.width,
frame_height: inst.curFrame.height,
width: inst.width,
height: inst.height,
yoffset: yoffset_
};