Extend literate programming

This commit is contained in:
Denis Lehmann 2020-09-12 14:23:49 +00:00
parent 48bbe7456b
commit a58bb2d5dd

View File

@ -6,6 +6,10 @@
This is the literate programming file for =huepaper.py=. This is the literate programming file for =huepaper.py=.
To export it, open it in *Emacs* and *tangle* it. To export it, open it in *Emacs* and *tangle* it.
** TODO Update to new code
Somehow old code was copied in here. Fix it!
** Imports ** Imports
huepaper is mainly based on two libraries. huepaper is mainly based on two libraries.
@ -25,7 +29,7 @@ huepaper is mainly based on two libraries.
Every huepaper has a base color. Every huepaper has a base color.
It is used to calculate the final colors. It is used to calculate the final colors.
If a base color is given by the user, it can have every form, Colour supports. If a base color is given by the user, it can have every format, Colour supports.
If no color is given, a random one is chosen. If no color is given, a random one is chosen.
#+BEGIN_SRC python #+BEGIN_SRC python
@ -53,7 +57,7 @@ If no color is given, a random one is chosen.
** Colors ** Colors
The final color limits for each edge of the huepaper are calculated with respect to the base color. The final color limits for each edge of the huepaper are calculated with respect to the base color.
They rely also on the given input parameters such as saturation and luminance.. They rely also on the given input parameters such as saturation and luminance.
Those decide how much the colors differ from the base color. Those decide how much the colors differ from the base color.
#+BEGIN_SRC python #+BEGIN_SRC python
@ -83,10 +87,13 @@ Those decide how much the colors differ from the base color.
return tuple(colors) return tuple(colors)
#+END_SRC #+END_SRC
** Rest ** Base image
The base image is a rectangle with the given height and width.
The colors of the edges are the four calculated colors.
All other pixel colors are linear interpolated.
#+BEGIN_SRC python #+BEGIN_SRC python
# Create base image from four colors, width and height
# c1 - top left # c1 - top left
# c2 - top right # c2 - top right
# c3 - bottom right # c3 - bottom right
@ -115,9 +122,13 @@ Those decide how much the colors differ from the base color.
pixels[x, y] = col(x / (width - 1), y / (height - 1)) pixels[x, y] = col(x / (width - 1), y / (height - 1))
return image return image
#+END_SRC
** Lines
# Add lines to an image Vertical lines can be added on the side of the huepaper.
#+BEGIN_SRC python
def add_lines(image, color): def add_lines(image, color):
line_image = Image.new('RGBA', (width, height), (0, 0, 0, 0)) line_image = Image.new('RGBA', (width, height), (0, 0, 0, 0))
@ -148,18 +159,28 @@ Those decide how much the colors differ from the base color.
image.alpha_composite(line_image, (0, 0)) image.alpha_composite(line_image, (0, 0))
return image return image
#+END_SRC
** Pixelation
# Add pixelation to image The huepaper can be pixelated.
This is realized by scaling.
#+BEGIN_SRC python
def add_pixelation(image, x, y): def add_pixelation(image, x, y):
image = image.resize((x, y)) image = image.resize((x, y))
image = image.resize((width, height), Image.BOX) image = image.resize((width, height), Image.BOX)
return image return image
#+END_SRC
** Emblem
# Add emblem to an image from a filepath A huepaper can have an emblem.
This is loaded from a file and placed in the center.
#+BEGIN_SRC python
def add_emblem(image, filepath): def add_emblem(image, filepath):
# Load image # Load image
@ -179,9 +200,14 @@ Those decide how much the colors differ from the base color.
image.alpha_composite(emblem_image, offset) image.alpha_composite(emblem_image, offset)
return image return image
#+END_SRC
** Save
# Save image to filepath huepapers can be saved to a filepath.
Already existing files are only overwritten if the user wants to.
#+BEGIN_SRC python
def save_image(filepath, image): def save_image(filepath, image):
save = True save = True
@ -206,17 +232,20 @@ Those decide how much the colors differ from the base color.
stop = True stop = True
else: else:
filepath = input('Please enter new path where the wallpaper shall be saved: ') filepath = input('Please enter new path where the wallpaper shall be saved: ')
#+END_SRC
** Main
''' #+BEGIN_SRC python
Main
'''
def main(): def main():
global width, height, max_hue, sat_min, sat_max, lum_min, lum_max global width, height, max_hue, sat_min, sat_max, lum_min, lum_max
#+END_SRC
# Initialize parser *** Arguments
The script has various arguments which are used to create the huepaper.
#+BEGIN_SRC python
parser = argparse.ArgumentParser(description = 'Create wallpapers based on color hues.') parser = argparse.ArgumentParser(description = 'Create wallpapers based on color hues.')
parser.add_argument('-W', '--width', default = 1920, type = int, help = 'width of wallpaper (defaul: 1920)') parser.add_argument('-W', '--width', default = 1920, type = int, help = 'width of wallpaper (defaul: 1920)')
parser.add_argument('-H', '--height', default = 1080, type = int, help = 'height of wallpaper (default: 1080)') parser.add_argument('-H', '--height', default = 1080, type = int, help = 'height of wallpaper (default: 1080)')
@ -262,8 +291,11 @@ Those decide how much the colors differ from the base color.
py = int(values[1]) py = int(values[1])
except: except:
parser.error('Pixelation value must be set in form: 42x42') parser.error('Pixelation value must be set in form: 42x42')
#+END_SRC
# Main routine *** Routine
#+BEGIN_SRC python
base_color = get_base_color(color) base_color = get_base_color(color)
c1, c2, c3, c4 = create_colors(base_color) c1, c2, c3, c4 = create_colors(base_color)
image = create_base_image(c1, c2, c3, c4) image = create_base_image(c1, c2, c3, c4)