We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 68e61f1 commit be340a8Copy full SHA for be340a8
README.md
@@ -73,8 +73,10 @@ The bored ape (tiles) in the composite image are in 50×50px. To get to 800×800
73
``` ruby
74
require 'pixelart'
75
76
-apes = ImageComposite.read( "basicboredapes50x50.png", width: 50, height: 50 ) ## read in ape composite
+# step 1: read in all-in-one ape image composite
77
+apes = ImageComposite.read( "basicboredapes50x50.png", width: 50, height: 50 )
78
79
+# step 2: loop over all apes and save one-by-one w/ 16x zoom
80
apes.each_with_index do |ape,i|
81
ape.zoom(16).save( "ape-#{i}.png")
82
end
0 commit comments