Passed
Pull Request — master (#329)
by Mirko
07:45
created
htdocs/lib/clicompatbase.inc.php 1 patch
Doc Comments   +31 added lines patch added patch discarded remove patch
@@ -76,6 +76,12 @@  discard block
 block discarded – undo
76 76
 // prepare EMail-From
77 77
 $emailheaders = 'From: "' . $emailaddr . '" <' . $emailaddr . '>';
78 78
 
79
+/**
80
+ * @param string $module
81
+ * @param integer $eventid
82
+ * @param integer $objectid2
83
+ * @param string $logtext
84
+ */
79 85
 function logentry($module, $eventid, $userid, $objectid1, $objectid2, $logtext, $details)
80 86
 {
81 87
     sql(
@@ -148,6 +154,9 @@  discard block
 block discarded – undo
148 154
     return $start;
149 155
 }
150 156
 
157
+/**
158
+ * @return string
159
+ */
151 160
 function escape_javascript($text)
152 161
 {
153 162
     return str_replace('\'', '\\\'', str_replace('"', '&quot;', $text));
@@ -159,6 +168,9 @@  discard block
 block discarded – undo
159 168
     sql_error();
160 169
 }
161 170
 
171
+/**
172
+ * @param string $sql
173
+ */
162 174
 function sqlValue($sql, $default)
163 175
 {
164 176
     $rs = sql($sql);
@@ -187,11 +199,21 @@  discard block
 block discarded – undo
187 199
     }
188 200
 }
189 201
 
202
+/**
203
+ * @param string $name
204
+ * @param string $default
205
+ *
206
+ * @return string
207
+ */
190 208
 function getSysConfig($name, $default)
191 209
 {
192 210
     return sqlValue('SELECT `value` FROM `sysconfig` WHERE `name`=\'' . sql_escape($name) . '\'', $default);
193 211
 }
194 212
 
213
+/**
214
+ * @param string $name
215
+ * @param string $value
216
+ */
195 217
 function setSysConfig($name, $value)
196 218
 {
197 219
     if (sqlValue('SELECT COUNT(*) FROM sysconfig WHERE name=\'' . sql_escape($name) . '\'', 0) == 1) {
@@ -516,6 +538,9 @@  discard block
 block discarded – undo
516 538
     die('sql_error');
517 539
 }
518 540
 
541
+/**
542
+ * @param string $warnmessage
543
+ */
519 544
 function sql_warn($warnmessage)
520 545
 {
521 546
     global $sql_errormail;
@@ -549,6 +574,9 @@  discard block
 block discarded – undo
549 574
     return mysql_fetch_row($rs);
550 575
 }
551 576
 
577
+/**
578
+ * @param resource $rs
579
+ */
552 580
 function sql_fetch_column($rs)
553 581
 {
554 582
     $col = [];
@@ -758,6 +786,9 @@  discard block
 block discarded – undo
758 786
     ];
759 787
 }
760 788
 
789
+/**
790
+ * @param string $filename
791
+ */
761 792
 function fetch_email_template($filename, $language, $domain)
762 793
 {
763 794
     global $opt, $rootpath;
Please login to merge, or discard this patch.
htdocs/lib/common.inc.php 1 patch
Doc Comments   +22 added lines patch added patch discarded remove patch
@@ -323,6 +323,9 @@  discard block
 block discarded – undo
323 323
 //set no_eval true to prevent this contents from php-parsing.
324 324
 //Important when replacing something that the user has posted
325 325
 //in HTML code and could contain \<\? php-Code \?\>
326
+/**
327
+ * @param string $name
328
+ */
326 329
 function tpl_set_var($name, $value, $no_eval = true)
327 330
 {
328 331
     global $vars, $no_eval_vars;
@@ -543,6 +546,9 @@  discard block
 block discarded – undo
543 546
 }
544 547
 
545 548
 //redirect to another site to display, i.e. to view a cache after logging
549
+/**
550
+ * @param string $page
551
+ */
546 552
 function tpl_redirect($page)
547 553
 {
548 554
     global $absolute_server_URI;
@@ -562,6 +568,9 @@  discard block
 block discarded – undo
562 568
 //process the template replacements
563 569
 //no_eval_replace - if true, variables will be replaced that are
564 570
 //                  marked as "no_eval"
571
+/**
572
+ * @param string $str
573
+ */
565 574
 function tpl_do_replace($str)
566 575
 {
567 576
     global $vars, $no_eval_vars;
@@ -589,6 +598,10 @@  discard block
 block discarded – undo
589 598
     return $str;
590 599
 }
591 600
 
601
+/**
602
+ * @param string $tplnameError
603
+ * @param string $msg
604
+ */
592 605
 function tpl_errorMsg($tplnameError, $msg)
593 606
 {
594 607
     global $tplname;
@@ -617,6 +630,9 @@  discard block
 block discarded – undo
617 630
     textdomain('messages');
618 631
 }
619 632
 
633
+/**
634
+ * @param string $sCode
635
+ */
620 636
 function tpl_do_translation($sCode)
621 637
 {
622 638
     global $opt, $style, $tplname;
@@ -645,6 +661,9 @@  discard block
 block discarded – undo
645 661
     return $sResultCode;
646 662
 }
647 663
 
664
+/**
665
+ * @param string $sCode
666
+ */
648 667
 function gettext_do_html($sCode)
649 668
 {
650 669
     $sResultCode = '';
@@ -674,6 +693,9 @@  discard block
 block discarded – undo
674 693
     return $sResultCode;
675 694
 }
676 695
 
696
+/**
697
+ * @return string
698
+ */
677 699
 function t($str)
678 700
 {
679 701
     global $translate;
Please login to merge, or discard this patch.
htdocs/lib/sqldebugger.inc.php 1 patch
Doc Comments   +3 added lines patch added patch discarded remove patch
@@ -149,6 +149,9 @@
 block discarded – undo
149 149
     <?php
150 150
 }
151 151
 
152
+/**
153
+ * @param string $sql
154
+ */
152 155
 function sqldbg_execute($sql, $bSlave)
153 156
 {
154 157
     global $dblink;
Please login to merge, or discard this patch.
htdocs/lib2/db.inc.php 1 patch
Doc Comments   +60 added lines patch added patch discarded remove patch
@@ -341,6 +341,9 @@  discard block
 block discarded – undo
341 341
     return $result;
342 342
 }
343 343
 
344
+/**
345
+ * @param string $sql
346
+ */
344 347
 function sqlf($sql)
345 348
 {
346 349
     global $db;
@@ -354,6 +357,9 @@  discard block
 block discarded – undo
354 357
     return $result;
355 358
 }
356 359
 
360
+/**
361
+ * @param string $sql
362
+ */
357 363
 function sqlf_slave($sql)
358 364
 {
359 365
     global $db;
@@ -367,6 +373,9 @@  discard block
 block discarded – undo
367 373
     return $result;
368 374
 }
369 375
 
376
+/**
377
+ * @param string $sql
378
+ */
370 379
 function sqll($sql)
371 380
 {
372 381
     global $db;
@@ -380,6 +389,10 @@  discard block
 block discarded – undo
380 389
     return $result;
381 390
 }
382 391
 
392
+/**
393
+ * @param string $sql
394
+ * @param integer $default
395
+ */
383 396
 function sqlf_value($sql, $default)
384 397
 {
385 398
     global $db;
@@ -394,6 +407,10 @@  discard block
 block discarded – undo
394 407
     return $result;
395 408
 }
396 409
 
410
+/**
411
+ * @param string $sql
412
+ * @param integer $default
413
+ */
397 414
 function sqll_value($sql, $default)
398 415
 {
399 416
     global $db;
@@ -474,6 +491,9 @@  discard block
 block discarded – undo
474 491
     return sql_value_internal(true, $sql, $default, $args);
475 492
 }
476 493
 
494
+/**
495
+ * @param boolean $bQuerySlave
496
+ */
477 497
 function sql_value_internal($bQuerySlave, $sql, $default)
478 498
 {
479 499
     $args = func_get_args();
@@ -576,6 +596,9 @@  discard block
 block discarded – undo
576 596
     return $retval;
577 597
 }
578 598
 
599
+/**
600
+ * @param resource $rs
601
+ */
579 602
 function sql_fetch_column($rs)
580 603
 {
581 604
     global $opt;
@@ -625,11 +648,17 @@  discard block
 block discarded – undo
625 648
     return mysql_insert_id($db['dblink_slave']);
626 649
 }
627 650
 
651
+/**
652
+ * @param resource $rs
653
+ */
628 654
 function sql_num_rows($rs)
629 655
 {
630 656
     return mysql_num_rows($rs);
631 657
 }
632 658
 
659
+/**
660
+ * @param string $table
661
+ */
633 662
 function sql_temp_table($table)
634 663
 {
635 664
     global $db, $opt;
@@ -659,6 +688,9 @@  discard block
 block discarded – undo
659 688
     $db['temptables'][$table] = $table;
660 689
 }
661 690
 
691
+/**
692
+ * @param string $table
693
+ */
662 694
 function sql_temp_table_slave($table)
663 695
 {
664 696
     global $db, $opt;
@@ -679,6 +711,9 @@  discard block
 block discarded – undo
679 711
     $db['temptables_slave'][$table] = $table;
680 712
 }
681 713
 
714
+/**
715
+ * @param string $table
716
+ */
682 717
 function sql_drop_temp_table($table)
683 718
 {
684 719
     global $db, $opt;
@@ -715,6 +750,9 @@  discard block
 block discarded – undo
715 750
     $db['temptables'][$newname] = $newname;
716 751
 }
717 752
 
753
+/**
754
+ * @param string $table
755
+ */
718 756
 function sql_drop_temp_table_slave($table)
719 757
 {
720 758
     global $db, $opt;
@@ -1079,6 +1117,9 @@  discard block
 block discarded – undo
1079 1117
     }
1080 1118
 }
1081 1119
 
1120
+/**
1121
+ * @param string $warnmessage
1122
+ */
1082 1123
 function sql_warn($warnmessage)
1083 1124
 {
1084 1125
     global $opt;
@@ -1105,6 +1146,9 @@  discard block
 block discarded – undo
1105 1146
     }
1106 1147
 }
1107 1148
 
1149
+/**
1150
+ * @param resource $rs
1151
+ */
1108 1152
 function sql_export_recordset($f, $rs, $table, $truncate = true)
1109 1153
 {
1110 1154
     fwrite($f, "SET NAMES 'utf8';\n");
@@ -1135,6 +1179,9 @@  discard block
 block discarded – undo
1135 1179
     }
1136 1180
 }
