Recreating some works of Josef Albers

Slides:



Advertisements
Similar presentations
Clicking on the link for the.tns file gives you will get the following screen: Select Save File and click OK.
Advertisements

Working with Tables for Page Design – Lesson 41 Working with Tables for Page Design Lesson 4.
Processing Lecture. 1 What is processing?
My Penguin Math Book By:. I see How many penguins do you see? Count them & type the number in the box penguins.
Interactive Boardmaker Basics By: Vanessa Wilkinson (nee Bushbacher) & Robyn Jung.
Study Guide Commercial Photography Technology
My Penguin Math Book By:. I see How many penguins do you see? Count them & type the number in the box penguins.
Scratch Lesson 7: Stories to Animations Part I. In this lesson, we will create a Cartoon Animation. We will first create a story line. Based on the story.
Using Draw Tools C 2012jkc. Click File on the menu bar and select Page Setup on the drop- down menu to get the Page Setup dialog box. Under the Margins.
Creating Tessellations With Paint. Open Microsoft Paint. Go to: Start, Programs, Accessories, Paint.
1b – Inside Visual Studio Lingma Acheson Department of Computer and Information Science, IUPUI CSCI N331 VB.NET Programming.
EMBEDDING a file into an Activboard Flip Chart. Go to your ACTIVEBOARD dashboard and click on New Flip Chart.
Hand-Coloring in Photoshop! Go to Layer > Duplicate Layer to make a copy of your image Go to image > Adjustments > Black and White on your “background.
How to Download and Install a Sharp Print Driver on a Mac.
Color Correct and Remove Keystoning A minimalist approach to photographing your art By Paul Marley.
Microsoft Word 2013 CREATING AND FORMATTING A FLYER IN WORD 1.
Patrick Bailey, MS IDIS110 Dreamweaver Setup. IDIS110 - RIT After you start Dreamweaver On the first time, if you are asked, select “Design Mode” Otherwise,
Chapter 5 Quick Links Slide 2 Performance Objectives Understanding Framesets and Frames Creating Framesets and Frames Selecting Framesets and Frames Using.
Learning With Computers I (Level Green) ©2012 Cengage Learning. All Rights Reserved. May not be scanned, copied or duplicated, or posted to a publicly.
Chapter 2 Web Page Design Mr. Gironda. Elements of a Web Page These are things that most web pages use.
This is what we want to draw Extrude Mirror Round Edges.
Getting Started with Fireworks A few tips: –Before you begin an assignment, be sure to create a folder on your drive for it. –If your canvas is checkered,
Creating a Power Point Presentation Open Microsoft Power Point Create a new presentation using a blank presentation. Choose an Auto Layout Select the sample.
Processing Workshop. What is processing? “Processing is an open source programming language and environment for people who want to program images, animation,
Objective: Students will know the screen parts, tools, and menus of the Fireworks program. Students will be able to create a new document, create basic.
Designing a Web Page Layout Using a Professional Bitmap & Vector Graphic Editing Suite 1IT: Web Technologies – Design a Web Page Layout 2 Copyright © Texas.
Adobe Photoshop CS5 Chapter 1 Editing a Photo. Start Photoshop and customize the Photoshop workspace Open a photo Identify parts of the Photoshop workspace.
+ This step by step tutorial demonstrates drawing a keyboard illustration using rectangles, grids, move and transform effects.
Adobe Photoshop CS4 – Illustrated Unit A: Getting Started with Photoshop CS4.
Creating a Google Site For a Digital Portfolio Purpose.
Introduction to Layers GIMP User Manual. What is a Layer? Every image in GIMP is made by combining one or more images called Layers laid on top of each.
Adobe ® Photoshop ® CS6 Chapter 1 Editing a Photo.
Post Card Painting Today we will create a design for a postcard.
Power Point Technical Directions. Change Font: Size, Type, Color Size: –On the top toolbar, click on the arrow next to the number in a white box (not.
A review of the overview
Windows Tutorial 3 Personalizing Your Windows Environment
INTRO to PIXLR.com.
Chapter 1 Editing a Photo
Getting Started with Adobe Photoshop CS6
Topic one text Topic two text Topic three text Topic four text
Starburst.
Eclipse Navigation & Usage.
PHP Image Manipulation
Background templates for PowerPoint slides
Using the INSERT TAB in MS Word 2007
Lesson One: The Beginning Chapter 1: Pixels Learning Processing Daniel Shiffman Presentation by Donald W. Smith Graphics from
#5 Grade 1 ~ Sight Words Pictures series in film strip effect
#3 Grade 1 ~ Sight Words Pictures series in film strip effect
Chapter 1 Editing a Photo
My Penguin Math Book By:
Smart Graphic Layout TOPIC statement
Topic one text Topic two text Topic three text Topic four text
Adding and Manipulating Objects
My Penguin Math Book By:
#6 Grade 1 ~ Sight Words Pictures series in film strip effect
#2 Grade 1 ~ Sight Words Pictures series in film strip effect
My Penguin Math Book By:
My Penguin Math Book By:
Represent Re-present Pictures series in film strip effect
Trifold Brochure.
#1 Grade 1 ~ Sight Words Pictures series in film strip effect
My Penguin Math Book By:
#4 Grade 1 ~ Sight Words Pictures series in film strip effect
My Penguin Math Book By:
Inserting Pictures and Symbols in Word documents
POWER POINT WHY HAVE WE USE THIS PROGRAM? TO SHOW YOUR STUDY..
My Penguin Math Book By:
My Penguin Math Book By:
Empower Support Freedom Inspire Together
Smart Graphic Layout TOPIC statement
Presentation transcript:

Recreating some works of Josef Albers Starting p5.js Recreating some works of Josef Albers

Go to https://p5js.org/download/ click on editor link

After reaching https://github. com/processing/p5 After reaching https://github.com/processing/p5.js-editor/releases right click on p5-win.zip choose Save link as

Choose where to save the file, I chose Documents and then made a folder within that. Open and save

Find the file, right click and choose to Extract. Next.

Double Click on the p5 application (. exe file) and choose Run Double Click on the p5 application (.exe file) and choose Run. It’s a little slow to start.

We will make a p5.js version of Josef Albers’ Homage to the Square https://www.wikiart.org/en/josef-albers/homage-to-the-square-autumn-climax-1963 I opened this link in FireFox because I know how to use the eyedropper tools there: Right click on top and chose menu bar.

In FireFox Tools/Web Developer/ EyeDropper

Read the color from the eyedropper

Break the (hex) color in 754C23 into three parts 75, 4C and 23 Break the (hex) color in 754C23 into three parts 75, 4C and 23 . Start the calculator

Put the calculator in Programmer mode

Put the calculator in hex mode, enter the red from the hex, then switch to dec(imal) mode

Repeat for Green and Blue Red  75  117 Green  4C  76 Blue  23  35

Back in the p5 editor enter the code to create a canvas as well as the code to set the background color

Go to File/Save as. Choose a name and location. Then click Save

Click the pink arrow (Run). See the result.

Determine the decimal values for the next inner rectangle I found Red  97  151 Green  65  101 Blue  25  37

Add the three lines of code seen below

Explaining some code noStroke() means that what is drawn next will not have an outline fill(151, 101, 37) determines the color of the element that is drawn next rect(50, 75, 400, 400) requests that a rectangle be drawn and that it be Positioned 50 units from the left-hand side Positioned 75 units from the top Have a width of 400 units Have a height of 400 units

Another fill and another rect

Last square

Now try to make this Sorry for the bad photo. It’s from p. 133 from Josef Albers’ Interaction of Color.

And this The inner rectangles are approximately twice as long as they are high. The black “border” is about half the height of the inner rectangles. (P. 143 from Albers’ Interaction of Color)

You might add noLoop(); to the end of setup since these are static images