A package for creating basic images with XML layouts
Project description
layout-image
: A package for generating simple text-based images
A python package for creating basic images with XML layouts.
Installation
The package can be installed using the following command, which copies the GitHub repository:
pip install git+https://github.com/dirckvdende/layout-image.git
Basic Example
Several examples of layouts that can be rendered can be found in the examples directory. A very basic example of XML code that displays the text "Hello World!" in an image is:
<?xml version="1.0"?>
<image>
<text>Hello World!</text>
</image>
Every layout image has <image>
as the root element. Inside it can be some layout of elements. Only <text>
elements can contain text that will be rendered to the screen. This example can be converted to an image using
python -m layoutimg ./examples/hello-world.xml
This will produce a PNG image that has the same path as the XML file, with .png
appended to it. Alternatively the PNG can be generated using Python code:
from layoutimg import LayoutImage
# Open the example file and read contents
with open("./examples/hello-world.xml", "r") as f:
text = f.read()
# Create a layout image from the source file text
image = LayoutImage(text)
# Generate image data
image.generate()
# Save image to PNG file
image.save("./examples/hello-world.xml.png")
Syntax
To display multiple lines of text, the <row>
tag can be used as follows:
<?xml version="1.0"?>
<image>
<row><text>Foo</text></row>
<row><text>Bar</text></row>
</image>
Similarly, the <col>
tag can be used to display elements next to each other. Rows and columns can be nested to form a table:
<?xml version="1.0"?>
<image>
<col>
<row><text>Fizz</text></row>
<row><text>Buzz</text></row>
</col>
<col>
<row><text>Bazz</text></row>
<row><text>Fuzz</text></row>
</col>
</image>
A description of every tag can be found at Element Tags.
Attributes
That style and modify the elements, attributes can be used. For example, a row or column can be given a background color as follows:
<?xml version="1.0"?>
<image>
<row background-color="blue"><text>Foo</text></row>
</image>
We can also change the width of the row, and display the text in the center:
<?xml version="1.0"?>
<image>
<row background-color="blue" width="500"><text text-align="center">Foo</text></row>
</image>
A complete list of attributes with possible values can be found at Element Attributes.
Project details
Release history Release notifications | RSS feed
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distribution
Built Distribution
File details
Details for the file layout-image-0.2.0.tar.gz
.
File metadata
- Download URL: layout-image-0.2.0.tar.gz
- Upload date:
- Size: 8.9 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/5.0.0 CPython/3.10.12
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 7454a86a86102894db5cd096ef6ab2d6f6266a85fcd488bd99e87a0193e12fc5 |
|
MD5 | 380cad463c5ad6dc25bd5a0085cc7cbf |
|
BLAKE2b-256 | d4fcae90b7967d8a194653035deabfeeedb4a5b64dccb3672303e7f71a52ed36 |
File details
Details for the file layout_image-0.2.0-py3-none-any.whl
.
File metadata
- Download URL: layout_image-0.2.0-py3-none-any.whl
- Upload date:
- Size: 11.4 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/5.0.0 CPython/3.10.12
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 0bf7be335801538322a96b6c96bd41519f4e86d28c6315516c83ef8740dd72ca |
|
MD5 | fe0f3f0969af3388049c3cb51364aff8 |
|
BLAKE2b-256 | b45a9d5d75b95d98c190aef06b55713369c9dd663358230cc877594ec82d2ca2 |