Parent Directory
|
Revision Log
few more
1 | $full_width=60480; |
2 | $full_height=45360; |
3 | |
4 | $width = 2160; |
5 | $height = 2160; |
6 | $i = 0; |
7 | $threshold=0.5; |
8 | |
9 | for ($y = 0; $y < $full_height; $y = $y + $height) { |
10 | $j = 0; |
11 | |
12 | for ($x = 0;$x < $full_width;$x = $x + $width) { |
13 | $tox = $x + $width; |
14 | $toy = $y + $height; |
15 | $fname = sprintf("es_%03d_%03d.png",$i,$j); |
16 | print "build_greya eye_source.txt 109 $full_width $full_height 1440 1440 $x $tox $y $toy | convert txt: u/$fname\n"; |
17 | $j++; |
18 | } |
19 | $i++; |
20 | } |
ViewVC Help | |
Powered by ViewVC 1.1.5 |