Advertisement
Guest User

Untitled

a guest
Jun 22nd, 2018
185
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.15 KB | None | 0 0
  1. # 05dec15abu
  2. # (c) Software Lab. Alexander Burger
  3.  
  4. (load "@lib/xhtml.l" "@lib/svg.l")
  5.  
  6. (out "/tmp/PentiLogo.svg"
  7. (<svg> 288 288 "px"
  8. (<tag> "defs" NIL
  9. (<tag> "linearGradient"
  10. (quote
  11. (id . "grad")
  12. (x1 . "0%")
  13. (y1 . "0%")
  14. (x2 . "100%")
  15. (y2 . "100%") )
  16. (prin "<stop offset=\"0%\" style=\"stop-color:white\"/>")
  17. (prin "<stop offset=\"100%\" style=\"stop-color:#FA2\"/>") ) )
  18. (rect 0 0 288 288 "url(#grad)")
  19. (<style> '("stroke-dasharray" . "6,6")
  20. (width 3
  21. (circle 150 220 60)
  22. (circle 81 120 24)
  23. (circle 100 75 24)
  24. (circle 140 48 24)
  25. (circle 210 40 30)
  26. (circle
  27. (/ (+ (/ (+ 150 220) 2) 100) 2)
  28. (/ (+ (/ (+ 210 40) 2) 75) 2)
  29. 24 ) ) ) ) )
  30.  
  31. (call "rsvg-convert" "-f" "png" "-o" "/tmp/PentiLogo.png" "/tmp/PentiLogo.svg")
  32. (call "curl" "-T" "/tmp/PentiLogo.png" "ftp://www.software-lab.de:m3pacs2w@www.software-lab.de")
  33. ## (call "display" "/tmp/PentiLogo.png")
  34. (bye)
  35.  
  36. # vi:et:ts=3:sw=3
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement