Как добавить текст водяного знака в файл docx с помощью python? - PullRequest
0 голосов
/ 10 мая 2019

Я манипулирую файлом docx с помощью модуля python-docx, который, похоже, не поддерживает водяные знаки.Каков возможный способ добавления текста водяного знака в файл docx с использованием python?

Редактировать: я создал пустой документ с текстом водяного знака = ' Tariq '.Это включает файл header1.xml в архивированной версии файла docx.

    <?xml version="1.0" encoding="UTF-8" standalone="yes"?>
<w:hdr mc:Ignorable="w14 wp14" xmlns:mc="http://schemas.openxmlformats.org/markup-compatibility/2006" xmlns:o="urn:schemas-microsoft-com:office:office" xmlns:r="http://schemas.openxmlformats.org/officeDocument/2006/relationships" xmlns:v="urn:schemas-microsoft-com:vml" xmlns:w="http://schemas.openxmlformats.org/wordprocessingml/2006/main" xmlns:w10="urn:schemas-microsoft-com:office:word" xmlns:w14="http://schemas.microsoft.com/office/word/2010/wordml" xmlns:wp="http://schemas.openxmlformats.org/drawingml/2006/wordprocessingDrawing" xmlns:wp14="http://schemas.microsoft.com/office/word/2010/wordprocessingDrawing" xmlns:wpg="http://schemas.microsoft.com/office/word/2010/wordprocessingGroup" xmlns:wps="http://schemas.microsoft.com/office/word/2010/wordprocessingShape">
    <w:p>
        <w:pPr>
            <w:pStyle w:val="Header"/>
            <w:rPr/>
        </w:pPr>
        <w:r>
            <w:rPr/>
            <w:pict>
                <v:shapetype adj="10800" coordsize="21600,21600" id="shapetype_136" o:spt="136" path="m@9,l@10,em@11,21600l@12,21600e">
                    <v:stroke joinstyle="miter"/>
                    <v:formulas>
                        <v:f eqn="val #0"/>
                        <v:f eqn="sum @0 0 10800"/>
                        <v:f eqn="sum @0 0 0"/>
                        <v:f eqn="sum width 0 @0"/>
                        <v:f eqn="prod @2 2 1"/>
                        <v:f eqn="prod @3 2 1"/>
                        <v:f eqn="if @1 @5 @4"/>
                        <v:f eqn="sum 0 @6 0"/>
                        <v:f eqn="sum width 0 @6"/>
                        <v:f eqn="if @1 0 @8"/>
                        <v:f eqn="if @1 @7 width"/>
                        <v:f eqn="if @1 @8 0"/>
                        <v:f eqn="if @1 width @7"/>
                    </v:formulas>
                    <v:handles>
                        <v:h position="@0,21600"/>
                    </v:handles>
                </v:shapetype>
                <v:shape fillcolor="silver" id="PowerPlusWaterMarkObject" o:spid="shape_0" stroked="f" style="position:absolute;margin-left:-0.05pt;margin-top:203.3pt;width:498.5pt;height:257.65pt;rotation:315;mso-position-horizontal:center;mso-position-horizontal-relative:margin;mso-position-vertical:center;mso-position-vertical-relative:margin" type="shapetype_136">
                    <v:path textpathok="t"/>
                    <v:textpath fitshape="t" on="t" string="Tariq" style="font-family:&quot;Liberation Sans&quot;;font-size:1pt" trim="t"/>
                    <w10:wrap type="none"/>
                    <v:fill color2="#3f3f3f" o:detectmouseclick="t" opacity="0.5" type="solid"/>
                    <v:stroke color="#3465a4" endcap="flat" joinstyle="round"/>
                </v:shape>
            </w:pict>
        </w:r>
        <w:bookmarkStart w:id="0" w:name="__UnoMark__0_101710128"/>
        <w:bookmarkStart w:id="1" w:name="__UnoMark__0_101710128"/>
        <w:bookmarkEnd w:id="1"/>
    </w:p>
</w:hdr>
Добро пожаловать на сайт PullRequest, где вы можете задавать вопросы и получать ответы от других членов сообщества.
...