├── gerbv-gbr2svg-command.txt
├── README.md
├── style.css
├── image-compare.html
├── green.svg
└── red.svg
/gerbv-gbr2svg-command.txt:
--------------------------------------------------------------------------------
1 | gerbv file-F.Cu.gbr --foreground=#FF0000 -o file-F.Cu.svg --export=svg
2 |
--------------------------------------------------------------------------------
/README.md:
--------------------------------------------------------------------------------
1 | # Gerber-Diff
2 |
3 | This is a html interface for comparing gerber file revisions through svg files.
4 |
--------------------------------------------------------------------------------
/style.css:
--------------------------------------------------------------------------------
1 | #image1 {
2 | opacity: 0.5;
3 | position: absolute;
4 | top: 20px;
5 | left: 20px;
6 | }
7 |
8 | #image2 img {
9 | opacity: 0.5;
10 | position: absolute;
11 | top: 20px;
12 | left: 20px;
13 | }
14 |
--------------------------------------------------------------------------------
/image-compare.html:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 | img compare
5 |
6 |
7 |
8 |
9 |
10 |
11 |
12 |
13 |
14 |
15 |
16 |
18 |
19 |
20 |
21 |
22 |
23 |
24 |
--------------------------------------------------------------------------------
/green.svg:
--------------------------------------------------------------------------------
1 |
2 |
71 |
--------------------------------------------------------------------------------
/red.svg:
--------------------------------------------------------------------------------
1 |
2 |
71 |
--------------------------------------------------------------------------------