Skip to main content

2 functions that provide convenient and efficient ways to resize images to a square with custom backgrounds and convert images to the ICO format

Project description

2 functions that provide convenient and efficient ways to resize images to a square with custom backgrounds and convert images to the ICO format

pip install pic2square2icon

Tested against Windows 10 / Python 3.10 / Anaconda

The functions resize_with_background and pic2ico can be used by developers or individuals who work with image processing or need to manipulate images for various purposes. Here are some potential use cases for each function:

resize_with_background:

  • Graphic designers who want to resize an image to a specific size (square) while maintaining its aspect ratio and adding a background

  • Web developers who need to generate thumbnail images with a consistent size and background for their websites.

  • Content creators who want to resize and add a background to their images for social media posts (instagram or facebook timeline) or presentations.

pic2ico:

  • Software developers who need to convert image files to the ICO (icon) format for use in applications or software interfaces.
  • Designers who want to create custom icons from their existing image assets.
  • System administrators or IT professionals who need to generate ICO files for use as desktop icons or shortcuts.
from pic2square2icon import resize_with_background, pic2ico
import cv2

test = 1
fg = r"C:\test\fg.png"
bg = r"C:\test\bg.png"
target_size = 512
resized_image = resize_with_background(fg, target_size, bg)
pic2ico(src=resized_image, dst=rf"C:\test\{test}.ico")
resized_image.save(rf"C:\test\{test}.png")


test = 2
fg = r"C:\test\fg.png"
bg = "orange"
target_size = 512
resized_image = resize_with_background(fg, target_size, bg)
pic2ico(src=resized_image, dst=rf"C:\test\{test}.ico")
resized_image.save(rf"C:\test\{test}.png")

test = 3
fg = r"C:\test\fg.png"
bg = (255, 255, 0)
target_size = 512
resized_image = resize_with_background(fg, target_size, bg)
pic2ico(src=resized_image, dst=rf"C:\test\{test}.ico")
resized_image.save(rf"C:\test\{test}.png")

test = 4
fg = r"C:\test\bg.png"
bg = cv2.imread(r"C:\test\fg.png")
target_size = 512
resized_image = resize_with_background(fg, target_size, bg, background_ratio=2)
pic2ico(src=resized_image, dst=rf"C:\test\{test}.ico")
resized_image.save(rf"C:\test\{test}.png")

test = 5
fg = r"C:\test\fg.png"
bg = None
target_size = 512
resized_image = resize_with_background(fg, target_size, bg, background_ratio=2)
resized_image.save(rf"C:\test\{test}.png")
pic2ico(src=resized_image, dst=rf"C:\test\{test}.ico")

bg.png

fg.png

1.png

2.png

3.png

4.png

5.png

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

pic2square2icon-0.11.tar.gz (24.4 kB view details)

Uploaded Source

Built Distribution

pic2square2icon-0.11-py3-none-any.whl (24.8 kB view details)

Uploaded Python 3

File details

Details for the file pic2square2icon-0.11.tar.gz.

File metadata

  • Download URL: pic2square2icon-0.11.tar.gz
  • Upload date:
  • Size: 24.4 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/4.0.2 CPython/3.10.10

File hashes

Hashes for pic2square2icon-0.11.tar.gz
Algorithm Hash digest
SHA256 9fac99f3ff88041b56b6c9dde262d8c9b0d47a9fea9ccb53bd16ac7f0d7dee21
MD5 d2817713ab71f8494a83a9776f5278a6
BLAKE2b-256 17e00415f89970c1e12ea96cd3cc6be73cb6b6d8eb78ec1b199cf2369766cbfd

See more details on using hashes here.

File details

Details for the file pic2square2icon-0.11-py3-none-any.whl.

File metadata

File hashes

Hashes for pic2square2icon-0.11-py3-none-any.whl
Algorithm Hash digest
SHA256 226274261bcf39bf9c0b2df7a9ea240930a2ea1a340af03da30883f114996da6
MD5 18a05edaf4a88e554fdaf2569d43ebf9
BLAKE2b-256 c66999af96d22c484f21da14e3d0eb0fe5092ae0a8c1644e8897f42a16ce68ed

See more details on using hashes here.

Supported by

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