summaryrefslogtreecommitdiff
path: root/tablib/packages/xlwt/examples/image.py
blob: f926b8d3578b2a5a885782e25e72c3da44941309 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
#!/usr/bin/env python
# -*- coding: windows-1251 -*-
# Copyright (C) 2005 Kiseliov Roman

from xlwt import *

w = Workbook()
ws = w.add_sheet('Image')
ws.insert_bitmap('python.bmp', 2, 2)
ws.insert_bitmap('python.bmp', 10, 2)

w.save('image.xls')