1137 1181
 
1182
+/**
1183
+ * @param resource $f
1184
+ */
1138 1185
 function sql_export_table($f, $table)
1139 1186
 {
1140 1187
     $primary = array();
@@ -1156,6 +1203,10 @@  discard block
 block discarded – undo
1156 1203
     sql_free_result($rs);
1157 1204
 }
1158 1205
 
1206
+/**
1207
+ * @param string $filename
1208
+ * @param string[] $tables
1209
+ */
1159 1210
 function sql_export_tables_to_file($filename, $tables)
1160 1211
 {
1161 1212
     $f = fopen($filename, 'w');
@@ -1183,6 +1234,9 @@  discard block
 block discarded – undo
1183 1234
     fclose($f);
1184 1235
 }
1185 1236
 
1237
+/**
1238
+ * @param resource $f
1239
+ */
1186 1240
 function sql_export_structure($f, $table)
1187 1241
 {
1188 1242
     $rs = sql("SHOW CREATE TABLE `&1`", $table);
@@ -1198,6 +1252,9 @@  discard block
 block discarded – undo
1198 1252
     fwrite($f, $sTableSql . " ;\n");
1199 1253
 }
1200 1254
 
1255
+/**
1256
+ * @param string $filename
1257
+ */
1201 1258
 function sql_export_structure_to_file($filename, $table)
1202 1259
 {
1203 1260
     $f = fopen($filename, 'w');
@@ -1271,6 +1328,9 @@  discard block
 block discarded – undo
1271 1328
 }
1272 1329
 
1273 1330
 // test if a function or procedure exists
1331
+/**
1332
+ * @param string $type
1333
+ */
1274 1334
 function sql_fp_exists($type, $name)
