Command line tool for generating Julia Set graphics and animations
Project description
Julia Art "juliart"
This module is based on the Color Julia Bot but intended for command line generation, and with options to customize colors based on themes (holidays, seasons) and also generate animations. The name "juliart" is also a play on word (Juliard) to hint at artsy things.
I've done my best so that the default parameters produce (what I think to be) the most random and pretty images. You can of course tweak the parameters to your liking, discussed below!
Examples and Documentation
If you want to jump in to examples, see these repositories:
- vsoch/juliart-says: write Markov generated (or raw) text onto a Julia Set image
- vsoch/juliart-grid: a grid of Julia Sets to show indexing into the Mandelbrot Set
- vsoch.github.io: A writeup of Juliart, explaining Julia and Mandelbrot sets.
Usage
Install
You can install from pypi
pip install juliart
or install from the repository directly:
$ git clone https://github.com/vsoch/juliart
$ python setup.py install
for animations you'll also need an extra package:
pip install juliart[animate]
Generate Art
You can see basic usage by typing juliart
into your terminal:
$ juliart
usage: juliart [-h] [--version] {generate,animate} ...
Julia Set art generator
optional arguments:
-h, --help show this help message and exit
--version suppress additional output.
actions:
actions for Julia Set art generator
{generate,animate} juliart actions
generate generate a Julia Set image
animate create a Julia Set animation (gif)
You'll see there are two options: to generate, and to animate.
Generate
Customizations for the generate command generally include color or theme choices, an optional text to print on the graphic, and parameters.
$ juliart generate --help
usage: juliart generate [-h] [--radius RADIUS] [--outfile OUTFILE]
[--text TEXT] [--fontsize FONTSIZE] [--xcoord XCOORD]
[--ycoord YCOORD] [--ca CA] [--cb CB] [--res RES]
[--iter ITERS] [--color {random,pattern,glow}]
[--rgb RGB]
[--theme {christmas,easter,fall,random,halloween,hanukkah,spring,summer,thanksgiving,valentine,winter}]
[--zoom ZOOM]
optional arguments:
-h, --help show this help message and exit
--radius RADIUS the max radius to allow (default is 4)
--outfile OUTFILE the output file to save the image (defaults to
randomly generated png)
--text TEXT write a string of text to bottom left corner
--fontsize FONTSIZE font size of text (if desired) defaults to 16
--xcoord XCOORD x coordinate for text (defaults to 0)
--ycoord YCOORD y coordinate for text (defaults to 0)
--ca CA the a component of the c parameter
--cb CB the b component of the c parameter
--res RES the resolution to generate (defaults to 1000)
--iter ITERS the number of iterations per pixel (defaults to 200)
--color {random,pattern,glow}
a color pattern to follow.
--rgb RGB a specific rbg color, in format R,G,B
--theme {christmas,easter,fall,random,halloween,hanukkah,spring,summer,thanksgiving,valentine,winter}
a theme to color the art (defaults to random colors)
--zoom ZOOM the level of zoom (defaults to 1.8)
Defaults
If you use the defaults, it will generate a randomly named image in your present working directory.
$ juliart generate
Generating Julia Set...
Saving image to doopy-kerfuffle-5780.png
C Parameters
The values of ca and cb (the real and complex components of the c parameter in the Julia Set equation) are chosen at random, but you can select them to better understand how your choices influence the graphic generation:
juliart generate --ca 0.5 --cb 0.5
I also created a small project that will visually show how your parameter selection influences the resulting image! You might want to give the output file a more meaningful name:
juliart generate --ca 0.5 --cb 0.5 --outfile ca-0.5-cb-0.5.png
And if you intend to compare the images, setting a consistent color is also reasonable:
juliart generate --ca 0.5 --cb 0.5 --outfile ca-0.5-cb-0.5.png --rgb 90,12,10
For a bigger deep dive into this exercise (I was curious) see Juliart Grid.
Text
As an alternative to file name (or just to have some fun!) you can generate an image with a custom message.
juliart generate --text "Dinosaurs are great!"
By default the text will be printed in the top left corner (coordinate 10,10) however you can adjust this to your liking:
$ juliart generate --text "Avocados are also great!" --xcoord 200 --ycoord 20
You can also change the font from OpenSans-Regular.ttf to Pacifico-Regular.ttf, and choose an alpha (transparency).
$ juliart generate --text "Avocados!" --fontsize 30 --font-alpha 90 --font Pacifico-Regular
You can see all of these examples in the text examples folder.
Zoom, Iterations, and Radius
Otherwise you can do any of the customizations shown above! Try playing around with iterations, colors/themes, and zoom to see different effects.
$ juliart generate --zoom 3
$ juliart generate --iter 100
After looking over the equation to generate the JuliaSet for a while, I got the insight that if we increase the iterations value and modify the radious, this will generate more detailed images. Here are some examples:
juliart generate --iter 1000 --radius 8
juliart generate --iter 5000 --radius 10
This one takes longer, of course.
Interactive Python
To generate from within Python, here is a quick example:
from juliart.main import JuliaSet
juliaset = JuliaSet(
resolution=1000, # (1000x1000)
color="random", # random, glow, pattern
theme="random",
rgb=None, # "197,18,12"
iterations=200,
)
juliaset.generate_image(zoom=1.8)
juliaset.save_image("/tmp/myimage.png")
If you want to add text, before the save_image do:
juliaset.write_text(
text,
fontsize=16,
xcoord=10,
ycoord=10,
)
By default, the text is white. You can change the color (and add a transparency, alpha layer) like:
juliaset.write_text(
text,
fontsize=16,
xcoord=10,
ycoord=10,
rgb=(255, 255, 255, 15),
)
Animate
You can inspect the parameters for the animation command as follows:
$ juliart animate --help
usage: juliart animate [-h] [--no-cleanup] [--constant-a] [--constant-b]
[--randomize-zoom] [--zoom-max ZOOM_MAX]
[--zoom-min ZOOM_MIN] [--frames FRAMES]
[--outfile OUTFILE] [--text TEXT] [--fontsize FONTSIZE]
[--xcoord XCOORD] [--ycoord YCOORD] [--ca CA] [--cb CB]
[--res RES] [--iter ITERS]
[--color {random,pattern,glow}] [--rgb RGB]
[--theme {christmas,easter,fall,random,halloween,hanukkah,spring,summer,thanksgiving,valentine,winter}]
[--zoom ZOOM]
optional arguments:
-h, --help show this help message and exit
--no-cleanup Do not delete temporary directory with png files to
generate gif.
--constant-a Don't randomize the point A on the circle.
--constant-b Don't randomize the point B on the circle.
--randomize-zoom Randomize the zoom up to --zoom-min or --zoom-max.
--zoom-max ZOOM_MAX the max zoom (must be greater than 3)
--zoom-min ZOOM_MIN the max zoom (must be greater than 0)
--frames FRAMES the number of frames to generate (default is 30)
--outfile OUTFILE the output file to save the image (defaults to
randomly generated png)
--text TEXT write a string of text to bottom left corner
--fontsize FONTSIZE font size of text (if desired) defaults to 16
--xcoord XCOORD x coordinate for text (defaults to 0)
--ycoord YCOORD y coordinate for text (defaults to 0)
--ca CA the a component of the c parameter
--cb CB the b component of the c parameter
--res RES the resolution to generate (defaults to 1000)
--iter ITERS the number of iterations per pixel (defaults to 200)
--color {random,pattern,glow}
a color pattern to follow.
--rgb RGB a specific rbg color, in format R,G,B
--theme {christmas,easter,fall,random,halloween,hanukkah,spring,summer,thanksgiving,valentine,winter}
a theme to color the art (defaults to random colors)
--zoom ZOOM the level of zoom (defaults to 1.8)
Most of these defaults (mins and maxes) are fairly reasonable and you wouldn't want to change them. By default, we will vary both the A and B constants that are used to generate the Julia Set, but we won't vary the zoom.
Defaults
The defaults will generate a 30 framed animation, varying the parameters A and B but not the zoom, with resolution (1000 X 1000) and 200 iterations.
$ juliart animate --frames 5
Optimize
You can make that faster by changing the iterations and resolution, of course!
$ juliart animate --res 500 --iters 100
The tradeoff is image quality. You'll also notice in the case of generating black pixels it takes slightly longer than white pixels (since white is an absence of color).
Text
You can add a consistent message to all frames in an animation:
juliart animate --text "Dinosaurs are great!"
and customize the --xcoord
, --ycoord
, or --fontsize
parameters as
desired. See the text examples folder for an example. If you want
to vary the text between frames, then you'll need to roll your own
loop to generate the frames and then combine into an animation. An example
is provided, the code at Juliart Grid.
Cleanup
If you want to keep the temporary png images (the frames) you can do:
$ juliart animate --no-cleanup
Frames
If you want to customize the number of frames, you can do that too (we default to 30). Here would be a smaller / quicker to generate image:
$ juliart animate --frames 5
Zoom
To also randomize the zoom, specify:
$ juliart animate --randomize-zoom --frames 5
Python
To generate from within Python, it's fairly straight forward:
from juliart.main import JuliaSetAnimation
juliaset = JuliaSetAnimation(
resolution=args.res,
color=args.color,
theme=args.theme,
rgb=args.rgb,
cleanup=not args.skip_cleanup,
iterations=args.iters,
zoom_max=args.zoom_max,
zoom_min=args.zoom_min,
)
juliaset.generate_animation(
zoom=args.zoom,
outfile=args.outfile,
frames=args.frames,
randomize_a=not args.constant_a,
randomize_b=not args.constant_b,
randomize_zoom=args.randomize_zoom,
)
Colors
The three choices for colors are random, pattern, or glow, or setting your own RGB value.
Random
Random is the default, and the image at the top of the README here is generated using this setting. Take a look at more more random examples.
Pattern
Pattern doesn't use a gradual gradient, but instead returns a hard boundary between a color (and black).
Take a look at more more pattern examples here.
RGB
If you want complete control of the color, provide a comma separated list of RGB numbers as follows:
$ juliart generate --rgb 9,35,155
Note that this will also work with the --color pattern
flag.
Glow
Glow means a dark background (black) with a color gradient. Here is an example:
And is generated as follows:
juliart generate --color glow
See more glow examples.
If you choose glow, this will overwrite the choice of a theme (discussed next).
Themes
To get a little more variety in your choice of colors, you can select a theme!
juliart generate --theme halloween
juliart generate --theme christmas
juliart generate --theme hanukkah
juliart generate --theme thanksgiving
juliart generate --theme valentine
juliart generate --theme easter
juliart generate --theme fall
juliart generate --theme spring
juliart generate --theme summer
juliart generate --theme winter
For any of the commands above, you can also add --color pattern
to flip the background
from the theme color to be black.
$ juliart generate --theme halloween --color pattern
Take a look at images in the themes folder to get a sense of the color palettes.
Docker
You can run the pre-generated Docker container too! You'll need to bind a folder on the host to save the image to.
$ mkdir data
$ docker run -it -v $PWD/data/:/data quay.io/vanessa/juliart generate --outfile /data/art.png
You can also build the image first if you like:
$ docker build -t quay.io/vanessa/juliart .
The images are provided on quay.io/vanessa/juliart.
Support
Do you have a question? Or want to suggest a feature to make it better? Please open an issue!
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
Built Distribution
File details
Details for the file juliart-0.0.16.tar.gz
.
File metadata
- Download URL: juliart-0.0.16.tar.gz
- Upload date:
- Size: 229.1 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/1.11.0 pkginfo/1.5.0.1 requests/2.21.0 setuptools/40.8.0 requests-toolbelt/0.9.1 tqdm/4.31.1 CPython/3.7.3
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 9a9c071ed9a8b65aeff80adabe1c61884b025af126a9997b7dacfd4f96dd10de |
|
MD5 | 86bf0df91d03580eee1d067292f1cab0 |
|
BLAKE2b-256 | 06e8ca2c370ca7f75eb6d834dccd8be8b6a4d8a8dff789835a82408d19297452 |
File details
Details for the file juliart-0.0.16-py3.7.egg
.
File metadata
- Download URL: juliart-0.0.16-py3.7.egg
- Upload date:
- Size: 231.7 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/1.11.0 pkginfo/1.5.0.1 requests/2.21.0 setuptools/40.8.0 requests-toolbelt/0.9.1 tqdm/4.31.1 CPython/3.7.3
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 203198af62ed583b96380f3800c69e1aac8638c7f1cd026eadcebdf9a27e4145 |
|
MD5 | 7fd009b4c34d89d674bcf308d10a4868 |
|
BLAKE2b-256 | 3aceab014da5e957d9d7e2b647f69b3fa0babe786dca54409d79ecac47f676eb |