Skip to main content

A library to draw MDI icons onto PIL Image objects.

Project description

MDI PIL

This is a small library made to easily generate PIL Image objects of mdi (Material Design Icon) icons. It also comes with a tool to convert user supplied image files into image objects that adhere to the main sizing principles of mdi icons. There are also two additional functions, parse_weather_icon and make_battery_icon. The former returns a string with the mdi icon corresponding to a given weather condition. The latter creates an image that is similar to the icon showing the battery status in phones, with additional options like fill icons and the like. See the doc strings of those functions for how they work.

To see a project using both implementations, check out inkBoard Designer. It uses PythonScreenStackManager for the actual dashboards (which is what this module was originally written for), and the UI makes heavy use of the ttkbootstrap module (and it is also where the idea for that module was born).

Install

pip install mdi-pil

Examples

Make a PIL image object with the icon "mdi:test-tube" and open a window to show it:

from PIL import Image
import mdi_pil as mdi

icon = "mdi:test-tube"
img = Image.new("RGBA", (100,100), None)

img = mdi.draw_mdi_icon(img, icon, icon_color="steelblue")
img.show()

Convert the image file "speaker-outline.png" into an mdi-like icon:

from PIL import Image
import mdi_pil as mdi

img = "speaker-outline.png"

img = mdi.make_mdi_icon(img, 100, color="steelblue")
img.show()

ttkbootstrap

Version 1.1.0 comes with an optional extension to use MDI icons in tkinter interfaces. To have functional theming, the ttkbootstrap package is used.

installation: pip install mdi-pil[ttkbootstrap] (If ttkbootstrap is not yet installed)

Usage:

The classes return PhotoImage objects, so they are used in the same way you'd use a PIL.ImageTk.PhotoImage.

For more info on styling than is in the docstrings, look at the documentation for ttkbootstrap and tkinter itself.

A very rudimentary example is below, which can be run as is:

from ttkbootstrap import Window, Button
from mdi_pil.ttkbootstrap_mdi import MDIIcon, MDIButton

window_size = (750,200)
root = Window(size=window_size)

KEEP = []   ##Images need to be saved somewhere to prevent garbage collecion

icon = "mdi:test-tube"
icon_size = int(window_size[1]/2)
imgTk = MDIIcon(icon, (100,100), bootstyle="info")
iconWidget = Button(root,image=imgTk, cursor="hand2", 
                        width=100, padding=-1
                        )
KEEP.append(imgTk)
iconWidget.pack()

icon = "mdi:earth"
text = "Hello World!"
button_size = (window_size[0],int(window_size[1]/2))
imgTk = MDIButton(icon, text, button_size, bootstyle="success")
buttonWidget = Button(root,image=imgTk, cursor="hand2")
KEEP.append(imgTk)
buttonWidget.pack()

root.mainloop()

Project details


Download files

Download the file for your platform. If you're not sure which to choose, learn more about installing packages.

Source Distribution

mdi_pil-1.1.5.tar.gz (688.7 kB view details)

Uploaded Source

Built Distribution

If you're not sure about the file name format, learn more about wheel file names.

mdi_pil-1.1.5-py3-none-any.whl (676.3 kB view details)

Uploaded Python 3

File details

Details for the file mdi_pil-1.1.5.tar.gz.

File metadata

  • Download URL: mdi_pil-1.1.5.tar.gz
  • Upload date:
  • Size: 688.7 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.0.1 CPython/3.12.8

File hashes

Hashes for mdi_pil-1.1.5.tar.gz
Algorithm Hash digest
SHA256 50a29c7b890525045a10ff02e7863da82334afe174b70b86ea7aa96465cab8e1
MD5 5a895de7d3438c9cb435e3196bb1100e
BLAKE2b-256 b30fa7550acc079f714f56200dfc6cdb16398d11f182ae397ea5284b91f74a41

See more details on using hashes here.

Provenance

The following attestation bundles were made for mdi_pil-1.1.5.tar.gz:

Publisher: publish.yml on Slalamander/mdi_pil

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file mdi_pil-1.1.5-py3-none-any.whl.

File metadata

  • Download URL: mdi_pil-1.1.5-py3-none-any.whl
  • Upload date:
  • Size: 676.3 kB
  • Tags: Python 3
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.0.1 CPython/3.12.8

File hashes

Hashes for mdi_pil-1.1.5-py3-none-any.whl
Algorithm Hash digest
SHA256 9f6e94256b60d57aae306f42765ccf878ebd38d605890ad4b80173cae6d05dd1
MD5 2ff636d3a732388732f9d8c2331bd940
BLAKE2b-256 7d1292aefcd0d5f412b78ef97b92813b0f182f7aba9731c5971c91f74763aea3

See more details on using hashes here.

Provenance

The following attestation bundles were made for mdi_pil-1.1.5-py3-none-any.whl:

Publisher: publish.yml on Slalamander/mdi_pil

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

Supported by

AWS Cloud computing and Security Sponsor Datadog Monitoring Depot Continuous Integration Fastly CDN Google Download Analytics Pingdom Monitoring Sentry Error logging StatusPage Status page