File: newsvg

package info (click to toggle)
golang-github-ajstarks-svgo 2012-01-27-3
  • links: PTS, VCS
  • area: main
  • in suites: bookworm, bullseye, sid, trixie
  • size: 2,720 kB
  • sloc: xml: 80; makefile: 31; sh: 29
file content (39 lines) | stat: -rwxr-xr-x 511 bytes parent folder | download
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
#!/bin/sh

if test $# -lt 1
then
    echo "specify a file"
    exit 2
fi

if test ! -f $1 
then
cat <<!  > $1
package main

import (
  "github.com/ajstarks/svgo"
  "os"
)

var (
  width = 500
  height = 500
  canvas = svg.New(os.Stdout)
)

func background(v int) { canvas.Rect(0, 0, width, height, canvas.RGB(v, v, v)) }


func main() {
  canvas.Start(width, height)
  background(255)
  
  // your code here
  
  canvas.Grid(0, 0, width, height, 10, "stroke:black;opacity:0.1")
  canvas.End()
}
!
fi
$EDITOR $1