Skip to content

Instantly share code, notes, and snippets.

@ninadpchaudhari
Created October 23, 2024 00:54
Show Gist options
  • Save ninadpchaudhari/f20d4b99ed6dcea51609af1428ace8ca to your computer and use it in GitHub Desktop.
Save ninadpchaudhari/f20d4b99ed6dcea51609af1428ace8ca to your computer and use it in GitHub Desktop.
Ahyaan Malik - Submitted 10/15/24 Temporarily hosted here
from JES import *
from random import *
# Ahyaan Malik - Submitted 10/15/24
# Creates a "graffitied" image from a jpg of dwayne the rock johnson
# His eye (pupil specifically), head, and teeth color were randomly changed
# Additionally, a bar of solid color was added with text, and all of this was placed onto a wall
# EXTRA POINTS - the many texts added to the back may simply seem only weird, but their placements are random! Random positions (I specifically made sure to not have them be covered by dwayne) and random sizes with differing shades of purple!
# EXTRA POINTS - I also added many rectangles with RANDOM colors, RANDOM positions, and RANDOM sizes. There is alot of randomness in this
# EXTRA POINTS - Why so random? - Pieces of graffiti always change throughout time, that be with new graffiti covering previous works, or external sources like cleaning crews, or just weather elements. Point being, a wall with graffiti is ever-changing, just like graffiti.jpg created from this code.
# EXTRA POINTS - The hair, teeth, and eye colors are also completely random (eyes can only be red with a 1/100 chance, did you know 90% of gamblers quit just before they hit it big?)
# The conflict thickens, after the victory of normal horse against mirrored horse, dwayne the rock johnson appears, feeling disappointed for both of their weak skills, and he believes he can take over. His first step; by sending this message out to them
def teeth(facePic): # This sets the teeth to either black, green, orange, or red, by finding all white (or close to white) pixel values in the given range
colorSelect = randint(0,3) # Selects the number for the random teeth color
if colorSelect == 0:
teethColor = black # Sets the teeth to be black
print ("Teeth Color = Black")
elif colorSelect == 1:
teethColor = green # Sets the teeth to be green
print ("Teeth Color = Black")
elif colorSelect == 2:
orange = makeColor(255, 70, 0)
teethColor = orange # Sets the teeth to be orange
print ("Teeth Color = Orange")
else:
teethColor = red # Sets the teeth to be red
print ("Teeth Color = Red")
for x in range(300, 450):
for y in range(230, 300):
p = getPixel(facePic, x ,y)
color = getColor(p)
if (distance (color, white)) < 145:
setColor(p, teethColor)
def eyes(facePic): # This sets both eyes to be green, by finding black in the range and changing that
redEyeChance = randint(1,100) # Creates a 1/100 chance for red eyes
if redEyeChance == 100:
print("Something appears different...")
print("Wait... Why are the eyes red..?")
print("Congrats on rolling a 1/100 chance!")
else:
print ("Eye (Pupil) Color = Green")
for x in range(247, 317):
for y in range(159, 205):
p = getPixel(facePic, x, y)
color = getColor(p)
if (distance (color, black)) < 69 and redEyeChance == 100:
setColor(p, red)
elif (distance (color, black)) < 69:
setColor(p, green)
for x in range(365, 425):
for y in range(125, 153):
p = getPixel(facePic, x ,y)
color = getColor(p)
if (distance (color, black)) < 50 and redEyeChance == 100:
setColor(p, red)
elif (distance (color, black)) < 50:
setColor(p, green)
def hair(facePic): # This adds hair instead of the original task of redying hair. The hair color is random, yellow, green, or orange
colorSelect = randint(0,2) # Selects the number for the random hair color
if colorSelect == 0:
hairColor = yellow # Sets the hair to be yellow
print ("Hair Color = Yellow")
elif colorSelect == 1:
hairColor = green # Sets the hair to be green
print ("Hair Color = Green")
else:
orange = makeColor(255, 70, 0)
hairColor = orange # Sets the hair to be orange
print ("Hair Color = Orange")
baldColor = makeColor(159, 104, 99)
for x in range(200, 449):
for y in range(11, 85):
p = getPixel(facePic, x, y)
color = getColor(p)
if (distance (color, baldColor)) < 70:
setColor(p, hairColor)
for a in range (0,14): # Creates 14 strips of hair, spaced out
for x in range(190 + 20*a, 220 + 20*a):
for y in range(11, 175 - 10*a):
p = getPixel(facePic, x ,y)
color = getColor(p)
if (distance (color, baldColor)) < 70:
setColor(p, hairColor)
def angerAmount(facePic): # This adds a random xmult to dwayne's face red values
redMult = randint(1,5)
print("Face Red Value Multiplier = ", redMult)
skinColor = makeColor(159, 104, 99)
for x in range (184, 569):
for y in range(0, getHeight(facePic)):
p = getPixel(facePic, x, y)
faceColor = getColor(p)
faceRed = getRed(p)
if distance(faceColor, skinColor) < 60:
setRed(p, faceRed*redMult)
def colorBar(facePic): # This creates the color bar using a nice compact rectangle filled command
addRectFilled(facePic, 0, 0, getWidth(facePic), getHeight(facePic)//8, black)
def allText(facePic): # This adds the initial text to that solid rectangle
lightRed = makeColor(255, 200, 200)
addText(facePic, 0, 5, "YOU UGLY HORSES ARE TO ME!", 33, lightRed) # Initial text with blank spot for the bold and scary red text
addText(facePic, 396, 5, "NOTHING", 35, red)
addText(facePic, 393, 5, "NOTHING", 35, red) # Fake Bold effect since addTextWithStyle isn't imported :(
addText(facePic, 398, 5, "NOTHING", 35, red)
def manyText(graffitiWall): # Part of the extra section, adds a bunch of random text addressed to the horses
milkyway = makeColor(243, 225, 255) # Colors from https://i.pinimg.com/originals/4c/57/11/4c57117424bc69b8b67d92551a8dfa99.png
buddleia = makeColor(235, 205, 255)
gardenia = makeColor(227, 185, 255)
horizon = makeColor(219, 165, 255)
heather = makeColor(210, 145, 255)
amethyst = makeColor(198, 115, 255)
crocus = makeColor(186, 85, 255)
eclipse = makeColor(174, 55, 255)
peony = makeColor(162, 25, 255)
purple = makeColor(119, 0, 200)
twilight = makeColor(95, 0, 160)
dusk = makeColor(60, 0, 100)
for b in range (0,2): # This is very hard to explain but I'll try, ask me in-person if needed
for a in range (0,2): # 4 squares are created with these two 2 ranges, this allows a random point to be selected for each text in each color in each of the four regions. I really went for the randomness for this assigment
addText(graffitiWall, randint(50, 880)*(1-b) + (randint(0, 30) + 830*a)*b, randint(0, 560)*b + (randint(0, 50) + 530*a)*(1-b), "In Vain", randint(20, 40), heather)
addText(graffitiWall, randint(50, 880)*(1-b) + (randint(0, 30) + 830*a)*b, randint(0, 560)*b + (randint(0, 50) + 530*a)*(1-b), "In Vain", randint(20, 40), crocus)
addText(graffitiWall, randint(50, 880)*(1-b) + (randint(0, 30) + 830*a)*b, randint(0, 560)*b + (randint(0, 50) + 530*a)*(1-b), "In Vain", randint(20, 40), peony)
addText(graffitiWall, randint(50, 880)*(1-b) + (randint(0, 30) + 830*a)*b, randint(0, 560)*b + (randint(0, 50) + 530*a)*(1-b), "Futile", randint(20, 40), horizon)
addText(graffitiWall, randint(50, 880)*(1-b) + (randint(0, 30) + 830*a)*b, randint(0, 560)*b + (randint(0, 50) + 530*a)*(1-b), "Futile", randint(20, 40), eclipse)
addText(graffitiWall, randint(50, 880)*(1-b) + (randint(0, 30) + 830*a)*b, randint(0, 560)*b + (randint(0, 50) + 530*a)*(1-b), "Futile", randint(20, 40), dusk)
addText(graffitiWall, randint(50, 880)*(1-b) + (randint(0, 30) + 830*a)*b, randint(0, 560)*b + (randint(0, 50) + 530*a)*(1-b), "Pitiful", randint(20, 40), gardenia)
addText(graffitiWall, randint(50, 880)*(1-b) + (randint(0, 30) + 830*a)*b, randint(0, 560)*b + (randint(0, 50) + 530*a)*(1-b), "Pitiful", randint(20, 40), amethyst)
addText(graffitiWall, randint(50, 880)*(1-b) + (randint(0, 30) + 830*a)*b, randint(0, 560)*b + (randint(0, 50) + 530*a)*(1-b), "Pitiful", randint(20, 40), twilight)
addText(graffitiWall, randint(50, 880)*(1-b) + (randint(0, 30) + 830*a)*b, randint(0, 560)*b + (randint(0, 50) + 530*a)*(1-b), "Surrender", randint(20, 40), horizon)
addText(graffitiWall, randint(50, 880)*(1-b) + (randint(0, 30) + 830*a)*b, randint(0, 560)*b + (randint(0, 50) + 530*a)*(1-b), "Surrender", randint(20, 40), crocus)
addText(graffitiWall, randint(50, 880)*(1-b) + (randint(0, 30) + 830*a)*b, randint(0, 560)*b + (randint(0, 50) + 530*a)*(1-b), "Surrender", randint(20, 40), purple)
addText(graffitiWall, randint(50, 880)*(1-b) + (randint(0, 30) + 830*a)*b, randint(0, 560)*b + (randint(0, 50) + 530*a)*(1-b), "Failure", randint(20, 40), buddleia)
addText(graffitiWall, randint(50, 880)*(1-b) + (randint(0, 30) + 830*a)*b, randint(0, 560)*b + (randint(0, 50) + 530*a)*(1-b), "Failure", randint(20, 40), dusk)
addText(graffitiWall, randint(50, 880)*(1-b) + (randint(0, 30) + 830*a)*b, randint(0, 560)*b + (randint(0, 50) + 530*a)*(1-b), "Failure", randint(20, 40), purple)
def coloredRectangles(graffitiWall): # This adds many semi-transparent rectangles of different color around the bottom and top sides of the graffiti wall/pic
rectCount = randint(30,60)
print("Amount of Colored Rectangles = ", rectCount)
for a in range(0, rectCount):
xvalue = randint(0, 870)
rectwidth = randint(10, 30)
if a > rectCount//2: # Half of the rectangles are on the top, while the other half are on the bottom
yvalue = 0
rectheight = randint(0, 300)
else:
yvalue = randint(300, 600)
rectheight = getHeight(graffitiWall) - yvalue
selectedColor = randint(0, 4) # Selects a number to be attributed to a random color
if selectedColor == 0: # Red
addedRed = 3 # This actually multiplies, but multiplication is multiple additions
addedGreen = 1
addedBlue = 1
elif selectedColor == 1: # Purple
addedRed = 3
addedGreen = 1
addedBlue = 3
elif selectedColor == 2: # Blue
addedRed = 1
addedGreen = 1
addedBlue = 3
elif selectedColor == 3: # Green
addedRed = 1
addedGreen = 3
addedBlue = 1
else: # Cyan
addedRed = 1
addedGreen = 3
addedBlue = 3
for x in range(xvalue, xvalue+rectwidth):
for y in range(yvalue, yvalue+rectheight):
p = getPixel(graffitiWall, x, y)
wallRed = getRed(p)
wallGreen = getGreen(p)
wallBlue = getBlue(p)
rectangleColor = makeColor(wallRed*addedRed, wallGreen*addedGreen, wallBlue*addedBlue)
setColor(p, rectangleColor) # Creates the rectangles themselves and sets the color
def darkerWall(graffitiWall): # This simply makes the graffiti wall darker to make it easier on the eyes
for x in range (0, getWidth(graffitiWall)):
for y in range (0, getHeight(graffitiWall)):
p = getPixel(graffitiWall, x, y)
color = getColor(p)
darkerColor = makeDarker(color)
evenDarker = makeDarker(darkerColor)
setColor(p, evenDarker)
def graffiti(): # The graffiti function, combines all to create an amazing, ever-changing graffiti pic
facePic = makePicture("dwayne.jpg")
graffitiWall = makePicture("graffitiwall.jpg")
darkerWall(graffitiWall)
teeth(facePic)
hair(facePic)
eyes(facePic)
angerAmount(facePic)
colorBar(facePic)
allText(facePic)
manyText(graffitiWall)
copyInto(facePic, graffitiWall, getWidth(graffitiWall)//2 - getWidth(facePic)//2, getHeight(graffitiWall)//2 - getHeight(facePic) //2)
coloredRectangles(graffitiWall)
writePictureTo(graffitiWall, "graffiti.jpg")
graffiti()
print("Yay this runs :) ")
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment