CONTEÚDO
CORES
- Setting colors
- Color data - color, color()
- RGB, HSB - colorMode()
- Hexadecimal
-
Carregar Imagem - Display , Tint
- Display - PImage, loadImage(), image()
- Image color, Transparency - tint(), noTint()
-
Tipos de Imagens - JPG, GIF, PNG, TIF, BMP e outros
Ver site: http://www.infowester.com/imagensnet.php
|
|
EXERCÍCIOS
Exercício 4: Carregar duas imagens na mesma tela em posições distintas.
Exercício 5: Desenhe três imagens, cada uma com uma matiz diferente.
Exercício 6: Carregar uma imagem GIF e outra PNG com transparência.
Exercício 7: Elaborar um círculo que evolua do ponto (0,0) até bater na borda inferior da tela (300,300) alterando as cores no processo de evolução. Ao bater, o círculo deve voltar ao ponto (0,0) e ficar em loop. |
|
TEXTOS
- Characters - char
- Words, Sentences – String
-
Dados 3: Conversão, Objetos
- Data conversion - boolean(), byte(), char(), int(), float(), str()
- Objetos - “.”, PImage.width, PImage.height, String.length, String.startsWith(), String.endsWith(); String.charAt(), String.toCharArray(), String.subString(), String.toLowerCase(), String.toUpperCase(), String.equals()
- Loading fonts, Drawing text - PFont, loadFont(), textFont(), text()
- Text attributes - textSize(), textLeading(), textAlign(), textWidth()
|
|