The JPEG is DEAD!

Julia Krolik & Owen Fernley

Julia Krolik

  • data scientist
  • information designer
  • visual communicator

Owen Fernley

  • creative coder
  • digital media artist
  • web application builder

Online Exhibitions

Audience

Experiencing Art Online

Exploratory

Creative

EXPLORATORY

 

CREATIVE

 

The JPEG

Pixel-Based File Formats

JPEG / JPEG 2000

TIFF / PNG / BMP

webP / HEIF

BAT / GIF / BNG

Manipulate Pixels

Photoshop of the Web

HTML5 Canvas

Animation


						var animate = function () {
							requestAnimationFrame( animate );

							cube.rotation.x += 0.1;
							cube.rotation.y += 0.1;

							renderer.render(scene, camera);
						};
						

Lights


						var light1 = new THREE.PointLight( 0xffffff );
							light1.position.set( -700, 1000, 300 );
							light1.intensity = 0.5;
						var light2 = new THREE.PointLight( 0xffffff );
							light2.position.set( 700, 1000, -300 );
							light2.intensity = 0.8;
						var light3 = new THREE.AmbientLight( 0x222222 );
	
						scene.add( light1 );
						scene.add( light2 );
						scene.add( light3 );
						

Scalable Vector Graphics

(SVG)

Tech Stack

Helper Libraries

Thank You

Presentation link: https://pixelsandplans.com/slidedecks/the-jpeg-is-dead

LinkedIn: Julia Krolik | Owen Fernley

Twitter: @yuliakrolik | @o1sound