1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19
|
.. SPDX-License-Identifier: BSD-2-Clause
Copyright 2013-2023, John McNamara, jmcnamara@cpan.org
.. _ex_images_bytesio:
Example: Inserting images from a URL or byte stream into a worksheet
====================================================================
This program is an example of inserting images from a Python
:class:`io.BytesIO` byte stream into a worksheet.
The example byte streams are populated from a URL and from a local file.
See the :func:`insert_image` method for more details.
.. image:: _images/images_bytesio.png
.. literalinclude:: ../../../examples/images_bytesio.py
|