How to Make a Go Make Custom custom tshirt with 128x128 on front and 64x64 patches on back
Discovered: May 7, 2025 17:34 How to Make a Go Make Custom custom tshirt with 128x128 on front and 64x64 patches on back
2025-05-07-p1 Upload front and back to Go Make Custom to make tshirt
- https://www.gomakecustom.com/makecustom/shop/home
2025-05-07-p1 Front 128x128:
2025-05-07-p1 Back 64x64:
## 2025-05-03-p4 Make go Make Custom Back of tshirt with 64 by 64 pixel patches
find 64X64PATCHES -name '*.png' -print ¦ shuf ¦ head -n 2679 > back-go-custom-files.txt
magick montage @back-go-custom-files.txt -tile 47x57 -geometry "64x64+0+0" \
vancouver-flowers-2025-64x64-patches-go-custom-back.png
2025-05-03-p3 Go Make Custom back of tshirt using 64 pixel by 64 pixel patches
- 10 inch by 12 inch at 300 dots per inch = 3000 pixels by 3600 pixels
- 3000 pixels / 64 pixels = approximately 47 patches wide
- 3600 pixels / 64 pixels = approximately 57 patches height
- 47 * 57 = 2679 patches but we’ll make 2800 just for fun
- add 64X64PATCHES to .gitignore and turn off spotlight indexing in macOS
mkdir 64X64PATCHES cd !$ ../create64px-64px-random-patches.rb ../ORIGINALS/originals.txt 2800 2> stderr.txt &
2025-05-03-p2 Make go Make Custom Front of tshirt with 128 by 128 pixel patches
find 128X128PATCHES -name '*.png' -print ¦ shuf ¦ head -n 696 > front-go-custom-files.txt
magick montage @front-go-custom-files.txt -tile 24x29 -geometry "128x128+0+0" \
vancouver-flowers-2025-128x128-patches-go-custom-front.png
2025-05-03-p1 Go Make Custom front of tshirt using 128 pixel by 128 pixel patches
- 10 inch by 12 inch at 300 dots per inch = 3000 pixels by 3600 pixels
- 3000 pixels / 128 pixels = approximately 24 patches wide
- 3600 pixels / 128 pixels = approximately 29 patches height
- 24 * 29 = 696 patches but we’ll make 1000 just for fun
- add 128X128PATCHES to .gitignore and turn off spotlight indexing in macOS
mkdir 128X128PATCHES cd !$ ../create128px-128px-random-patches.rb ../ORIGINALS/originals.txt 1000 2> stderr.txt &