1275 1335
 {
1276 1336
     global $opt;
Please login to merge, or discard this patch.
htdocs/lib2/edithelper.inc.php 1 patch
Doc Comments   +3 added lines patch added patch discarded remove patch
@@ -58,6 +58,9 @@
 block discarded – undo
58 58
 //
59 59
 // If $wrap is > 0, longer lines will be wrapped to new lines.
60 60
 
61
+/**
62
+ * @param integer $wrap
63
+ */
61 64
 function html2plaintext($text, $texthtml0, $wrap)
62 65
 {
63 66
     global $opt, $smiley;
Please login to merge, or discard this patch.
htdocs/lib2/errorhandler.inc.php 2 patches
Doc Comments   +4 added lines patch added patch discarded remove patch
@@ -106,6 +106,10 @@
 block discarded – undo
106 106
 // throttle admin error mails;
107 107
 // currently used only for SQL errors and warnings
108 108
 
109
+/**
110
+ * @param string $errortype
111
+ * @param string $message
112
+ */
109 113
 function admin_errormail($to, $errortype, $message, $headers)
110 114
 {
111 115
     global $opt;
Please login to merge, or discard this patch.
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -112,7 +112,7 @@
 block discarded – undo
112 112
     $errorlog_dir = $opt['rootpath'] . 'var/errorlog';
113 113
     $errorlog_path = $errorlog_dir . "/errorlog-" . date("Y-m-d");
114 114
 
115
-    $error_mail_limit = 32768;    // send max 32 KB = ca. 5-20 errors per day/logfile
115
+    $error_mail_limit = 32768; // send max 32 KB = ca. 5-20 errors per day/logfile
116 116
 
117 117
     // All errors which may happen here are ignored, to avoid error recursions.
118 118
 
Please login to merge, or discard this patch.
htdocs/lib2/imagebmp.inc.php 4 patches
Doc Comments   +17 added lines patch added patch discarded remove patch
@@ -26,6 +26,9 @@  discard block
 block discarded – undo
26 26
 *           Returns: if $file specified - true if OK
27 27
                      if $file not specified - image data
28 28
 */
29
+/**
30
+ * @param resource $img
31
+ */
29 32
 function imagebmp($img,$file="",$RLE=0)
30 33
 {
31 34
 
@@ -463,6 +466,9 @@  discard block
 block discarded – undo
463 466
 
464 467
 
465 468
 
469
+/**
470
+ * @param integer $byte
471
+ */
466 472
 function RetBits($byte,$start,$len)
467 473
 {
468 474
 $bin=decbin8($byte);
@@ -474,6 +480,10 @@  discard block
 block discarded – undo
474 480
 
475 481
 
476 482
 $CurrentBit=0;
483
+/**
484
+ * @param resource $f
485
+ * @param integer $count
486
+ */
477 487
 function freadbits($f,$count)
478 488
 {
479 489
  global $CurrentBit,$SMode;
@@ -505,6 +515,10 @@  discard block
 block discarded – undo
505 515
         {
506 516
                 return chr($n & 255).chr(($n >> 8) & 255).chr(($n >> 16) & 255).chr(($n >> 24) & 255);
507 517
         }
518
+
519
+        /**
520
+         * @param integer $n
521
+         */
508 522
         function int_to_word($n)
509 523
         {
510 524
                 return chr($n & 255).chr(($n >> 8) & 255);
@@ -516,6 +530,9 @@  discard block
 block discarded – undo
516 530
 return decbinx($d,8);
517 531
 };
518 532
 
533
+/**
534
+ * @param integer $n
535
+ */
519 536
 function decbinx($d,$n)
520 537
 {
521 538
 $bin=decbin($d);
Please login to merge, or discard this patch.
Indentation   +189 added lines, -189 removed lines patch added patch discarded remove patch
@@ -78,83 +78,83 @@  discard block
 block discarded – undo
78 78
                 $sl1=strlen($ret);
79 79
                 if($CC==0) $CC=256;
80 80
                 if($BitCount<24)
81
-                   {
81
+                    {
82 82
                     $ColorTotal=imagecolorstotal($img);
83
-                     if($IsTransparent) $ColorTotal--;
83
+                        if($IsTransparent) $ColorTotal--;
84 84
 
85
-                     for($p=0;$p<$ColorTotal;$p++)
86
-                     {
87
-                      $color=imagecolorsforindex($img,$p);
88
-                       $ret.=inttobyte($color["blue"]);
89
-                       $ret.=inttobyte($color["green"]);
90
-                       $ret.=inttobyte($color["red"]);
91
-                       $ret.=inttobyte(0); //RESERVED
92
-                     };
85
+                        for($p=0;$p<$ColorTotal;$p++)
86
+                        {
87
+                        $color=imagecolorsforindex($img,$p);
88
+                        $ret.=inttobyte($color["blue"]);
89
+                        $ret.=inttobyte($color["green"]);
90
+                        $ret.=inttobyte($color["red"]);
91
+                        $ret.=inttobyte(0); //RESERVED
92
+                        };
93 93
 
94 94
                     $CT=$ColorTotal;
95
-                  for($p=$ColorTotal;$p<$CC;$p++)
96
-                       {
97
-                      $ret.=inttobyte(0);
98
-                      $ret.=inttobyte(0);
99
-                      $ret.=inttobyte(0);
100
-                      $ret.=inttobyte(0); //RESERVED
101
-                     };
102
-                   };
95
+                    for($p=$ColorTotal;$p<$CC;$p++)
96
+                        {
97
+                        $ret.=inttobyte(0);
98
+                        $ret.=inttobyte(0);
99
+                        $ret.=inttobyte(0);
100
+                        $ret.=inttobyte(0); //RESERVED
101
+                        };
102
+                    };
103 103
 
104 104
 
105 105
 if($BitCount<=8)
106 106
 {
107 107
 
108
- for($y=$Height-1;$y>=0;$y--)
109
- {
110
-  $bWrite="";
111
-  for($x=0;$x<$Width;$x++)
112
-   {
113
-   $color=imagecolorat($img,$x,$y);
114
-   $bWrite.=decbinx($color,$BitCount);
115
-   if(strlen($bWrite)==8)
108
+    for($y=$Height-1;$y>=0;$y--)
109
+    {
110
+    $bWrite="";
111
+    for($x=0;$x<$Width;$x++)
116 112
     {
117
-     $retd.=inttobyte(bindec($bWrite));
118
-     $bWrite="";
113
+    $color=imagecolorat($img,$x,$y);
114
+    $bWrite.=decbinx($color,$BitCount);
115
+    if(strlen($bWrite)==8)
116
+    {
117
+        $retd.=inttobyte(bindec($bWrite));
118
+        $bWrite="";
119
+    };
119 120
     };
120
-   };
121 121
 
122
-  if((strlen($bWrite)<8)and(strlen($bWrite)!=0))
122
+    if((strlen($bWrite)<8)and(strlen($bWrite)!=0))
123 123
     {
124
-     $sl=strlen($bWrite);
125
-     for($t=0;$t<8-$sl;$t++)
126
-      $sl.="0";
127
-     $retd.=inttobyte(bindec($bWrite));
124
+        $sl=strlen($bWrite);
125
+        for($t=0;$t<8-$sl;$t++)
126
+        $sl.="0";
127
+        $retd.=inttobyte(bindec($bWrite));
128
+    };
129
+    for($z=0;$z<$Zbytek;$z++)
130
+    $retd.=inttobyte(0);
128 131
     };
129
- for($z=0;$z<$Zbytek;$z++)
130
-   $retd.=inttobyte(0);
131
- };
132 132
 };
133 133
 
134 134
 if(($RLE==1)and($BitCount==8))
135 135
 {
136
- for($t=0;$t<strlen($retd);$t+=4)
137
-  {
138
-   if($t!=0)
139
-   if(($t)%$Width==0)
136
+    for($t=0;$t<strlen($retd);$t+=4)
137
+    {
138
+    if($t!=0)
139
+    if(($t)%$Width==0)
140 140
     $ret.=chr(0).chr(0);
141 141
 
142
-   if(($t+5)%$Width==0)
143
-   {
144
-     $ret.=chr(0).chr(5).substr($retd,$t,5).chr(0);
145
-     $t+=1;
146
-   }
147
-   if(($t+6)%$Width==0)
142
+    if(($t+5)%$Width==0)
143
+    {
144
+        $ret.=chr(0).chr(5).substr($retd,$t,5).chr(0);
145
+        $t+=1;
146
+    }
147
+    if(($t+6)%$Width==0)
148 148
     {
149
-     $ret.=chr(0).chr(6).substr($retd,$t,6);
150
-     $t+=2;
149
+        $ret.=chr(0).chr(6).substr($retd,$t,6);
150
+        $t+=2;
151 151
     }
152 152
     else
153 153
     {
154
-     $ret.=chr(0).chr(4).substr($retd,$t,4);
154
+        $ret.=chr(0).chr(4).substr($retd,$t,4);
155
+    };
155 156
     };
156
-  };
157
-  $ret.=chr(0).chr(1);
157
+    $ret.=chr(0).chr(1);
158 158
 }
159 159
 else
160 160
 {
@@ -165,31 +165,31 @@  discard block
 block discarded – undo
165 165
                 if($BitCount==24)
166 166
                 {
167 167
                 for($z=0;$z<$Zbytek;$z++)
168
-                 $Dopl.=chr(0);
168
+                    $Dopl.=chr(0);
169 169
 
170 170
                 for($y=$Height-1;$y>=0;$y--)
171
-                 {
172
-                 for($x=0;$x<$Width;$x++)
171
+                    {
172
+                    for($x=0;$x<$Width;$x++)
173 173
                         {
174
-                           $color=imagecolorsforindex($img,ImageColorAt($img,$x,$y));
175
-                           $ret.=chr($color["blue"]).chr($color["green"]).chr($color["red"]);
174
+                            $color=imagecolorsforindex($img,ImageColorAt($img,$x,$y));
175
+                            $ret.=chr($color["blue"]).chr($color["green"]).chr($color["red"]);
176 176
                         }
177
-                 $ret.=$Dopl;
178
-                 };
177
+                    $ret.=$Dopl;
178
+                    };
179 179
 
180
-                 };
180
+                    };
181 181
 
182
-  if($file!="")
183
-   {
182
+    if($file!="")
183
+    {
184 184
     $r=($f=fopen($file,"w"));
185 185
     $r=$r and fwrite($f,$ret);
186 186
     $r=$r and fclose($f);
187 187
     return $r;
188
-   }
189
-  else
190
-  {
191
-   echo $ret;
192
-  };
188
+    }
189
+    else
190
+    {
191
+    echo $ret;
192
+    };
193 193
 };
194 194
 
195 195
 
@@ -213,57 +213,57 @@  discard block
 block discarded – undo
213 213
 
214 214
 if($Header=="BM")
215 215
 {
216
- $Size=freaddword($f);
217
- $Reserved1=freadword($f);
218
- $Reserved2=freadword($f);
219
- $FirstByteOfImage=freaddword($f);
220
-
221
- $SizeBITMAPINFOHEADER=freaddword($f);
222
- $Width=freaddword($f);
223
- $Height=freaddword($f);
224
- $biPlanes=freadword($f);
225
- $biBitCount=freadword($f);
226
- $RLECompression=freaddword($f);
227
- $WidthxHeight=freaddword($f);
228
- $biXPelsPerMeter=freaddword($f);
229
- $biYPelsPerMeter=freaddword($f);
230
- $NumberOfPalettesUsed=freaddword($f);
231
- $NumberOfImportantColors=freaddword($f);
216
+    $Size=freaddword($f);
217
+    $Reserved1=freadword($f);
218
+    $Reserved2=freadword($f);
219
+    $FirstByteOfImage=freaddword($f);
220
+
221
+    $SizeBITMAPINFOHEADER=freaddword($f);
222
+    $Width=freaddword($f);
223
+    $Height=freaddword($f);
224
+    $biPlanes=freadword($f);
225
+    $biBitCount=freadword($f);
226
+    $RLECompression=freaddword($f);
227
+    $WidthxHeight=freaddword($f);
228
+    $biXPelsPerMeter=freaddword($f);
229
+    $biYPelsPerMeter=freaddword($f);
230
+    $NumberOfPalettesUsed=freaddword($f);
231
+    $NumberOfImportantColors=freaddword($f);
232 232
 
233 233
 if($biBitCount<24)
234
- {
235
-  $img=imagecreate($Width,$Height);
236
-  $Colors=pow(2,$biBitCount);
237
-  for($p=0;$p<$Colors;$p++)
238
-   {
234
+    {
235
+    $img=imagecreate($Width,$Height);
236
+    $Colors=pow(2,$biBitCount);
237
+    for($p=0;$p<$Colors;$p++)
238
+    {
239 239
     $B=freadbyte($f);
240 240
     $G=freadbyte($f);
241 241
     $R=freadbyte($f);
242 242
     $Reserved=freadbyte($f);
243 243
     $Palette[]=imagecolorallocate($img,$R,$G,$B);
244
-   };
244
+    };
245 245
 
246 246
 
247 247
 
248 248
 
249 249
 if($RLECompression==0)
250 250
 {
251
-   $Zbytek=(4-ceil(($Width/(8/$biBitCount)))%4)%4;
251
+    $Zbytek=(4-ceil(($Width/(8/$biBitCount)))%4)%4;
252 252
 
253 253
 for($y=$Height-1;$y>=0;$y--)
254 254
     {
255
-     $CurrentBit=0;
256
-     for($x=0;$x<$Width;$x++)
257
-      {
258
-         $C=freadbits($f,$biBitCount);
259
-       imagesetpixel($img,$x,$y,$Palette[$C]);
260
-      };
255
+        $CurrentBit=0;
256
+        for($x=0;$x<$Width;$x++)
257
+        {
258
+            $C=freadbits($f,$biBitCount);
259
+        imagesetpixel($img,$x,$y,$Palette[$C]);
260
+        };
261 261
     if($CurrentBit!=0) {freadbyte($f);};
262 262
     for($g=0;$g<$Zbytek;$g++)
263
-     freadbyte($f);
264
-     };
263
+        freadbyte($f);
264
+        };
265 265
 
266
- };
266
+    };
267 267
 };
268 268
 
269 269
 
@@ -288,29 +288,29 @@  discard block
 block discarded – undo
288 288
 
289 289
 while(!(($prefix==0)and($suffix==0)))
290 290
 {
291
- if($prefix==0)
292
-  {
293
-   $pocet=$suffix;
294
-   $Data.=fread($f,$pocet);
295
-   $pocetb+=$pocet;
296
-   if($pocetb%2==1) {freadbyte($f); $pocetb++;};
297
-  };
298
- if($prefix>0)
299
-  {
300
-   $pocet=$prefix;
301
-   for($r=0;$r<$pocet;$r++)
291
+    if($prefix==0)
292
+    {
293
+    $pocet=$suffix;
294
+    $Data.=fread($f,$pocet);
295
+    $pocetb+=$pocet;
296
+    if($pocetb%2==1) {freadbyte($f); $pocetb++;};
297
+    };
298
+    if($prefix>0)
299
+    {
300
+    $pocet=$prefix;
301
+    for($r=0;$r<$pocet;$r++)
302 302
     $Data.=chr($suffix);
303
-  };
304
- $prefix=freadbyte($f);
305
- $suffix=freadbyte($f);
306
- $pocetb+=2;
307
- if($echoit) echo "Prefix: $prefix Suffix: $suffix<BR>";
303
+    };
304
+    $prefix=freadbyte($f);
305
+    $suffix=freadbyte($f);
306
+    $pocetb+=2;
307
+    if($echoit) echo "Prefix: $prefix Suffix: $suffix<BR>";
308 308
 };
309 309
 
310 310
 for($x=0;$x<strlen($Data);$x++)
311
- {
312
-  imagesetpixel($img,$x,$y,$Palette[ord($Data[$x])]);
313
- };
311
+    {
312
+    imagesetpixel($img,$x,$y,$Palette[ord($Data[$x])]);
313
+    };
314 314
 $Data="";
315 315
 
316 316
 };
@@ -341,44 +341,44 @@  discard block
 block discarded – undo
341 341
 
342 342
 while(!(($prefix==0)and($suffix==0)))
343 343
 {
344
- if($prefix==0)
345
-  {
346
-   $pocet=$suffix;
344
+    if($prefix==0)
345
+    {
346
+    $pocet=$suffix;
347 347
 
348
-   $CurrentBit=0;
349
-   for($h=0;$h<$pocet;$h++)
348
+    $CurrentBit=0;
349
+    for($h=0;$h<$pocet;$h++)
350 350
     $Data.=chr(freadbits($f,4));
351
-   if($CurrentBit!=0) freadbits($f,4);
352
-   $pocetb+=ceil(($pocet/2));
353
-   if($pocetb%2==1) {freadbyte($f); $pocetb++;};
354
-  };
355
- if($prefix>0)
356
-  {
357
-   $pocet=$prefix;
358
-   $i=0;
359
-   for($r=0;$r<$pocet;$r++)
351
+    if($CurrentBit!=0) freadbits($f,4);
352
+    $pocetb+=ceil(($pocet/2));
353
+    if($pocetb%2==1) {freadbyte($f); $pocetb++;};
354
+    };
355
+    if($prefix>0)
356
+    {
357
+    $pocet=$prefix;
358
+    $i=0;
359
+    for($r=0;$r<$pocet;$r++)
360 360
     {
361 361
     if($i%2==0)
362
-     {
363
-      $Data.=chr($suffix%16);
364
-     }
365
-     else
366
-     {
367
-      $Data.=chr(floor($suffix/16));
368
-     };
362
+        {
363
+        $Data.=chr($suffix%16);
364
+        }
365
+        else
366
+        {
367
+        $Data.=chr(floor($suffix/16));
368
+        };
369 369
     $i++;
370 370
     };
371
-  };
372
- $prefix=freadbyte($f);
373
- $suffix=freadbyte($f);
374
- $pocetb+=2;
375
- if($echoit) echo "Prefix: $prefix Suffix: $suffix<BR>";
371
+    };
372
+    $prefix=freadbyte($f);
373
+    $suffix=freadbyte($f);
374
+    $pocetb+=2;
375
+    if($echoit) echo "Prefix: $prefix Suffix: $suffix<BR>";
376 376
 };
377 377
 
378 378
 for($x=0;$x<strlen($Data);$x++)
379
- {
380
-  imagesetpixel($img,$x,$y,$Palette[ord($Data[$x])]);
381
- };
379
+    {
380
+    imagesetpixel($img,$x,$y,$Palette[ord($Data[$x])]);
381
+    };
382 382
 $Data="";
383 383
 
384 384
 };
@@ -386,25 +386,25 @@  discard block
 block discarded – undo
386 386
 };
387 387
 
388 388
 
389
- if($biBitCount==24)
389
+    if($biBitCount==24)
390 390
 {
391
- $img=imagecreatetruecolor($Width,$Height);
392
- $Zbytek=$Width%4;
391
+    $img=imagecreatetruecolor($Width,$Height);
392
+    $Zbytek=$Width%4;
393 393
 
394
-   for($y=$Height-1;$y>=0;$y--)
394
+    for($y=$Height-1;$y>=0;$y--)
395 395
     {
396
-     for($x=0;$x<$Width;$x++)
397
-      {
398
-       $B=freadbyte($f);
399
-       $G=freadbyte($f);
400
-       $R=freadbyte($f);
401
-       $color=imagecolorexact($img,$R,$G,$B);
402
-       if($color==-1) $color=imagecolorallocate($img,$R,$G,$B);
403
-       imagesetpixel($img,$x,$y,$color);
404
-      }
396
+        for($x=0;$x<$Width;$x++)
397
+        {
398
+        $B=freadbyte($f);
399
+        $G=freadbyte($f);
400
+        $R=freadbyte($f);
401
+        $color=imagecolorexact($img,$R,$G,$B);
402
+        if($color==-1) $color=imagecolorallocate($img,$R,$G,$B);
403
+        imagesetpixel($img,$x,$y,$color);
404
+        }
405 405
     for($z=0;$z<$Zbytek;$z++)
406
-     freadbyte($f);
407
-   };
406
+        freadbyte($f);
407
+    };
408 408
 };
409 409
 return $img;
410 410
 
@@ -438,14 +438,14 @@  discard block
 block discarded – undo
438 438
 
439 439
 function freadbyte($f)
440 440
 {
441
- return ord(fread($f,1));
441
+    return ord(fread($f,1));
442 442
 };
443 443
 
444 444
 function freadword($f)
445 445
 {
446
- $b1=freadbyte($f);
447
- $b2=freadbyte($f);
448
- return $b2*256+$b1;
446
+    $b1=freadbyte($f);
447
+    $b2=freadbyte($f);
448
+    return $b2*256+$b1;
449 449
 };
450 450
 
451 451
 
@@ -456,9 +456,9 @@  discard block
 block discarded – undo
456 456
 
457 457
 function freaddword($f)
458 458
 {
459
- $b1=freadword($f);
460
- $b2=freadword($f);
461
- return $b2*65536+$b1;
459
+    $b1=freadword($f);
460
+    $b2=freadword($f);
461
+    return $b2*65536+$b1;
462 462
 };
463 463
 
464 464
 
@@ -476,30 +476,30 @@  discard block
 block discarded – undo
476 476
 $CurrentBit=0;
477 477
 function freadbits($f,$count)
478 478
 {
479
- global $CurrentBit,$SMode;
480
- $Byte=freadbyte($f);
481
- $LastCBit=$CurrentBit;
482
- $CurrentBit+=$count;
483
- if($CurrentBit==8)
484
-  {
485
-   $CurrentBit=0;
486
-  }
487
- else
488
-  {
489
-   fseek($f,ftell($f)-1);
490
-  };
491
- return RetBits($Byte,$LastCBit,$count);
479
+    global $CurrentBit,$SMode;
480
+    $Byte=freadbyte($f);
481
+    $LastCBit=$CurrentBit;
482
+    $CurrentBit+=$count;
483
+    if($CurrentBit==8)
484
+    {
485
+    $CurrentBit=0;
486
+    }
487
+    else
488
+    {
489
+    fseek($f,ftell($f)-1);
490
+    };
491
+    return RetBits($Byte,$LastCBit,$count);
492 492
 };
493 493
 
494 494
 
495 495
 
496 496
 function RGBToHex($Red,$Green,$Blue)
497
-  {
498
-   $hRed=dechex($Red);if(strlen($hRed)==1) $hRed="0$hRed";
499
-   $hGreen=dechex($Green);if(strlen($hGreen)==1) $hGreen="0$hGreen";
500
-   $hBlue=dechex($Blue);if(strlen($hBlue)==1) $hBlue="0$hBlue";
501
-   return($hRed.$hGreen.$hBlue);
502
-  };
497
+    {
498
+    $hRed=dechex($Red);if(strlen($hRed)==1) $hRed="0$hRed";
499
+    $hGreen=dechex($Green);if(strlen($hGreen)==1) $hGreen="0$hGreen";
500
+    $hBlue=dechex($Blue);if(strlen($hBlue)==1) $hBlue="0$hBlue";
501
+    return($hRed.$hGreen.$hBlue);
502
+    };
503 503
 
504 504
         function int_to_dword($n)
505 505
         {
@@ -521,7 +521,7 @@  discard block
 block discarded – undo
521 521
 $bin=decbin($d);
522 522
 $sbin=strlen($bin);
523 523
 for($j=0;$j<$n-$sbin;$j++)
524
- $bin="0$bin";
524
+    $bin="0$bin";
525 525
 return $bin;
526 526
 };
527 527
 
Please login to merge, or discard this patch.
Spacing   +237 added lines, -237 removed lines patch added patch discarded remove patch
@@ -26,164 +26,164 @@  discard block
 block discarded – undo
26 26
 *           Returns: if $file specified - true if OK
27 27
                      if $file not specified - image data
28 28
 */
29
-function imagebmp($img,$file="",$RLE=0)
29
+function imagebmp($img, $file = "", $RLE = 0)
30 30
 {
31 31
 
32 32
 
33
-$ColorCount=imagecolorstotal($img);
33
+$ColorCount = imagecolorstotal($img);
34 34
 
35
-$Transparent=imagecolortransparent($img);
36
-$IsTransparent=$Transparent!=-1;
35
+$Transparent = imagecolortransparent($img);
36
+$IsTransparent = $Transparent != -1;
37 37
 
38 38
 
39
-if($IsTransparent) $ColorCount--;
39
+if ($IsTransparent) $ColorCount--;
40 40
 
41
-if($ColorCount==0) {$ColorCount=0; $BitCount=24;};
42
-if(($ColorCount>0)and($ColorCount<=2)) {$ColorCount=2; $BitCount=1;};
43
-if(($ColorCount>2)and($ColorCount<=16)) { $ColorCount=16; $BitCount=4;};
44
-if(($ColorCount>16)and($ColorCount<=256)) { $ColorCount=0; $BitCount=8;};
41
+if ($ColorCount == 0) {$ColorCount = 0; $BitCount = 24; };
42
+if (($ColorCount > 0) and ($ColorCount <= 2)) {$ColorCount = 2; $BitCount = 1; };
43
+if (($ColorCount > 2) and ($ColorCount <= 16)) { $ColorCount = 16; $BitCount = 4; };
44
+if (($ColorCount > 16) and ($ColorCount <= 256)) { $ColorCount = 0; $BitCount = 8; };
45 45
 
46 46
 
47
-                $Width=imagesx($img);
48
-                $Height=imagesy($img);
47
+                $Width = imagesx($img);
48
+                $Height = imagesy($img);
49 49
 
50
-                $Zbytek=(4-($Width/(8/$BitCount))%4)%4;
50
+                $Zbytek = (4 - ($Width / (8 / $BitCount)) % 4) % 4;
51 51
 
52
-                if($BitCount<24) $palsize=pow(2,$BitCount)*4;
52
+                if ($BitCount < 24) $palsize = pow(2, $BitCount) * 4;
53 53
 
54
-                $size=(floor($Width/(8/$BitCount))+$Zbytek)*$Height+54;
55
-                $size+=$palsize;
56
-                $offset=54+$palsize;
54
+                $size = (floor($Width / (8 / $BitCount)) + $Zbytek) * $Height + 54;
55
+                $size += $palsize;
56
+                $offset = 54 + $palsize;
57 57
 
58 58
                 // Bitmap File Header
59
-                $ret = 'BM';                        // header (2b)
60
-                $ret .= int_to_dword($size);        // size of file (4b)
61
-                $ret .= int_to_dword(0);        // reserved (4b)
62
-                $ret .= int_to_dword($offset);        // byte location in the file which is first byte of IMAGE (4b)
59
+                $ret = 'BM'; // header (2b)
60
+                $ret .= int_to_dword($size); // size of file (4b)
61
+                $ret .= int_to_dword(0); // reserved (4b)
62
+                $ret .= int_to_dword($offset); // byte location in the file which is first byte of IMAGE (4b)
63 63
                 // Bitmap Info Header
64
-                $ret .= int_to_dword(40);        // Size of BITMAPINFOHEADER (4b)
65
-                $ret .= int_to_dword($Width);        // width of bitmap (4b)
66
-                $ret .= int_to_dword($Height);        // height of bitmap (4b)
67
-                $ret .= int_to_word(1);        // biPlanes = 1 (2b)
68
-                $ret .= int_to_word($BitCount);        // biBitCount = {1 (mono) or 4 (16 clr ) or 8 (256 clr) or 24 (16 Mil)} (2b)
69
-                $ret .= int_to_dword($RLE);        // RLE COMPRESSION (4b)
70
-                $ret .= int_to_dword(0);        // width x height (4b)
71
-                $ret .= int_to_dword(0);        // biXPelsPerMeter (4b)
72
-                $ret .= int_to_dword(0);        // biYPelsPerMeter (4b)
73
-                $ret .= int_to_dword(0);        // Number of palettes used (4b)
74
-                $ret .= int_to_dword(0);        // Number of important colour (4b)
64
+                $ret .= int_to_dword(40); // Size of BITMAPINFOHEADER (4b)
65
+                $ret .= int_to_dword($Width); // width of bitmap (4b)
66
+                $ret .= int_to_dword($Height); // height of bitmap (4b)
67
+                $ret .= int_to_word(1); // biPlanes = 1 (2b)
68
+                $ret .= int_to_word($BitCount); // biBitCount = {1 (mono) or 4 (16 clr ) or 8 (256 clr) or 24 (16 Mil)} (2b)
69
+                $ret .= int_to_dword($RLE); // RLE COMPRESSION (4b)
70
+                $ret .= int_to_dword(0); // width x height (4b)
71
+                $ret .= int_to_dword(0); // biXPelsPerMeter (4b)
72
+                $ret .= int_to_dword(0); // biYPelsPerMeter (4b)
73
+                $ret .= int_to_dword(0); // Number of palettes used (4b)
74
+                $ret .= int_to_dword(0); // Number of important colour (4b)
75 75
                 // image data
76 76
 
77
-                $CC=$ColorCount;
78
-                $sl1=strlen($ret);
79
-                if($CC==0) $CC=256;
80
-                if($BitCount<24)
77
+                $CC = $ColorCount;
78
+                $sl1 = strlen($ret);
79
+                if ($CC == 0) $CC = 256;
80
+                if ($BitCount < 24)
81 81
                    {
82
-                    $ColorTotal=imagecolorstotal($img);
83
-                     if($IsTransparent) $ColorTotal--;
82
+                    $ColorTotal = imagecolorstotal($img);
83
+                     if ($IsTransparent) $ColorTotal--;
84 84
 
85
-                     for($p=0;$p<$ColorTotal;$p++)
85
+                     for ($p = 0; $p < $ColorTotal; $p++)
86 86
                      {
87
-                      $color=imagecolorsforindex($img,$p);
88
-                       $ret.=inttobyte($color["blue"]);
89
-                       $ret.=inttobyte($color["green"]);
90
-                       $ret.=inttobyte($color["red"]);
91
-                       $ret.=inttobyte(0); //RESERVED
87
+                      $color = imagecolorsforindex($img, $p);
88
+                       $ret .= inttobyte($color["blue"]);
89
+                       $ret .= inttobyte($color["green"]);
90
+                       $ret .= inttobyte($color["red"]);
91
+                       $ret .= inttobyte(0); //RESERVED
92 92
                      };
93 93
 
94
-                    $CT=$ColorTotal;
95
-                  for($p=$ColorTotal;$p<$CC;$p++)
94
+                    $CT = $ColorTotal;
95
+                  for ($p = $ColorTotal; $p < $CC; $p++)
96 96
                        {
97
-                      $ret.=inttobyte(0);
98
-                      $ret.=inttobyte(0);
99
-                      $ret.=inttobyte(0);
100
-                      $ret.=inttobyte(0); //RESERVED
97
+                      $ret .= inttobyte(0);
98
+                      $ret .= inttobyte(0);
99
+                      $ret .= inttobyte(0);
100
+                      $ret .= inttobyte(0); //RESERVED
101 101
                      };
102 102
                    };
103 103
 
104 104
 
105
-if($BitCount<=8)
105
+if ($BitCount <= 8)
106 106
 {
107 107
 
108
- for($y=$Height-1;$y>=0;$y--)
108
+ for ($y = $Height - 1; $y >= 0; $y--)
109 109
  {
110
-  $bWrite="";
111
-  for($x=0;$x<$Width;$x++)
110
+  $bWrite = "";
111
+  for ($x = 0; $x < $Width; $x++)
112 112
    {
113
-   $color=imagecolorat($img,$x,$y);
114
-   $bWrite.=decbinx($color,$BitCount);
115
-   if(strlen($bWrite)==8)
113
+   $color = imagecolorat($img, $x, $y);
114
+   $bWrite .= decbinx($color, $BitCount);
115
+   if (strlen($bWrite) == 8)
116 116
     {
117
-     $retd.=inttobyte(bindec($bWrite));
118
-     $bWrite="";
117
+     $retd .= inttobyte(bindec($bWrite));
118
+     $bWrite = "";
119 119
     };
120 120
    };
121 121
 
122
-  if((strlen($bWrite)<8)and(strlen($bWrite)!=0))
122
+  if ((strlen($bWrite) < 8) and (strlen($bWrite) != 0))
123 123
     {
124
-     $sl=strlen($bWrite);
125
-     for($t=0;$t<8-$sl;$t++)
126
-      $sl.="0";
127
-     $retd.=inttobyte(bindec($bWrite));
124
+     $sl = strlen($bWrite);
125
+     for ($t = 0; $t < 8 - $sl; $t++)
126
+      $sl .= "0";
127
+     $retd .= inttobyte(bindec($bWrite));
128 128
     };
129
- for($z=0;$z<$Zbytek;$z++)
130
-   $retd.=inttobyte(0);
129
+ for ($z = 0; $z < $Zbytek; $z++)
130
+   $retd .= inttobyte(0);
131 131
  };
132 132
 };
133 133
 
134
-if(($RLE==1)and($BitCount==8))
134
+if (($RLE == 1) and ($BitCount == 8))
135 135
 {
136
- for($t=0;$t<strlen($retd);$t+=4)
136
+ for ($t = 0; $t < strlen($retd); $t += 4)
137 137
   {
138
-   if($t!=0)
139
-   if(($t)%$Width==0)
140
-    $ret.=chr(0).chr(0);
138
+   if ($t != 0)
139
+   if (($t) % $Width == 0)
140
+    $ret .= chr(0) . chr(0);
141 141
 
142
-   if(($t+5)%$Width==0)
142
+   if (($t + 5) % $Width == 0)
143 143
    {
144
-     $ret.=chr(0).chr(5).substr($retd,$t,5).chr(0);
145
-     $t+=1;
144
+     $ret .= chr(0) . chr(5) . substr($retd, $t, 5) . chr(0);
145
+     $t += 1;
146 146
    }
147
-   if(($t+6)%$Width==0)
147
+   if (($t + 6) % $Width == 0)
148 148
     {
149
-     $ret.=chr(0).chr(6).substr($retd,$t,6);
150
-     $t+=2;
149
+     $ret .= chr(0) . chr(6) . substr($retd, $t, 6);
150
+     $t += 2;
151 151
     }
152 152
     else
153 153
     {
154
-     $ret.=chr(0).chr(4).substr($retd,$t,4);
154
+     $ret .= chr(0) . chr(4) . substr($retd, $t, 4);
155 155
     };
156 156
   };
157
-  $ret.=chr(0).chr(1);
157
+  $ret .= chr(0) . chr(1);
158 158
 }
159 159
 else
160 160
 {
161
-$ret.=$retd;
161
+$ret .= $retd;
162 162
 };
163 163
 
164 164
 
165
-                if($BitCount==24)
165
+                if ($BitCount == 24)
166 166
                 {
167
-                for($z=0;$z<$Zbytek;$z++)
168
-                 $Dopl.=chr(0);
167
+                for ($z = 0; $z < $Zbytek; $z++)
168
+                 $Dopl .= chr(0);
169 169
 
170
-                for($y=$Height-1;$y>=0;$y--)
170
+                for ($y = $Height - 1; $y >= 0; $y--)
171 171
                  {
172
-                 for($x=0;$x<$Width;$x++)
172
+                 for ($x = 0; $x < $Width; $x++)
173 173
                         {
174
-                           $color=imagecolorsforindex($img,ImageColorAt($img,$x,$y));
175
-                           $ret.=chr($color["blue"]).chr($color["green"]).chr($color["red"]);
174
+                           $color = imagecolorsforindex($img, ImageColorAt($img, $x, $y));
175
+                           $ret .= chr($color["blue"]) . chr($color["green"]) . chr($color["red"]);
176 176
                         }
177
-                 $ret.=$Dopl;
177
+                 $ret .= $Dopl;
178 178
                  };
179 179
 
180 180
                  };
181 181
 
182
-  if($file!="")
182
+  if ($file != "")
183 183
    {
184
-    $r=($f=fopen($file,"w"));
185
-    $r=$r and fwrite($f,$ret);
186
-    $r=$r and fclose($f);
184
+    $r = ($f = fopen($file, "w"));
185
+    $r = $r and fwrite($f, $ret);
186
+    $r = $r and fclose($f);
187 187
     return $r;
188 188
    }
189 189
   else
@@ -208,58 +208,58 @@  discard block
 block discarded – undo
208 208
 {
209 209
 global  $CurrentBit, $echoMode;
210 210
 
211
-$f=fopen($file,"r");
212
-$Header=fread($f,2);
211
+$f = fopen($file, "r");
212
+$Header = fread($f, 2);
213 213
 
214
-if($Header=="BM")
214
+if ($Header == "BM")
215 215
 {
216
- $Size=freaddword($f);
217
- $Reserved1=freadword($f);
218
- $Reserved2=freadword($f);
219
- $FirstByteOfImage=freaddword($f);
220
-
221
- $SizeBITMAPINFOHEADER=freaddword($f);
222
- $Width=freaddword($f);
223
- $Height=freaddword($f);
224
- $biPlanes=freadword($f);
225
- $biBitCount=freadword($f);
226
- $RLECompression=freaddword($f);
227
- $WidthxHeight=freaddword($f);
228
- $biXPelsPerMeter=freaddword($f);
229
- $biYPelsPerMeter=freaddword($f);
230
- $NumberOfPalettesUsed=freaddword($f);
231
- $NumberOfImportantColors=freaddword($f);
232
-
233
-if($biBitCount<24)
216
+ $Size = freaddword($f);
217
+ $Reserved1 = freadword($f);
218
+ $Reserved2 = freadword($f);
219
+ $FirstByteOfImage = freaddword($f);
220
+
221
+ $SizeBITMAPINFOHEADER = freaddword($f);
222
+ $Width = freaddword($f);
223
+ $Height = freaddword($f);
224
+ $biPlanes = freadword($f);
225
+ $biBitCount = freadword($f);
226
+ $RLECompression = freaddword($f);
227
+ $WidthxHeight = freaddword($f);
228
+ $biXPelsPerMeter = freaddword($f);
229
+ $biYPelsPerMeter = freaddword($f);
230
+ $NumberOfPalettesUsed = freaddword($f);
231
+ $NumberOfImportantColors = freaddword($f);
232
+
233
+if ($biBitCount < 24)
234 234
  {
235
-  $img=imagecreate($Width,$Height);
236
-  $Colors=pow(2,$biBitCount);
237
-  for($p=0;$p<$Colors;$p++)
235
+  $img = imagecreate($Width, $Height);
236
+  $Colors = pow(2, $biBitCount);
237
+  for ($p = 0; $p < $Colors; $p++)
238 238
    {
239
-    $B=freadbyte($f);
240
-    $G=freadbyte($f);
241
-    $R=freadbyte($f);
242
-    $Reserved=freadbyte($f);
243
-    $Palette[]=imagecolorallocate($img,$R,$G,$B);
239
+    $B = freadbyte($f);
240
+    $G = freadbyte($f);
241
+    $R = freadbyte($f);
242
+    $Reserved = freadbyte($f);
243
+    $Palette[] = imagecolorallocate($img, $R, $G, $B);
244 244
    };
245 245
 
246 246
 
247 247
 
248 248
 
249
-if($RLECompression==0)
249
+if ($RLECompression == 0)
250 250
 {
251
-   $Zbytek=(4-ceil(($Width/(8/$biBitCount)))%4)%4;
251
+   $Zbytek = (4 - ceil(($Width / (8 / $biBitCount))) % 4) % 4;
252 252
 
253
-for($y=$Height-1;$y>=0;$y--)
253
+for ($y = $Height - 1; $y >= 0; $y--)
254 254
     {
255
-     $CurrentBit=0;
256
-     for($x=0;$x<$Width;$x++)
255
+     $CurrentBit = 0;
256
+     for ($x = 0; $x < $Width; $x++)
257 257
       {
258
-         $C=freadbits($f,$biBitCount);
259
-       imagesetpixel($img,$x,$y,$Palette[$C]);
258
+         $C = freadbits($f, $biBitCount);
259
+       imagesetpixel($img, $x, $y, $Palette[$C]);
260 260
       };
261
-    if($CurrentBit!=0) {freadbyte($f);};
262
-    for($g=0;$g<$Zbytek;$g++)
261
+    if ($CurrentBit != 0) {freadbyte($f); };
262
+    for ($g = 0; $g < $Zbytek; $g++)
263 263
      freadbyte($f);
264 264
      };
265 265
 
@@ -267,142 +267,142 @@  discard block
 block discarded – undo
267 267
 };
268 268
 
269 269
 
270
-if($RLECompression==1) //$BI_RLE8
270
+if ($RLECompression == 1) //$BI_RLE8
271 271
 {
272
-$y=$Height;
272
+$y = $Height;
273 273
 
274
-$pocetb=0;
274
+$pocetb = 0;
275 275
 
276
-while(true)
276
+while (true)
277 277
 {
278 278
 $y--;
279
-$prefix=freadbyte($f);
280
-$suffix=freadbyte($f);
281
-$pocetb+=2;
279
+$prefix = freadbyte($f);
280
+$suffix = freadbyte($f);
281
+$pocetb += 2;
282 282
 
283
-$echoit=false;
283
+$echoit = false;
284 284
 
285
-if($echoit)echo "Prefix: $prefix Suffix: $suffix<BR>";
286
-if(($prefix==0)and($suffix==1)) break;
287
-if(feof($f)) break;
285
+if ($echoit)echo "Prefix: $prefix Suffix: $suffix<BR>";
286
+if (($prefix == 0) and ($suffix == 1)) break;
287
+if (feof($f)) break;
288 288
 
289
-while(!(($prefix==0)and($suffix==0)))
289
+while (!(($prefix == 0) and ($suffix == 0)))
290 290
 {
291
- if($prefix==0)
291
+ if ($prefix == 0)
292 292
   {
293
-   $pocet=$suffix;
294
-   $Data.=fread($f,$pocet);
295
-   $pocetb+=$pocet;
296
-   if($pocetb%2==1) {freadbyte($f); $pocetb++;};
293
+   $pocet = $suffix;
294
+   $Data .= fread($f, $pocet);
295
+   $pocetb += $pocet;
296
+   if ($pocetb % 2 == 1) {freadbyte($f); $pocetb++; };
297 297
   };
298
- if($prefix>0)
298
+ if ($prefix > 0)
299 299
   {
300
-   $pocet=$prefix;
301
-   for($r=0;$r<$pocet;$r++)
302
-    $Data.=chr($suffix);
300
+   $pocet = $prefix;
301
+   for ($r = 0; $r < $pocet; $r++)
302
+    $Data .= chr($suffix);
303 303
   };
304
- $prefix=freadbyte($f);
305
- $suffix=freadbyte($f);
306
- $pocetb+=2;
307
- if($echoit) echo "Prefix: $prefix Suffix: $suffix<BR>";
304
+ $prefix = freadbyte($f);
305
+ $suffix = freadbyte($f);
306
+ $pocetb += 2;
307
+ if ($echoit) echo "Prefix: $prefix Suffix: $suffix<BR>";
308 308
 };
309 309
 
310
-for($x=0;$x<strlen($Data);$x++)
310
+for ($x = 0; $x < strlen($Data); $x++)
311 311
  {
312
-  imagesetpixel($img,$x,$y,$Palette[ord($Data[$x])]);
312
+  imagesetpixel($img, $x, $y, $Palette[ord($Data[$x])]);
313 313
  };
314
-$Data="";
314
+$Data = "";
315 315
 
316 316
 };
317 317
 
318 318
 };
319 319
 
320 320
 
321
-if($RLECompression==2) //$BI_RLE4
321
+if ($RLECompression == 2) //$BI_RLE4
322 322
 {
323
-$y=$Height;
324
-$pocetb=0;
323
+$y = $Height;
324
+$pocetb = 0;
325 325
 
326 326
 /*while(!feof($f))
327 327
  echo freadbyte($f)."_".freadbyte($f)."<BR>";*/
328
-while(true)
328
+while (true)
329 329
 {
330 330
 //break;
331 331
 $y--;
332
-$prefix=freadbyte($f);
333
-$suffix=freadbyte($f);
334
-$pocetb+=2;
332
+$prefix = freadbyte($f);
333
+$suffix = freadbyte($f);
334
+$pocetb += 2;
335 335
 
336
-$echoit=false;
336
+$echoit = false;
337 337
 
338
-if($echoit)echo "Prefix: $prefix Suffix: $suffix<BR>";
339
-if(($prefix==0)and($suffix==1)) break;
340
-if(feof($f)) break;
338
+if ($echoit)echo "Prefix: $prefix Suffix: $suffix<BR>";
339
+if (($prefix == 0) and ($suffix == 1)) break;
340
+if (feof($f)) break;
341 341
 
342
-while(!(($prefix==0)and($suffix==0)))
342
+while (!(($prefix == 0) and ($suffix == 0)))
343 343
 {
344
- if($prefix==0)
344
+ if ($prefix == 0)
345 345
   {
346
-   $pocet=$suffix;
347
-
348
-   $CurrentBit=0;
349
-   for($h=0;$h<$pocet;$h++)
350
-    $Data.=chr(freadbits($f,4));
351
-   if($CurrentBit!=0) freadbits($f,4);
352
-   $pocetb+=ceil(($pocet/2));
353
-   if($pocetb%2==1) {freadbyte($f); $pocetb++;};
346
+   $pocet = $suffix;
347
+
348
+   $CurrentBit = 0;
349
+   for ($h = 0; $h < $pocet; $h++)
350
+    $Data .= chr(freadbits($f, 4));
351
+   if ($CurrentBit != 0) freadbits($f, 4);
352
+   $pocetb += ceil(($pocet / 2));
353
+   if ($pocetb % 2 == 1) {freadbyte($f); $pocetb++; };
354 354
   };
355
- if($prefix>0)
355
+ if ($prefix > 0)
356 356
   {
357
-   $pocet=$prefix;
358
-   $i=0;
359
-   for($r=0;$r<$pocet;$r++)
357
+   $pocet = $prefix;
358
+   $i = 0;
359
+   for ($r = 0; $r < $pocet; $r++)
360 360
     {
361
-    if($i%2==0)
361
+    if ($i % 2 == 0)
362 362
      {
363
-      $Data.=chr($suffix%16);
363
+      $Data .= chr($suffix % 16);
364 364
      }
365 365
      else
366 366
      {
367
-      $Data.=chr(floor($suffix/16));
367
+      $Data .= chr(floor($suffix / 16));
368 368
      };
369 369
     $i++;
370 370
     };
371 371
   };
372
- $prefix=freadbyte($f);
373
- $suffix=freadbyte($f);
374
- $pocetb+=2;
375
- if($echoit) echo "Prefix: $prefix Suffix: $suffix<BR>";
372
+ $prefix = freadbyte($f);
373
+ $suffix = freadbyte($f);
374
+ $pocetb += 2;
375
+ if ($echoit) echo "Prefix: $prefix Suffix: $suffix<BR>";
376 376
 };
377 377
 
378
-for($x=0;$x<strlen($Data);$x++)
378
+for ($x = 0; $x < strlen($Data); $x++)
379 379
  {
380
-  imagesetpixel($img,$x,$y,$Palette[ord($Data[$x])]);
380
+  imagesetpixel($img, $x, $y, $Palette[ord($Data[$x])]);
381 381
  };
382
-$Data="";
382
+$Data = "";
383 383
 
384 384
 };
385 385
 
386 386
 };
387 387
 
388 388
 
389
- if($biBitCount==24)
389
+ if ($biBitCount == 24)
390 390
 {
391
- $img=imagecreatetruecolor($Width,$Height);
392
- $Zbytek=$Width%4;
391
+ $img = imagecreatetruecolor($Width, $Height);
392
+ $Zbytek = $Width % 4;
393 393
 
394
-   for($y=$Height-1;$y>=0;$y--)
394
+   for ($y = $Height - 1; $y >= 0; $y--)
395 395
     {
396
-     for($x=0;$x<$Width;$x++)
396
+     for ($x = 0; $x < $Width; $x++)
397 397
       {
398
-       $B=freadbyte($f);
399
-       $G=freadbyte($f);
400
-       $R=freadbyte($f);
401
-       $color=imagecolorexact($img,$R,$G,$B);
402
-       if($color==-1) $color=imagecolorallocate($img,$R,$G,$B);
403
-       imagesetpixel($img,$x,$y,$color);
398
+       $B = freadbyte($f);
399
+       $G = freadbyte($f);
400
+       $R = freadbyte($f);
401
+       $color = imagecolorexact($img, $R, $G, $B);
402
+       if ($color == -1) $color = imagecolorallocate($img, $R, $G, $B);
403
+       imagesetpixel($img, $x, $y, $color);
404 404
       }
405
-    for($z=0;$z<$Zbytek;$z++)
405
+    for ($z = 0; $z < $Zbytek; $z++)
406 406
      freadbyte($f);
407 407
    };
408 408
 };
@@ -438,14 +438,14 @@  discard block
 block discarded – undo
438 438
 
439 439
 function freadbyte($f)
440 440
 {
441
- return ord(fread($f,1));
441
+ return ord(fread($f, 1));
442 442
 };
443 443
 
444 444
 function freadword($f)
445 445
 {
446
- $b1=freadbyte($f);
447
- $b2=freadbyte($f);
448
- return $b2*256+$b1;
446
+ $b1 = freadbyte($f);
447
+ $b2 = freadbyte($f);
448
+ return $b2 * 256 + $b1;
449 449
 };
450 450
 
451 451
 
@@ -456,72 +456,72 @@  discard block
 block discarded – undo
456 456
 
457 457
 function freaddword($f)
458 458
 {
459
- $b1=freadword($f);
460
- $b2=freadword($f);
461
- return $b2*65536+$b1;
459
+ $b1 = freadword($f);
460
+ $b2 = freadword($f);
461
+ return $b2 * 65536 + $b1;
462 462
 };
463 463
 
464 464
 
465 465
 
466
-function RetBits($byte,$start,$len)
466
+function RetBits($byte, $start, $len)
467 467
 {
468
-$bin=decbin8($byte);
469
-$r=bindec(substr($bin,$start,$len));
468
+$bin = decbin8($byte);
469
+$r = bindec(substr($bin, $start, $len));
470 470
 return $r;
471 471
 
472 472
 };
473 473
 
474 474
 
475 475
 
476
-$CurrentBit=0;
477
-function freadbits($f,$count)
476
+$CurrentBit = 0;
477
+function freadbits($f, $count)
478 478
 {
479
- global $CurrentBit,$SMode;
480
- $Byte=freadbyte($f);
481
- $LastCBit=$CurrentBit;
482
- $CurrentBit+=$count;
483
- if($CurrentBit==8)
479
+ global $CurrentBit, $SMode;
480
+ $Byte = freadbyte($f);
481
+ $LastCBit = $CurrentBit;
482
+ $CurrentBit += $count;
483
+ if ($CurrentBit == 8)
484 484
   {
485
-   $CurrentBit=0;
485
+   $CurrentBit = 0;
486 486
   }
487 487
  else
488 488
   {
489
-   fseek($f,ftell($f)-1);
489
+   fseek($f, ftell($f) - 1);
490 490
   };
491
- return RetBits($Byte,$LastCBit,$count);
491
+ return RetBits($Byte, $LastCBit, $count);
492 492
 };
493 493
 
494 494
 
495 495
 
496
-function RGBToHex($Red,$Green,$Blue)
496
+function RGBToHex($Red, $Green, $Blue)
497 497
   {
498
-   $hRed=dechex($Red);if(strlen($hRed)==1) $hRed="0$hRed";
499
-   $hGreen=dechex($Green);if(strlen($hGreen)==1) $hGreen="0$hGreen";
500
-   $hBlue=dechex($Blue);if(strlen($hBlue)==1) $hBlue="0$hBlue";
501
-   return($hRed.$hGreen.$hBlue);
498
+   $hRed = dechex($Red); if (strlen($hRed) == 1) $hRed = "0$hRed";
499
+   $hGreen = dechex($Green); if (strlen($hGreen) == 1) $hGreen = "0$hGreen";
500
+   $hBlue = dechex($Blue); if (strlen($hBlue) == 1) $hBlue = "0$hBlue";
501
+   return($hRed . $hGreen . $hBlue);
502 502
   };
503 503
 
504 504
         function int_to_dword($n)
505 505
         {
506
-                return chr($n & 255).chr(($n >> 8) & 255).chr(($n >> 16) & 255).chr(($n >> 24) & 255);
506
+                return chr($n & 255) . chr(($n >> 8) & 255) . chr(($n >> 16) & 255) . chr(($n >> 24) & 255);
507 507
         }
508 508
         function int_to_word($n)
509 509
         {
510
-                return chr($n & 255).chr(($n >> 8) & 255);
510
+                return chr($n & 255) . chr(($n >> 8) & 255);
511 511
         }
512 512
 
513 513
 
514 514
 function decbin8($d)
515 515
 {
516
-return decbinx($d,8);
516
+return decbinx($d, 8);
517 517
 };
518 518
 
519
-function decbinx($d,$n)
519
+function decbinx($d, $n)
520 520
 {
521
-$bin=decbin($d);
522
-$sbin=strlen($bin);
523
-for($j=0;$j<$n-$sbin;$j++)
524
- $bin="0$bin";
521
+$bin = decbin($d);
522
+$sbin = strlen($bin);
523
+for ($j = 0; $j < $n - $sbin; $j++)
524
+ $bin = "0$bin";
525 525
 return $bin;
526 526
 };
527 527
 
Please login to merge, or discard this patch.
Braces   +90 added lines, -48 removed lines patch added patch discarded remove patch
@@ -36,7 +36,9 @@  discard block
 block discarded – undo
36 36
 $IsTransparent=$Transparent!=-1;
37 37
 
38 38
 
39
-if($IsTransparent) $ColorCount--;
39
+if($IsTransparent) {
40
+    $ColorCount--;
41
+}
40 42
 
41 43
 if($ColorCount==0) {$ColorCount=0; $BitCount=24;};
42 44
 if(($ColorCount>0)and($ColorCount<=2)) {$ColorCount=2; $BitCount=1;};
@@ -49,7 +51,9 @@  discard block
 block discarded – undo
49 51
 
50 52
                 $Zbytek=(4-($Width/(8/$BitCount))%4)%4;
51 53
 
52
-                if($BitCount<24) $palsize=pow(2,$BitCount)*4;
54
+                if($BitCount<24) {
55
+                    $palsize=pow(2,$BitCount)*4;
56
+                }
53 57
 
54 58
                 $size=(floor($Width/(8/$BitCount))+$Zbytek)*$Height+54;
55 59
                 $size+=$palsize;
@@ -76,11 +80,15 @@  discard block
 block discarded – undo
76 80
 
77 81
                 $CC=$ColorCount;
78 82
                 $sl1=strlen($ret);
79
-                if($CC==0) $CC=256;
83
+                if($CC==0) {
84
+                    $CC=256;
85
+                }
80 86
                 if($BitCount<24)
81 87
                    {
82 88
                     $ColorTotal=imagecolorstotal($img);
83
-                     if($IsTransparent) $ColorTotal--;
89
+                     if($IsTransparent) {
90
+                         $ColorTotal--;
91
+                     }
84 92
 
85 93
                      for($p=0;$p<$ColorTotal;$p++)
86 94
                      {
@@ -122,12 +130,14 @@  discard block
 block discarded – undo
122 130
   if((strlen($bWrite)<8)and(strlen($bWrite)!=0))
123 131
     {
124 132
      $sl=strlen($bWrite);
125
-     for($t=0;$t<8-$sl;$t++)
126
-      $sl.="0";
133
+     for($t=0;$t<8-$sl;$t++) {
134
+           $sl.="0";
135
+     }
127 136
      $retd.=inttobyte(bindec($bWrite));
128 137
     };
129
- for($z=0;$z<$Zbytek;$z++)
130
-   $retd.=inttobyte(0);
138
+ for($z=0;$z<$Zbytek;$z++) {
139
+    $retd.=inttobyte(0);
140
+ }
131 141
  };
132 142
 };
133 143
 
@@ -135,9 +145,10 @@  discard block
 block discarded – undo
135 145
 {
136 146
  for($t=0;$t<strlen($retd);$t+=4)
137 147
   {
138
-   if($t!=0)
139
-   if(($t)%$Width==0)
148
+   if($t!=0) {
149
+      if(($t)%$Width==0)
140 150
     $ret.=chr(0).chr(0);
151
+   }
141 152
 
142 153
    if(($t+5)%$Width==0)
143 154
    {
@@ -148,15 +159,13 @@  discard block
 block discarded – undo
148 159
     {
149 160
      $ret.=chr(0).chr(6).substr($retd,$t,6);
150 161
      $t+=2;
151
-    }
152
-    else
162
+    } else
153 163
     {
154 164
      $ret.=chr(0).chr(4).substr($retd,$t,4);
155 165
     };
156 166
   };
157 167
   $ret.=chr(0).chr(1);
158
-}
159
-else
168
+} else
160 169
 {
161 170
 $ret.=$retd;
162 171
 };
@@ -164,8 +173,9 @@  discard block
 block discarded – undo
164 173
 
165 174
                 if($BitCount==24)
166 175
                 {
167
-                for($z=0;$z<$Zbytek;$z++)
168
-                 $Dopl.=chr(0);
176
+                for($z=0;$z<$Zbytek;$z++) {
177
+                                 $Dopl.=chr(0);
178
+                }
169 179
 
170 180
                 for($y=$Height-1;$y>=0;$y--)
171 181
                  {
@@ -185,8 +195,7 @@  discard block
 block discarded – undo
185 195
     $r=$r and fwrite($f,$ret);
186 196
     $r=$r and fclose($f);
187 197
     return $r;
188
-   }
189
-  else
198
+   } else
190 199
   {
191 200
    echo $ret;
192 201
   };
@@ -259,17 +268,20 @@  discard block
 block discarded – undo
259 268
        imagesetpixel($img,$x,$y,$Palette[$C]);
260 269
       };
261 270
     if($CurrentBit!=0) {freadbyte($f);};
262
-    for($g=0;$g<$Zbytek;$g++)
263
-     freadbyte($f);
271
+    for($g=0;$g<$Zbytek;$g++) {
272
+         freadbyte($f);
273
+    }
264 274
      };
265 275
 
266 276
  };
267 277
 };
268 278
 
269 279
 
270
-if($RLECompression==1) //$BI_RLE8
280
+if($RLECompression==1) {
281
+    //$BI_RLE8
271 282
 {
272 283
 $y=$Height;
284
+}
273 285
 
274 286
 $pocetb=0;
275 287
 
@@ -282,9 +294,15 @@  discard block
 block discarded – undo
282 294
 
283 295
 $echoit=false;
284 296
 
285
-if($echoit)echo "Prefix: $prefix Suffix: $suffix<BR>";
286
-if(($prefix==0)and($suffix==1)) break;
287
-if(feof($f)) break;
297
+if($echoit) {
298
+    echo "Prefix: $prefix Suffix: $suffix<BR>";
299
+}
300
+if(($prefix==0)and($suffix==1)) {
301
+    break;
302
+}
303
+if(feof($f)) {
304
+    break;
305
+}
288 306
 
289 307
 while(!(($prefix==0)and($suffix==0)))
290 308
 {
@@ -298,14 +316,17 @@  discard block
 block discarded – undo
298 316
  if($prefix>0)
299 317
   {
300 318
    $pocet=$prefix;
301
-   for($r=0;$r<$pocet;$r++)
302
-    $Data.=chr($suffix);
319
+   for($r=0;$r<$pocet;$r++) {
320
+       $Data.=chr($suffix);
321
+   }
303 322
   };
304 323
  $prefix=freadbyte($f);
305 324
  $suffix=freadbyte($f);
306 325
  $pocetb+=2;
307
- if($echoit) echo "Prefix: $prefix Suffix: $suffix<BR>";
308
-};
326
+ if($echoit) {
327
+     echo "Prefix: $prefix Suffix: $suffix<BR>";
328
+ }
329
+ };
309 330
 
310 331
 for($x=0;$x<strlen($Data);$x++)
311 332
  {
@@ -318,9 +339,11 @@  discard block
 block discarded – undo
318 339
 };
319 340
 
320 341
 
321
-if($RLECompression==2) //$BI_RLE4
342
+if($RLECompression==2) {
343
+    //$BI_RLE4
322 344
 {
323 345
 $y=$Height;
346
+}
324 347
 $pocetb=0;
325 348
 
326 349
 /*while(!feof($f))
@@ -335,9 +358,15 @@  discard block
 block discarded – undo
335 358
 
336 359
 $echoit=false;
337 360
 
338
-if($echoit)echo "Prefix: $prefix Suffix: $suffix<BR>";
339
-if(($prefix==0)and($suffix==1)) break;
340
-if(feof($f)) break;
361
+if($echoit) {
362
+    echo "Prefix: $prefix Suffix: $suffix<BR>";
363
+}
364
+if(($prefix==0)and($suffix==1)) {
365
+    break;
366
+}
367
+if(feof($f)) {
368
+    break;
369
+}
341 370
 
342 371
 while(!(($prefix==0)and($suffix==0)))
343 372
 {
@@ -346,9 +375,12 @@  discard block
 block discarded – undo
346 375
    $pocet=$suffix;
347 376
 
348 377
    $CurrentBit=0;
349
-   for($h=0;$h<$pocet;$h++)
350
-    $Data.=chr(freadbits($f,4));
351
-   if($CurrentBit!=0) freadbits($f,4);
378
+   for($h=0;$h<$pocet;$h++) {
379
+       $Data.=chr(freadbits($f,4));
380
+   }
381
+   if($CurrentBit!=0) {
382
+       freadbits($f,4);
383
+   }
352 384
    $pocetb+=ceil(($pocet/2));
353 385
    if($pocetb%2==1) {freadbyte($f); $pocetb++;};
354 386
   };
@@ -361,8 +393,7 @@  discard block
 block discarded – undo
361 393
     if($i%2==0)
362 394
      {
363 395
       $Data.=chr($suffix%16);
364
-     }
365
-     else
396
+     } else
366 397
      {
367 398
       $Data.=chr(floor($suffix/16));
368 399
      };
@@ -372,8 +403,10 @@  discard block
 block discarded – undo
372 403
  $prefix=freadbyte($f);
373 404
  $suffix=freadbyte($f);
374 405
  $pocetb+=2;
375
- if($echoit) echo "Prefix: $prefix Suffix: $suffix<BR>";
376
-};
406
+ if($echoit) {
407
+     echo "Prefix: $prefix Suffix: $suffix<BR>";
408
+ }
409
+ };
377 410
 
378 411
 for($x=0;$x<strlen($Data);$x++)
379 412
  {
@@ -399,11 +432,14 @@  discard block
 block discarded – undo
399 432
        $G=freadbyte($f);
400 433
        $R=freadbyte($f);
401 434
        $color=imagecolorexact($img,$R,$G,$B);
402
-       if($color==-1) $color=imagecolorallocate($img,$R,$G,$B);
435
+       if($color==-1) {
436
+           $color=imagecolorallocate($img,$R,$G,$B);
437
+       }
403 438
        imagesetpixel($img,$x,$y,$color);
404 439
       }
405
-    for($z=0;$z<$Zbytek;$z++)
406
-     freadbyte($f);
440
+    for($z=0;$z<$Zbytek;$z++) {
441
+         freadbyte($f);
442
+    }
407 443
    };
408 444
 };
409 445
 return $img;
@@ -483,8 +519,7 @@  discard block
 block discarded – undo
483 519
  if($CurrentBit==8)
484 520
   {
485 521
    $CurrentBit=0;
486
-  }
487
- else
522
+  } else
488 523
   {
489 524
    fseek($f,ftell($f)-1);
490 525
   };
@@ -495,9 +530,15 @@  discard block
 block discarded – undo
495 530
 
496 531
 function RGBToHex($Red,$Green,$Blue)
497 532
   {
498
-   $hRed=dechex($Red);if(strlen($hRed)==1) $hRed="0$hRed";
499
-   $hGreen=dechex($Green);if(strlen($hGreen)==1) $hGreen="0$hGreen";
500
-   $hBlue=dechex($Blue);if(strlen($hBlue)==1) $hBlue="0$hBlue";
533
+   $hRed=dechex($Red);if(strlen($hRed)==1) {
534
+       $hRed="0$hRed";
535
+   }
536
+   $hGreen=dechex($Green);if(strlen($hGreen)==1) {
537
+       $hGreen="0$hGreen";
538
+   }
539
+   $hBlue=dechex($Blue);if(strlen($hBlue)==1) {
540
+       $hBlue="0$hBlue";
541
+   }
501 542
    return($hRed.$hGreen.$hBlue);
502 543
   };
503 544
 
@@ -520,8 +561,9 @@  discard block
 block discarded – undo
520 561
 {
521 562
 $bin=decbin($d);
522 563
 $sbin=strlen($bin);
523
-for($j=0;$j<$n-$sbin;$j++)
564
+for($j=0;$j<$n-$sbin;$j++) {
524 565
  $bin="0$bin";
566
+}
525 567
 return $bin;
526 568
 };
527 569
 
Please login to merge, or discard this patch.
htdocs/lib2/logic/attribute.class.php 1 patch
Doc Comments   +4 added lines patch added patch discarded remove patch
@@ -23,6 +23,10 @@
 block discarded – undo
23 23
         return self::getAttrbutesListArrayInternal($cacheId, false, $firstLetterUppercase);
24 24
     }
25 25
 
26
+    /**
27
+     * @param boolean $bOnlySelectable
28
+     * @param boolean $firstLetterUppercase
29
+     */
26 30
     public static function getAttrbutesListArrayInternal($cacheId, $bOnlySelectable, $firstLetterUppercase)
27 31
     {
28 32
         global $opt;
Please login to merge, or discard this patch.
htdocs/lib2/logic/cache.class.php 2 patches
Doc Comments   +3 added lines, -3 removed lines patch added patch discarded remove patch
@@ -411,9 +411,9 @@
 block discarded – undo
411 411
     }
412 412
 
413 413
     /**
414
-     * @param $cacheId
415
-     * @param $start
416
-     * @param $count
414
+     * @param integer $cacheId
415
+     * @param integer $start
416
+     * @param integer $count
417 417
      * @param bool $deleted
418 418
      * @param bool $protect_old_coords
419 419
      *
Please login to merge, or discard this patch.
Spacing   +3 added lines, -3 removed lines patch added patch discarded remove patch
@@ -521,7 +521,7 @@  discard block
 block discarded – undo
521 521
                 if (!$newcoord) {
522 522
                     $newcoord = $coords[$coordpos];
523 523
                 }
524
-                ++ $coordpos;
524
+                ++$coordpos;
525 525
             }
526 526
             if ($newcoord) {
527 527
                 $distance = geomath::calcDistance(
@@ -554,7 +554,7 @@  discard block
 block discarded – undo
554 554
             $original = count($coords) - 1;
555 555
             $lastlogdate = $logs[count($logs) - 1]['order_date'];
556 556
             while ($original > 0 && $coords[$original - 1]['date'] < $lastlogdate) {
557
-                -- $original;
557
+                --$original;
558 558
             }
559 559
             $coord = new coordinate($coords[$original]['latitude'], $coords[$original]['longitude']);
560 560
             $logs[] = [
@@ -955,7 +955,7 @@  discard block
 block discarded – undo
955 955
             $logTypes[$i]['selected'] = ($logtype == $defaultLogType) ? true : false;
956 956
             $logTypes[$i]['name'] = $logtypeNames[$logtype];
957 957
             $logTypes[$i]['id'] = $logtype;
958
-            $i ++;
958
+            $i++;
959 959
         }
960 960
 
961 961
         // return
Please login to merge, or discard this patch.