bhargavnova / python-helper-modules

MIT License
7 stars 24 forks source link

Image Format Converter Python Module 🖼️🔄 #6

Closed bhargavnova closed 9 months ago

bhargavnova commented 9 months ago

Objective:

Create a Python module that enables users to convert images from one format to another. This module should provide a straightforward way to transform images.

Features:

  1. Format Support:

    • The module should support conversion between popular image formats such as JPEG, PNG, GIF, TIFF, etc.
  2. Simplicity and Efficiency:

    • Design the module to be easy to use with a minimalistic, allowing users to convert images with a single function call.

Example Usage:

import image_converter

# Convert an image from JPEG to PNG format
image_converter.convert_image("/path/to/input_image.webp", "/path/to/output_image.png", "png")

Difficulty: Beginner Tags: Python, Utility, Customization

stktyagi commented 9 months ago

Hello, I want contribute and solve this issue for hacktoberfest. Kindly assign this to me. Thanks!

bhargavnova commented 9 months ago

Sure!!

stktyagi commented 9 months ago

I have completed the code for this issue.

bhargavnova commented 9 months ago

Thanks for your contribution : )