PHP (> = 5.4), 199 197 बाइट्स
(अधिक गोल्फिंग द्वारा -2 बाइट्स)
<?$s=strlen(file_get_contents($argv[1])).'';echo strtr([waning_crescent,waning_gibbous,new_moon,0,waxing_crescent,waxing_gibbous,full_moon,first_quarter,third_quarter][($s[0]+$s[3])%11-2],'_',' ');
इसे चलाने के लिए:
php -d error_reporting=0 -d short_open_tag=1 <filename> <image_path>
उदाहरण:
php -d error_reporting=0 -d short_open_tag=1 lunar_phase.php https://upload.wikimedia.org/wikipedia/commons/thumb/c/c9/Moon_phase_6.svg/240px-Moon_phase_6.svg.png
टिप्पणियाँ:
-d error_reporting=0
विकल्प नहीं उत्पादन नोटिस / चेतावनी के लिए प्रयोग किया जाता है।
-d short_open_tag=1
छोटे टैग अनुमति देने के लिए आवश्यक है।
- यदि आप
https
ऊपर दिए गए उदाहरण जैसे URL का उपयोग कर रहे हैं , तो OpenSSL भी सक्षम होना चाहिए।
कैसे?
फ़ाइल आकार (बाइट्स) प्राप्त करता है और इस सूत्र द्वारा इसके लिए एक अद्वितीय संख्या बनाता है:
((<first_bytes_digit> + <fourth_bytes_digit>) % 11) - 2
यह सूत्र 0 से 8 तक की संख्या को केवल 3 लापता बनाता है।
┌─────────────────┬───────┬─────────┬─────┬────────────────────────┐
│ Phase │ Bytes │ 1st+4th │ %11 │ -2 (position in array) │
├─────────────────┼───────┼─────────┼─────┼────────────────────────┤
│ new moon │ 3451 │ 3+1=4 │ 4 │ 2 │
│ waxing crescent │ 6430 │ 6+0=6 │ 6 │ 4 │
│ first quarter │ 5144 │ 5+4=9 │ 9 │ 7 │
│ waxing gibbous │ 7070 │ 7+0=7 │ 7 │ 5 │
│ full moon │ 5283 │ 5+3=8 │ 8 │ 6 │
│ waning gibbous │ 7067 │ 7+7=14 │ 3 │ 1 │
│ third quarter │ 4976 │ 4+6=10 │ 10 │ 8 │
│ waning crescent │ 6337 │ 6+7=13 │ 2 │ 0 │
└─────────────────┴───────┴─────────┴─────┴────────────────────────┘
पिछले दृष्टिकोण:
PHP (> = 5.4), 251 बाइट्स
<?foreach([4,8,16,20]as$w){$a+=imagecolorat(imagecreatefrompng($argv[1]),$w*10,120)>1e7;$a&&$w<5?$b=-2:0;}$x=explode('_','full moon_waning gibbous_third quarter_waning crescent_new moon_waxing crescent_first quarter_waxing gibbous');echo$x[$a*++$b+4];
इसे चलाने के लिए:
php -d error_reporting=0 -d short_open_tag=1 <filename> <image_path>
उदाहरण:
php -d error_reporting=0 -d short_open_tag=1 lunar_phase.php https://upload.wikimedia.org/wikipedia/commons/thumb/c/c9/Moon_phase_6.svg/240px-Moon_phase_6.svg.png
टिप्पणियाँ:
-d error_reporting=0
विकल्प नहीं उत्पादन नोटिस / चेतावनी के लिए प्रयोग किया जाता है।
-d short_open_tag=1
छोटे टैग अनुमति देने के लिए आवश्यक है।
- PHP में GD होना चाहिए और यह सक्षम होना चाहिए।
- यदि आप
https
ऊपर दिए गए उदाहरण जैसे URL का उपयोग कर रहे हैं , तो OpenSSL भी सक्षम होना चाहिए।
कैसे?
पर छवि में 4 पिक्सल के रंग के लिए चेक 40,120
, 80,120
, 160,120
और 200,120
और उन रंगों से चंद्रमा चरण पर फैसला करता है।