You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

12 KiB

In [33]:
TEXT="I've never particularly liked Processing."
In [34]:
%%bash -s "$TEXT"
convert -background NavajoWhite  -fill gray10  -font letterng-medium -pointsize 24 \
          -size 300x   caption:"$1" \
          -borderColor NavajoWhite -border 10x10 out/processing01.png

In [35]:
TEXT="Teaching programming to art and design students for years, I've avoided Processing as it has always seemed to represent a kind of solipsism of digital interactivity and graphics."
In [36]:
%%bash -s "$TEXT"
convert -background Peru  -fill gray10  -font letterng-medium -pointsize 24 \
          -size 620x   caption:"$1" \
          -borderColor Peru -border 10x10 out/processing02.png

In [15]:
# This cell should be rendered by Processing!
In [23]:
%%bash
convert -background gray50  -fill white  -font Helvetica -pointsize 24 \
          -size 300x300   caption:@in/solipsism.txt \
          -borderColor gray50 -border 10x10 out/solipsism.png

In the summer of 1996, I was finishing my Masters degree, and I met John Maeda who was just joining the MIT Media Lab to replace the recently deceased Muriel Cooper.

Cooper was the first art director of the MIT Press, producing influential designs such as a 1969 catalog of Bauhaus and the iconic MIT Press logo.

When the Media Lab was founded, Cooper started the Visible Language Workshop to research the intersection of publishing, design, and computation.

My friend Robin was a student in the VLW; through her I learned things about Muriel like how she would say "Swiss" instead of Helvetica.

NEED: Citation of how Helvetica / sans serif fonts were at one time a radical break from traditional typography.

Maeda created the Physical Language Workshop, later Aesthetics and Computation group, to continue this research. Ben Fry and Casey Reas were among Maeda's first students.

Maeda published a software system (and book) called Design by Numbers. It had extreme constraints such as a fixed 100 by 100 pixel size and monochrome graphics.

DBN would go on to inspire Reas + Fry to create Processing.

In 2004, Reas wrote a series of essays around an exhibition at the Whitney gallery called Software Structures. Inspired by Sol Lewitt's wall drawings, Software Structures presented a series of abstract 'structures' (including some of Lewitt's instructions) that are then implemented in a variety of 'materials': Processing, Flash MX, C++.

A benefit of working with software structures instead of programming languages is that it places the work outside the current technological framework, which is continually becoming obsolete. Because a software structure is independent from a specific technology, it is possible to continually create manifestations of any software structure with current technology to avoid retrograde associations. -- Casey Reas

As technologies like Java and Flash have both become deprecated in the contemporary web, the work has been "restored" in 2016 with processing implmentations rewritten to use p5.js.

In 2007 I attended a book launch of the MIT Press Processing handbook (authored by Reas + Fry, and with an introduction by Maeda).

Ealier in the day I had bought another technical book "ImageMagick Tricks" by Sohail Salehi.

Briefly I met Casey Reas at the back of the room before his presentation. He was curious about the book I had with me and looked briefly at it. He had never heard of ImageMagick.

ImageMagick is full of particularities. Like the default images built in, giving you "test sources" to try out the many built in filters and effects.

ImageMagick is a commandline tool, designed to be used via textual commands written in the generic space of the terminal.

ImageMagick is a porous tool, with many shortcuts (such as using the @ charater to read from a file).

ImageMagick is often referred to as a "swiss army knife" due to its handling of many input and output formats.

It's particularly useful as part of "pipelines" -- series of commands issued on the commandline where the input of one process feeds in the input to another. In this way diverse tools can be composed to make custom tools in an ad hoc way.

If you don't like the built in handling of text, you can also make use of other layout engines like pango, an independent free software project that IM embeds.

Bauhaus typographers mis-used metallic blocks used to space typography as visible graphic elements, thus creating one of the defining visual characteristics of bauhaus typography.

rather than stating from a blank canvas, bauhaus designers were exploring (mis) uses of the materials they had at hand to create new forms and effects.

the processing canvas is a little island cut off from the rest of the structure of a webpage, and endlessly demaning processor attention through it's draw loop.

Mayakovsky

Lori Emerson!

In [20]:
%%bash
# convert -size 300x200 xc:'#002377' -fill white -draw 'skewX 128 skewY 0 rectangle -60,0 40,200' out/flag_background1.png
convert -size 300x200 xc:'#002377' -fill white -draw 'skewX 128 image over 0,0 0,0 in/boris.jpg' background1.png
convert -size 300x40 xc:none -background transparent -fill '#ce201a' -draw ' rectangle 0,0, 300,20' -shear 32 band.png
# convert -size 300x40 xc:none -background transparent -fill '#ce201a' -draw ' image over 0,0, 300,20 in/boris.jpg' -shear 32 band.png
convert background1.png -draw ' image over -25,0 0,0 band.png' background1.png
convert background1.png -draw ' image over -25,0 0,0 band.png' background1.png
convert background1.png -crop 150x94+0+0 area1.png
convert area1.png -flip -flop area3.png
convert background1.png -draw ' image over -25,-21 0,0 band.png' background2.png
convert background2.png -flop background2.png
convert background2.png -crop 150x94+150+0 area2.png
convert area2.png -flip -flop area4.png
convert -size 300x188 xc:none -draw ' image over 0,0 0,0 area1.png' -draw ' image over 150,0 0,0 area2.png' -draw ' image over 0,94 0,0 area4.png' -draw ' image over 150,94 0,0 area3.png' mixed.png
convert mixed.png -background white -gravity center -splice 20x20 -background '#ce201a' -splice 40x40 flag.png
In [ ]: