Pontifications

vancouver-pink-petal-2020-aow-tights-social-media-15909812586846654058

vancouver-pink-petal-2020-mask-15909828343118069753

  • You can find the source images at:

    31may2020 create the left and right leg graphics

    • 1. 3825 jpegs per leg (and then upload to artofwhere.com)
    ls -1 *.jpg | shuf -n 3825 > right-leg-shuffled-3825-pink-petal-jpgs.txt
    ls -1 *.jpg | shuf -n 3825 > left-leg-shuffled-3825-pink-petal-jpgs.txt
    montage -verbose -adjoin -tile 45x85 +frame +shadow +label -adjoin \
    -geometry '75x75+0+0<' @right-leg-shuffled-3825-pink-petal-jpgs.txt \
    right-leg_artofwhere-pink-petal-2020.png
    montage -verbose -adjoin -tile 45x85 +frame +shadow +label -adjoin \
    -geometry '75x75+0+0<' @left-leg-shuffled-3825-pink-petal-jpgs.txt \
    left-leg_artofwhere-pink-petal-2020.png
    

    31may2020 create the thumbnails

    as per: http://rolandtanglao.com/2020/02/17/p1-how-i-made-art-of-where-tights-berlin/

    • 1. get the filenames
      ls -d /home/roland/GIT/rt-pink-petal-power/ORIGINALS/*.jpg > pink_petal_power_jpg_filenames.txt
      
    • 2.get the maximum number of 75x75 positions in each original file
      • i am lazy so i just copied in https://github.com/rtanglao/rt-berlin-january-2020/blob/master/print-file-width-length-max75-x-max75-y.rb to this directory
        ./print-file-width-length-max75-x-max75-y.rb pink_petal_power_jpg_filenames.txt \
        > pink-petal-power-75px-75px-max-x-maxy.txt
        
    • 3. make the 75x75 pixel thumbnails
    mkdir 75PX_BY_75PX_PATCHES
    cd !$
    ../create-75px-75px-patches.rb ../pink-petal-power-75px-75px-max-x-maxy.txt 10000
    

Leave a comment on github