Archive for May, 2006



Timelapse II

The first week, in about 1 minute. . .
.

Update: MovieMaker is now part of Processing’s core video library so this post is now irrelevant!

Based on some code from Shawn Van Every and Dan O’Sullivan, I’ve created a Processing library that allows you to take any pixel array (from the window or from a PImage) and create a quicktime movie.
It might […]

ITP Press

After a long battle to the death with Adobe InDesign and breaking the heart of our good friend, the Phaser 8400, the inaugural publication of the newly founded “ITP Press” is finally here. The booklet documents the work of students in my Programming from A to Z class.

ITP Show!

The ITP Show is here. . .

. . .and it’s better than ever. Now, if you can’t make it, watch the video (with super fancy in-time commenting system)!

By popular demand. . .

// Daniel Shiffman
// http ://www.shiffman.net
// May 2006

// Create JPG

import javax.imageio.*;

PImage img;

void setup() {
size(200,200);
// Draw a blank PImage
img = new PImage(200,200);
img.loadPixels();
for (int i = 0; i < img.pixels.length; i++) img.pixels[i] = color(100,50,250);
img.updatePixels();
saveJPG(img,”image.jpg”);
image(img,0,0);
noLoop();
}

public void […]

Timelapse

The first 24 hours, in about 3 minutes. . .
.
When I was little, I always dreamed of growing up and having a blog about ant farms. It’s really quite wonderful for one’s dreams to come true, isn’t it? Indeed, is not it is.
live image (updates every 30 seconds)

Example source code available from that ants thing.
P5 source: http_post.zip
PHP source: upload.phps




You are currently browsing the daniel shiffman weblog archives for May, 2006.

Longer entries are truncated. Click the headline of an entry to read it in its entirety.

Categories