geoff golder
geoff golder
same problem
Also very interested in this feature. I think it is a pretty significant feature/fork, especially since a cursory glance around the internets doesn't have this problem really solved anywhere. It...
> Just trying to share my user experience. Other hobbiests I have talked to outright avoid OLM entirely. I am so many hours into realizing that this is a bug...
I will make the docker rebuild everytime there is a push to the debian image, which is often. It won't be perfect, but it will be much more up to...
Example of how I am using this: ```javascript function _get_logo(logo_path){ var bitmap = fs.readFileSync(logo_path); var scale = 1.2; var heightEMU = _inch2emu(.63, scale); var widthEMU = _inch2emu(1.15, scale); var heightOff...
You don't get the error if you take out the part with the images? The shape (`spPr`) might be necessary as well. ``` spPr: { xfrm: { off: { x:...
This is what I use: ``` function _inch2emu(inch, scale){ scale = scale || 1; return Math.floor(scale * inch * 914400); } ```
Windows only, but HIGHLY recommended if you are trying to debug openxml https://www.microsoft.com/en-us/download/details.aspx?id=30425 You want the open xml productivity tool; it will give you much, much better errors than what...
``` const input = document.getElementById("Demodata"); html2canvas(input) .then((canvas) => { const imgData = canvas.toDataURL('image/png'); wb["!images"] = []; wb["!images"].push({ name: 'image1.png', data: imgData, opts: { base64: true }, position: { type: 'twoCellAnchor',...
@subrat7 It looks like you are missing these two fields on the root of the object ``` type: 'png', spPr: { xfrm: { off: { x: 0, y: 0 },...