we are using a lot of textboxes to get text into various positions at our docx files. The problem seems to be that these are not recognized during PDF output. I receive the following error:
30.12.2013 13:43:08 *WARN * AbstractConversionContext: NOT IMPLEMENTED: support for w:pict; without v:imagedata (AbstractMessageWriter.java, line 46)
When browsing the document.xml, I found that word seems to implement textboxes as follows:
Using xml Syntax Highlighting
<w:pict>
<v:shapetype id="_x0000_t202" coordsize="21600,21600" o:spt="202" path="m,l,21600r21600,l21600,xe">
<v:stroke joinstyle="miter"/>
<v:path gradientshapeok="t" o:connecttype="rect"/>
</v:shapetype>
<v:shape id="_x0000_s1026" type="#_x0000_t202" style="position:absolute;margin-left:90.55pt;margin-top:9.3pt;width:180.6pt;height:172.35pt;z-index:251660288;mso-width-percent:400;mso-height-percent:200;mso-width-percent:400;mso-height-percent:200;mso-width-relative:margin;mso-height-relative:margin" stroked="f">
<v:textbox style="mso-fit-shape-to-text:t">
<w:txbxContent>
<w:p w:rsidR="008659C7" w:rsidRPr="008659C7" w:rsidRDefault="008659C7">
<w:pPr>
<w:rPr>
<w:sz w:val="72"/>
<w:szCs w:val="72"/>
</w:rPr>
</w:pPr>
<w:proofErr w:type="spellStart"/>
<w:r w:rsidRPr="008659C7">
<w:rPr>
<w:sz w:val="72"/>
<w:szCs w:val="72"/>
</w:rPr>
<w:t>Textbox</w:t>
</w:r>
<w:proofErr w:type="spellEnd"/>
<w:r w:rsidRPr="008659C7">
<w:rPr>
<w:sz w:val="72"/>
<w:szCs w:val="72"/>
</w:rPr>
<w:t xml:space="preserve"> Test</w:t>
</w:r>
</w:p>
</w:txbxContent>
</v:textbox>
</v:shape>
</w:pict>
<v:shapetype id="_x0000_t202" coordsize="21600,21600" o:spt="202" path="m,l,21600r21600,l21600,xe">
<v:stroke joinstyle="miter"/>
<v:path gradientshapeok="t" o:connecttype="rect"/>
</v:shapetype>
<v:shape id="_x0000_s1026" type="#_x0000_t202" style="position:absolute;margin-left:90.55pt;margin-top:9.3pt;width:180.6pt;height:172.35pt;z-index:251660288;mso-width-percent:400;mso-height-percent:200;mso-width-percent:400;mso-height-percent:200;mso-width-relative:margin;mso-height-relative:margin" stroked="f">
<v:textbox style="mso-fit-shape-to-text:t">
<w:txbxContent>
<w:p w:rsidR="008659C7" w:rsidRPr="008659C7" w:rsidRDefault="008659C7">
<w:pPr>
<w:rPr>
<w:sz w:val="72"/>
<w:szCs w:val="72"/>
</w:rPr>
</w:pPr>
<w:proofErr w:type="spellStart"/>
<w:r w:rsidRPr="008659C7">
<w:rPr>
<w:sz w:val="72"/>
<w:szCs w:val="72"/>
</w:rPr>
<w:t>Textbox</w:t>
</w:r>
<w:proofErr w:type="spellEnd"/>
<w:r w:rsidRPr="008659C7">
<w:rPr>
<w:sz w:val="72"/>
<w:szCs w:val="72"/>
</w:rPr>
<w:t xml:space="preserve"> Test</w:t>
</w:r>
</w:p>
</w:txbxContent>
</v:textbox>
</v:shape>
</w:pict>
Parsed in 0.003 seconds, using GeSHi 1.0.8.4
So it is true, it is a w:pict without v:imagedata. Is this to be implemented soon? Or can I implement it myself? I am quite proficient in java, but not in docx or pdf processing.