View Single Post
Old 06-29-2019, 01:23 PM   #223
PoP
 curly᷂͓̫̙᷊̥̮̾ͯͤͭͬͦͨ ʎʌɹnɔ
PoP ought to be getting tired of karma fortunes by now.PoP ought to be getting tired of karma fortunes by now.PoP ought to be getting tired of karma fortunes by now.PoP ought to be getting tired of karma fortunes by now.PoP ought to be getting tired of karma fortunes by now.PoP ought to be getting tired of karma fortunes by now.PoP ought to be getting tired of karma fortunes by now.PoP ought to be getting tired of karma fortunes by now.PoP ought to be getting tired of karma fortunes by now.PoP ought to be getting tired of karma fortunes by now.PoP ought to be getting tired of karma fortunes by now.
 
PoP's Avatar
 
Posts: 3,018
Karma: 50506927
Join Date: Dec 2010
Location: ♁ ᴺ₄₅°₃₀' ᵂ₇₃°₃₇' ±₆₀"
Device: K3₃.₄.₃ PW3&4₅.₁₃.₃
Quote:
Originally Posted by PoP View Post
Maybe not so much
What could I fbink today? ... ...Maybe adding "Squashed" and "Spread" effects:

Code:
...
#SQUASHED text
fbink -c
T="SQUASHED"
i=1;x=0
while [ $i -le ${#T} ]; do
  t=$(expr substr "$T" $i 1)  #next byte of T
  fbink -t $tt,size=86,left=$x "$t" -M
  fbink -t $tt,size=86,top=3,left=$(($x + 3)) "$t" -o -M
  i=$(($i + 1));x=$(($x + 110))
done
screenshot #save for posting

Click image for larger version

Name:	outline.sh.squashed.png
Views:	307
Size:	17.3 KB
ID:	172179

#STRETCHED text
fbink -c
T="SPREAD"
i=1;x=0
while [ $i -le ${#T} ]; do
  t=$(expr substr "$T" $i 1)  #next byte of T
  fbink -t $tt,size=20,left=$x "$t" -M
  fbink -t $tt,size=20,top=3,left=$(($x + 3)) "$t" -o -M
  i=$(($i + 1));x=$(($x + 200))
done
screenshot #save for posting

Click image for larger version

Name:	outline.sh.spread.png
Views:	327
Size:	9.1 KB
ID:	172178
...
Attached Files
File Type: zip 2019-06-29 outline.sh v0.2.zip (995 Bytes, 296 views)
PoP is offline   Reply With Quote