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.
29 lines
715 B
29 lines
715 B
require 'squib' |
|
|
|
# Here's an example of being able to scale a font |
|
# based on the length of individual string. |
|
# Handy for making minor font scales to fill text boxes. |
|
def autoscale(str_array) |
|
str_array.map do | str | |
|
case str.length |
|
when 0..15 |
|
10.66 |
|
when 16..20 |
|
6 |
|
else |
|
4 |
|
end |
|
end |
|
end |
|
|
|
Squib::Deck.new(width: 300, height: 100, cards: 3) do |
|
background color: :white |
|
rect |
|
title = ['Short & Big', |
|
'Medium Length & Size', |
|
'Super duper long string here, therefore a smaller font.'] |
|
text str: title, font: 'Arial', font_size: autoscale(title), |
|
x: 10, y:10, align: :center, width: 280, ellipsize: false, hint: :red |
|
|
|
save_sheet columns: 3 |
|
end
|
|
|