You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
13 lines
430 B
13 lines
430 B
require 'squib' |
|
|
|
Squib::Deck.new(cards: 200, config: 'antialias_fast.yml') do |
|
background color: :white |
|
# alphabet = 'a'.upto('z').to_a.join + ' ' + 'A'.upto('Z').to_a.join + ' ' |
|
# text str: alphabet * 36 , font: 'Sans Bold 18', width: 825, height: 1125, hint: :red |
|
0.upto(500).each do |i| |
|
circle radius: 50, |
|
x: (i % 17) * 50, |
|
y: (i / 17) * 50 |
|
end |
|
save_png prefix: 'antialias_fast_' |
|
end |