Skip to main content

bigimg lets you generate big images with just a lambda expression.

Project description

bigimg
======

Easily create big images. With just a lambda expression.

An image can be seen as a function that maps a real-valued (x, y)
coordinate onto a color. With this in mind, I made bigimg.

``bigimg.py`` allows you to define a canvas width and height, a vector
function which will conduct an element wise map over each element in the
canvas, and an output file. If your function returns a single floating
point value, the resulting image will be gray scale, if it returns a
3-tuple, it will be color.

Installation
------------

::

$ git clone https://github.com/stephenbalaban/bigimg.git
$ cd bigimg
$ sudo pip install -e .

You can also create pseudorandom images with:

.. code:: bash

./bigimg 128 128 pseudorandom.png --lambda random

This is useful in a variety of contexts.

Examples
--------

Check out the example images included. You can pull request a new
example image if you find an especially cool formula. Simply add the
code to the example set below, and place the image in the examples/
folder.

Only the best images, as determined by me, will be accepted.

Grayscale
~~~~~~~~~

::

bigimg 512 512 examples/1.png --lambda "lambda x, y: 2048. * np.sin(x/32.) + 2048. * np.sin(y/32.)"

.. figure:: examples/1.png
:alt: lambda x, y: 2048. * np.sin(x/32.) + 2048. * np.sin(y/32.)

Example 1
::

bigimg 512 512 examples/2.png --lambda "lambda x, y: y * np.cos(x/128.)"

.. figure:: examples/2.png
:alt: lambda x, y: y * np.cos(x/128.)

Example 2
::

bigimg 512 512 --lambda random examples/0.png

.. figure:: examples/0.png
:alt: random

Example 0
Color
~~~~~

::

bigimg 512 512 examples/3.png --lambda "lambda x, y: (x, x, y)"

.. figure:: examples/3.png
:alt: lambda x, y: (x, x, y)

Example 3
::

bigimg 512 512 examples/4.png --lambda "lambda x, y: (x, np.sin(x), np.sin(y))"

.. figure:: examples/4.png
:alt: lambda x, y: (x, np.sin(x), np.sin(y))

Example 4
::

bigimg 1024 1024 examples/5.png --lambda "lambda x, y: (512 * np.cos(y/32.), 512 * np.sin(x/32.), 512 * np.sin(y/32.))"

.. figure:: examples/5.png
:alt: lambda x, y: (512 * np.cos(y/32.), 512 * np.sin(x/32.), 512 * np.sin(y/32.))

Example 5

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

bigimg-0.0.3.tar.gz (2.9 kB view details)

Uploaded Source

File details

Details for the file bigimg-0.0.3.tar.gz.

File metadata

  • Download URL: bigimg-0.0.3.tar.gz
  • Upload date:
  • Size: 2.9 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? No

File hashes

Hashes for bigimg-0.0.3.tar.gz
Algorithm Hash digest
SHA256 8ec45ac6efc2ed535ee3264434909a3bf6099601fe6aade69d18c56cb75ed87f
MD5 367af85cbf554551d79d49bf5306f0ff
BLAKE2b-256 4aeb087371ed35fa71c0fc1833abc2afd24b1038c73c653efe601e24f56109e4

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