我想将图像添加到xlsx的标题中,但是在生成的文件中什么都没有显示(我们的应用程序选择一个.csv,然后使用带有xlsxwriter的.py文件转换为.xlsx,然后使用一个libreoffice命令)
我们已经尝试过使用不同的图像格式和大小,但这没什么区别。
还尝试了运气好的库(https://xlsxwriter.readthedocs.io/example_headers_footers.html?highlight=set_header)中的示例。
我们使用了worksheet.insert_image()
,它添加了图像但未添加到标题中。这是我们当前的结果:https://ibb.co/QNXv8bM
我们想直接在标题上添加图像(也许使用set_header()
),但是到目前为止,我们对该方法的尝试尚未产生任何结果。当我们使用set_header()
放置图片时,它在标题上什么也没有显示。
这是我们正在使用的python文件的一部分:
def create_worksheet(workbook, data, image, p_header_text):
'''
Creates and formats worksheet
:param workbook: Main workbook
:type workbook: xlsxwriter.Workbook
:param data: dict with data to use in the worksheet
:type data: dict
data example:
data = {'headings': [head1, head2, ..., headn], 'rows': [[data1, ..., datan], ...]}
:return: Nothing
'''
worksheet = workbook.add_worksheet()
### Page Setup
worksheet.set_margins(top=1.4)
worksheet.set_landscape()
worksheet.hide_gridlines(2)
#worksheet.set_paper(9) # 9 = A4
worksheet.fit_to_pages(1, 0)
### Header and footer
header_text = p_header_text
#worksheet.set_header('&C&16&"Calibri,Bold"{}'.format(header_text))
worksheet.set_header('&L&G', {'image_left': '/home/reports/LTA-logo.jpg'})
worksheet.set_footer('&L&D&RPage &P of &N')
#worksheet.insert_image('A1', '/home/reports/LTA-logo.jpg', {'x_offset': 0, 'y_offset': 0})
#worksheet.set_header('&C&G', {'image_left': '/home/reports/LTA-logo.jpg'})
### Create table
create_table(worksheet, data)
注意:worksheet.set_header('&C&16&"Calibri,Bold"{}'.format(header_text))
正常工作,它在标题上显示文本。问题是当我们尝试放置图像时...
预期结果是使图像出现在标题中,并与标题保持一致,如下图所示:https://ibb.co/vQTytK2
注释2 :出于业务原因(公司),我无法在打印屏幕上显示数据
答案 0 :(得分:2)
它应该与XlsxWriter一起使用。您只需要以正确的方式构建格式字符串,其中&L
的左侧部分和&C
的中央部分即可。
例如:
import xlsxwriter
workbook = xlsxwriter.Workbook('headers_footers.xlsx')
worksheet = workbook.add_worksheet('Image')
# Adjust the page top margin to allow space for the header image.
worksheet.set_margins(top=1.3)
worksheet.set_header('&L&[Picture]&C&16&"Calibri,Bold"Revenue Report',
{'image_left': 'python-200x80.png'})
workbook.close()
请注意,我在示例中使用了更明确的&[Picture]
,但&G
也可以使用。
输出: