python (65.1k questions)
javascript (44.2k questions)
reactjs (22.7k questions)
java (20.8k questions)
c# (17.4k questions)
html (16.3k questions)
r (13.7k questions)
android (12.9k questions)
Add a caption to an image with docx4j
i would like to link a caption to an image using docx4j.
BinaryPartAbstractImage imagePart;
imagePart = BinaryPartAbstractImage.createImagePart(wordMLPackage, bytes);
Inline inline = imagePart.createI...
Vassili Durand
Votes: 0
Answers: 2
raise UnrecognizedImageError docx.image.exceptions.UnrecognizedImageError
if pattern.search(para.text):
if para.text.find(str("#i.aadhaarfront_image|height:200|width:200")) > -1:
para._element.clear_content()
path = f"media/images/{(self.userdetail...
khansahab
Votes: 0
Answers: 0
POI XWPF insert content from another docx in a bookmark
APACHE POI XWPF problem:
in a main .docx document I have a cell with a bookmark:
<w:bookmarkStart w:id="8" w:name="PAR_1"/>
<w:r>
<w:rPr>
...
Lof
Votes: 0
Answers: 1
insert image into a specific place of docx file using golang
I am trying to fill a docx template dynamically using the golang package "github.com/lukasjarosch/go-docx".
I can replace all the text fields accordingly with this code:
package main
impor...
ABDULLOKH MUKHAMMADJONOV
Votes: 0
Answers: 0