☆ Remix ideas - fix the left edge to a flagpole, add perspective so RHS is smaller, implement anti-aliasing to remove staircasing. ☆
@TimothyLawyer wrote: ☆ Remix idea: Add stars ☆ Stars added as requested :-) Actually this version will work for any flag, it uses an image, not a pen drawing. Image was sliced using this unix code: #!/bin/bash WIDTH="$(identify -format %w $1)" HEIGHT="$(identify -format %h $1)" for i in `seq -w 0 $(($WIDTH - 1))`; do filename=$(basename "$1") extension="${filename##*.}" filename="${filename%.*}" echo convert $filename.$extension -crop 1x$HEIGHT+$i+0 +repage $filename-$i.$extension done