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.
23 lines
630 B
23 lines
630 B
require 'squib' |
|
|
|
# For decks with both landscape and portrait orientations, |
|
# we recommend using two separate decks. |
|
# For print-on-demand, we can rotate all of the images in the final step. |
|
|
|
# Normal cards |
|
Squib::Deck.new(width: 825, height: 1125) do |
|
background color: '#aaa' |
|
|
|
text str: 'This is portrait and trimmed' |
|
|
|
save_png prefix: 'portrait_', trim: 10, trim_radius: 15 |
|
end |
|
|
|
# Money cards are landscape |
|
Squib::Deck.new(width: 1125, height: 825) do |
|
background color: '#aaa' |
|
|
|
text str: 'This is landscape and trimmed', x: 15, y: 10 |
|
|
|
save_png prefix: 'landscape_', rotate: :clockwise, trim: 25, trim_radius: 15 |
|
end
|
|
|