00001 <?php
00002
00003
00004
00005
00006
00007
00008
00009
00010
00011
00012
00013
00014
00015
00016
00017
00018
00019
00020
00021
00022
00023
00024
00025
00026
00027
00028
00029
00030
00031
00032
00033
00034
00035
00036
00037
00038
00039
00040
00041
00042
00043
00044
00045
00046
00047
00048
00049
00050
00051
00052
00053
00054
00055
00056
00057
00058
00059
00060
00061
00062
00063 class IdentiFrac {
00064 protected $size;
00065 protected $hash;
00066
00067 const ITERATIONS = 50;
00068
00069
00070
00071
00072
00073
00074
00075 public function __construct($hash, $size = 100) {
00076 $this->size = $size;
00077 $this->hash = $hash;
00078 }
00079
00080
00081
00082
00083
00084 protected function get_nibbles(&$hex_stream, $num_nibbles) {
00085 if (strlen($hex_stream) < $num_nibbles) return -1;
00086 $data = hexdec(substr($hex_stream, 0, $num_nibbles));
00087 $hex_stream = substr($hex_stream, $num_nibbles);
00088 return $data;
00089 }
00090
00091
00092
00093
00094
00095
00096 protected function get_iterations() {
00097 return self::ITERATIONS;
00098 }
00099
00100
00101
00102
00103 protected function get_colors($img, &$hash) {
00104 $ret = array();
00105 $color = array();
00106
00107 for ($i = 0; $i < 6; $i++) {
00108 $color[$i] = $this->get_nibbles($hash, 2);
00109 }
00110
00111 $color_delta = array();
00112 for ($i = 0; $i < 3; $i++) {
00113 $d = 0 - $color[$i+3] * $color[$i];
00114 $color_delta[$i] = $d;
00115 }
00116
00117
00118 $max = $this->get_iterations();
00119 for($i = 0; $i < $max; $i++) {
00120
00121 $ret[] = imagecolorallocate($img, ($color[0] + ($i / $max) * $color_delta[0]) & 0x00ff,
00122 ($color[1] + ($i / $max) * $color_delta[1]) & 0x00ff,
00123 ($color[2] + ($i / $max) * $color_delta[2]) & 0x00ff);
00124 }
00125
00126 return $ret;
00127 }
00128
00129
00130
00131
00132 protected function draw_frac($img, $img_size, $img_colors, &$hash) {
00133
00134 $a = ($this->get_nibbles($hash, 6) - pow(2, 23)) / pow(2, 23);
00135 $b = ($this->get_nibbles($hash, 6) - pow(2, 23)) / pow(2, 23);
00136
00137
00138
00139 for($screen_y = 0; $screen_y < $img_size; $screen_y++) {
00140 for($screen_x = 0; $screen_x < $img_size; $screen_x++) {
00141
00142
00143 $x = (($screen_x / $img_size) * 3) - 1.5;
00144 $y = (($screen_y / $img_size) * 3) - 1.5;
00145
00146
00147 $max = $this->get_iterations();
00148 for ($iterations = 0; $iterations < $max; $iterations++) {
00149
00150 if ($x * $x + $y * $y > 4) {
00151 break;
00152 }
00153
00154
00155 $new_x = $x * $x - $y * $y + $a;
00156 $new_y = 2 * $x * $y + $b;
00157
00158 $x = $new_x;
00159 $y = $new_y;
00160 }
00161
00162 imagesetpixel($img, $screen_x, $screen_y, $img_colors[$iterations]);
00163 }
00164 }
00165 }
00166
00167
00168
00169
00170 protected function draw_border($img, $img_size, &$hash) {
00171 $border_color = imagecolorallocate($img, $this->get_nibbles($hash, 2), $this->get_nibbles($hash, 2), $this->get_nibbles($hash, 2));
00172 imagerectangle($img, 0, 0, $img_size - 1, $img_size - 1, $border_color);
00173 imagerectangle($img, 1, 1, $img_size - 2, $img_size - 2, $border_color);
00174 imagerectangle($img, 2, 2, $img_size - 3, $img_size - 3, $border_color);
00175 }
00176
00177
00178
00179
00180 protected function draw_antialiasing($img, $img_size, $final_size) {
00181
00182
00183 $img_final = imagecreatetruecolor($final_size, $final_size);
00184 imagecopyresampled(
00185 $img_final, $img,
00186 0, 0, 0, 0,
00187 $final_size, $final_size, $img_size, $img_size
00188 );
00189 return $img_final;
00190 }
00191
00192
00193
00194
00195
00196
00197
00198
00199 protected function create($final_size, $hash) {
00200
00201
00202
00203 $img_size = $final_size * 2;
00204 $img = imagecreate($img_size, $img_size);
00205
00206 $img_colors = $this->get_colors($img, $hash);
00207 $this->draw_frac($img, $img_size, $img_colors, $hash);
00208 $this->draw_border($img, $img_size, $hash);
00209
00210 $img_final = $this->draw_antialiasing($img, $img_size, $final_size);
00211 imagedestroy($img);
00212
00213 return $img_final;
00214 }
00215
00216
00217
00218
00219
00220
00221 public function get_as_string() {
00222 $img = $this->create($this->size, $this->hash);
00223 $file = tempnam("/tmp", "IFR");
00224 imagepng($img, $file);
00225 imagedestroy($img);
00226
00227
00228 $ret = file_get_contents($file);
00229 unlink($file);
00230
00231 return $ret;
00232 }
00233
00234
00235
00236
00237
00238
00239 public function output_image() {
00240 $this->send_headers();
00241 $img = $this->create($this->size, $this->hash);
00242 imagepng($img);
00243 imagedestroy($img);
00244 }
00245
00246
00247
00248
00249
00250 public function send_headers() {
00251 header('Content-Type: image/png');
00252 header('Cache-Control: public');
00253 header('Pragma:');
00254 header('Expires: ' . gmdate('D, d M Y H:i:s \G\M\T', time() + 62 * 24 * 60 * 60 ));
00255 }
00256 }