Anata EYES

tags: anata

Female Eyes

Category Posters Todo Finished Combined
๐Ÿ”ฅ EYES
Websites Poster Todo Finished Combined

Male Eyes

Category Posters Todo Finished Combined
๐Ÿ”ฅ EYES
Websites Poster Todo Finished Combined

Shared Eyes

Category Posters Todo Finished Combined
๐Ÿ”ฅ EYES
Websites Poster Todo Finished Combined

๐Ÿ“‚ Download layers:

๐Ÿ”— Github: https://github.com/M3-org/anata/issues/5

๐ŸŸฃ Dework: https://app.dework.xyz/webaverse/anata-81736?taskId=55bb8e5c-c51c-45d3-b7ec-73c249add308

โ›ต Opensea: https://opensea.io/collection/the-anata-nft?search[sortAscending]=true&search[sortBy]=UNIT_PRICE&search[stringTraits][0][name]=Eyes&search[stringTraits][0][values][0]=Predator Eyes


Notes

Image Not Showing Possible Reasons
  • The image was uploaded to a note which you don't have access to
  • The note which the image was originally uploaded to has been deleted
Learn More โ†’

Image Not Showing Possible Reasons
  • The image was uploaded to a note which you don't have access to
  • The note which the image was originally uploaded to has been deleted
Learn More โ†’

Image Not Showing Possible Reasons
  • The image was uploaded to a note which you don't have access to
  • The note which the image was originally uploaded to has been deleted
Learn More โ†’

#!/bin/bash

# Input image file
input_file="$1.png"

# Output directory for sliced and composited images
output_directory="male_eyes"

# Create the output directory if it doesn't exist
mkdir -p "$output_directory"

# Base layer: Crop based on position (0,0) and size (383,512)
convert "$input_file" -crop 383x512+0+0 base_layer.png

# Middle layer: Crop based on position (392,96) and size (137,287)
convert "$input_file" -crop 137x287+392+96 -background none -trim -rotate -6 middle_layer.png

# Top layer: Crop based on position (586,60) and size (303,307)
convert "$input_file" -crop 303x307+586+60 top_layer.png

# Stack the layers together
convert base_layer.png middle_layer.png -gravity center -composite stacked_layers.png

convert stacked_layers.png top_layer.png -gravity center -geometry +0+100 -composite out.png

convert -resize 17% out.png out2.png

convert eye_transparent.png out2.png -gravity center -geometry +631+117 -composite "$output_directory/$input_file"

echo "Image processing complete."


Post checklist here from github