win32com.client: AttributeError: wdHeaderFooterPrimary и AttributeError: wdAlignParagraphCenter

Мы готовим следующий скрипт Python для отображения изображений в таблицах слов.

import matplotlib.pyplot as plt
import pylab 
import win32com.client as win32  
import os

# Skip picture making parts

#Generate word file
#Create and formating
wordapp = win32.Dispatch("Word.Application") #create a word application object

wordapp.Visible = 1 # hide the word application

doc=wordapp.Documents.Add() 

# create a new application

doc.PageSetup.RightMargin = 20

doc.PageSetup.LeftMargin = 20

doc.PageSetup.Orientation = 1

# a4 paper size: 595x842

doc.PageSetup.PageWidth = 595
doc.PageSetup.PageHeight = 842

header_range= doc.Sections(1).Headers(win32.constants.wdHeaderFooterPrimary).Range

header_range.ParagraphFormat.Alignment = win32.constants.wdAlignParagraphCenter

header_range.Font.Bold = True

header_range.Font.Size = 12

header_range.Text = ""
#Create and formating

#insert table
total_column = 3
total_row = len(compound_name)+1
rng = doc.Range(0,0)
rng.ParagraphFormat.Alignment = win32.constants.wdAlignParagraphCenter
table = doc.Tables.Add(rng,total_row, total_column)
table.Borders.Enable = True
if total_column > 1:
    table.Columns.DistributeWidth()
#table title
table.Cell(1,1).Range.InsertAfter("title1")
table.Cell(1,2).Range.InsertAfter("title2")
table.Cell(1,3).Range.InsertAfter("title3")
#collect image
frame_max_width= 167 # the maximum width of a picture
frame_max_height= 125 # the maximum height of a picture
#
for index, filename in enumerate(filenames): # loop through all the files and folders for adding pictures
 if os.path.isfile(os.path.join(os.path.abspath("."), filename)): # check whether the current object is a file or not
      if filename[len(filename)-3: len(filename)].upper() == 'PNG': # check whether the current object is a JPG file


                    cell_column= index % total_column + 1
                    cell_row = index / total_column + 2


                    cell_range= table.Cell(cell_row, cell_column).Range
                    cell_range.ParagraphFormat.LineSpacingRule = win32.constants.wdLineSpaceSingle
                    cell_range.ParagraphFormat.SpaceBefore = 0 
                    cell_range.ParagraphFormat.SpaceAfter = 3

        #this is where we are going to insert the images
                    current_pic = cell_range.InlineShapes.AddPicture(os.path.join(os.path.abspath("."), filename))


doc.SaveAs(os.path.join(os.path.abspath("."),"final.doc"))
doc.Close()

Однако при его запуске из-за этой строки выскочит следующая ошибка

 header_range= doc.Sections(1).Headers(win32.constants.wdHeaderFooterPrimary).Range

Вот сообщение об ошибке:

Traceback (most recent call last):
  File "Drawing.py", line 99, in <module>
  header_range= doc.Sections(1).Headers(win32.constants.wdHeaderFooterPrimary).Range
  File "C:\Python27\Lib\site-packages\win32com\client\__init__.py", line 170, in __getattr__
   raise AttributeError(a)
  AttributeError: wdHeaderFooterPrimary

Мне кажется, что с "wdHeaderFooterPrimary" что-то не так. Поэтому я просто отключаю следующие строки и снова бегу.

#header_range= doc.Sections(1).Headers(win32.constants.wdHeaderFooterPrimary).Range

#header_range.ParagraphFormat.Alignment = win32.constants.wdAlignParagraphCenter

#header_range.Font.Bold = True

#header_range.Font.Size = 12

#header_range.Text = ""

Появится другое сообщение об ошибке:

Traceback (most recent call last):
  File "C:Drawing.py", line 114, in <module>
    rng.ParagraphFormat.Alignment = win32.constants.wdAlignParagraphCenter
  File "C:\Python27\Lib\site-packages\win32com\client\__init__.py", line 170, in __getattr__
    raise AttributeError(a)
AttributeError: wdAlignParagraphCenter

Я запускаю python 2.7.6 в 64-битных окнах 7. Установлены matplotlib.pyplot и pylab. Win32com.client - это 32-разрядная версия 2.7.6 и сборка 219. Office - это 64-разрядная версия, но в обзоре сайта загрузки говорится, что 32-разрядная версия Win32 должна нормально работать в 64-разрядной версии Office / 64-разрядной версии Windows 7 (http://sourceforge.net/projects/pywin32/?source=navbar). Могу ли я узнать, есть ли у какого-нибудь гуру какие-нибудь комментарии / решения? Спасибо!


person Chubaka    schedule 26.07.2014    source источник


Ответы (1)


Константы доступны, только если доступна статическая диспетчеризация. Требуется либо использование EnsureDispatch (вместо Dispatch), либо создание библиотеки типов с помощью makepy.py или genclient (что EnsureDispatch делает за вас). Поэтому я бы попробовал использовать EnsureDispatch. Примечание: он находится в win32com.client.gencache:

xl = win32com.client.gencache.EnsureDispatch ("Word.Application")
person Oliver    schedule 27.07.2014
comment
Привет, Шилли, спасибо за комментарий! Когда я пробую EnsureDispatch, появляется следующее сообщение об ошибке: Traceback (последний вызов последним): файл C: \ Drawing.py, строка 80, в модуле ‹module› wordapp = win32.EnsureDispatch (Word.Application) AttributeError: ' 'объект не имеет атрибута' EnsureDispatch ' - person Chubaka; 27.07.2014
comment
Спасибо @Schollii. Это было решение моей проблемы. - person hugo24; 03.12.2014
comment
Спасибо, это объясняет, почему у меня это сработало после того, как я перешел с EnsureDispatch на Dispatch, но не работал на новых машинах. - person jdh80; 25.02.2016