Вопрос

Как я могу вставить изображение от URL (http) с xlsswriter?Это из документации:

worksheet.insert_image('B2', 'python.png')
.

или

worksheet1.insert_image('B10', '../images/python.png')
.

Но это только для файла.Я хочу добавить изображение с URL с веб-сервера.Можете ли вы помочь?

Это было полезно?

Решение

url = "http://abcdef.com/picture.jpg"
data = urllib.request.urlopen(url).read()
file = open("image.jpg", "wb")
file.write(data)
file.close()
worksheet.insert_image('B2', 'image.jpg')
.

Другие советы

# Read an image from a remote url.
url = 'https://raw.githubusercontent.com/jmcnamara/XlsxWriter/' + \
      'master/examples/logo.png'

image_data = BytesIO(urllib2.urlopen(url).read())

# Write the byte stream image to a cell. Note, the filename must be
# specified. In this case it will be read from url string.
worksheet.insert_image('B2', url, {'image_data': image_data})
.

http://xlsxwriter.readthedoc.io/example_images_bytesio.html

Лицензировано под: CC-BY-SA с атрибуция
Не связан с StackOverflow
scroll top