Skip to main content

Convert any file into an image

Project description

Imaginenc

PyPI Versions License Build

Convert any file into an image, and images back to files.

Source Code Image

Installation

Imaginenc is available on PyPI:

$ python -m pip install imaginenc

Imaginenc requires Python 3.8+.

Usage

usage: imaginenc [-h] (-e | -d) -i INPUT [-o OUTPUT] [-s SIGN]

Convert any file into an image, and images back to files. Run without args for interactive input mode.

optional arguments:
  -h, --help            show this help message and exit
  -e, --encode          encode file to image
  -d, --decode          decode image to file
  -i INPUT, --input INPUT
                        input file
  -o OUTPUT, --output OUTPUT
                        output folder
  -s SIGN, --sign SIGN  sign the encoded image (max 50 characters)

Examples of imaginenc command

Encode

imaginenc -e -i imaginenc\imaginenc.py -o images -s "Thank you for using this tool!"

Decode

imaginenc -d -i images\imaginenc.py.png -o output

Examples of imaginenc module

Import

import imaginenc

Encode file name and save as image

imaginenc.encode_file_name(
    input_file_path='imaginenc/imaginenc.py',
    output_file_path='images',
    sign='signature'
)

Encode file bytes and return image

with open('imaginenc/imaginenc.py') as f:
    image = imaginenc.encode_bytes_to_image(
        input_file_bytes=f.read(),
        file_name=f.name(),
        sign='signature'
    )

Decode image name and save as original file

metadata = imaginenc.decode_image_name(
    input_file_path='images/imaginenc.py.png',
    output_file_path='output'
)

Decode PIL image to original file bytes

from PIL import Image

image = Image.open('images/imaginenc.py.png')
file_bytes, metadata = imaginenc.decode_image_to_bytes(
    image=image
)

Planned Features

  • Encryption.

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

imaginenc-1.0.1.tar.gz (6.5 kB view hashes)

Uploaded Source

Built Distribution

imaginenc-1.0.1-py3-none-any.whl (7.5 kB view hashes)

Uploaded Python 3

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