Lines Matching refs:col

393 								for ($col = 0; $col < $thisfile_bmp_header_raw['width']; $col = $col) {
397 $thisfile_bmp['data'][$row][$col] = $thisfile_bmp['palette'][$paletteindex];
398 $col++;
410 for ($col = 0; $col < $thisfile_bmp_header_raw['width']; $col = $col) {
414 $thisfile_bmp['data'][$row][$col] = $thisfile_bmp['palette'][$paletteindex];
415 $col++;
427 for ($col = 0; $col < $thisfile_bmp_header_raw['width']; $col++) {
429 $thisfile_bmp['data'][$row][$col] = $thisfile_bmp['palette'][$paletteindex];
440 for ($col = 0; $col < $thisfile_bmp_header_raw['width']; $col++) {
441 …$thisfile_bmp['data'][$row][$col] = (ord($BMPpixelData[$pixeldataoffset+2]) << 16) | (ord($BMPpixe…
453 for ($col = 0; $col < $thisfile_bmp_header_raw['width']; $col++) {
454 …$thisfile_bmp['data'][$row][$col] = (ord($BMPpixelData[$pixeldataoffset+3]) << 24) | (ord($BMPpixe…
504 $col = ($pixelcounter % $thisfile_bmp_header_raw['width']) + $colincrement;
505 …$row = ($thisfile_bmp_header_raw['height'] - 1 - (($pixelcounter - $col) / $thisfile_bmp_header_ra…
506 $pixelcounter = ($row * $thisfile_bmp_header_raw['width']) + $col;
516 $col = $pixelcounter % $thisfile_bmp_header_raw['width'];
517 …$row = $thisfile_bmp_header_raw['height'] - 1 - (($pixelcounter - $col) / $thisfile_bmp_header_raw…
518 $thisfile_bmp['data'][$row][$col] = $thisfile_bmp['palette'][$paletteindex];
533 $col = $pixelcounter % $thisfile_bmp_header_raw['width'];
534 …$row = $thisfile_bmp_header_raw['height'] - 1 - (($pixelcounter - $col) / $thisfile_bmp_header_raw…
535 $thisfile_bmp['data'][$row][$col] = $thisfile_bmp['palette'][$secondbyte];
580 $col = ($pixelcounter % $thisfile_bmp_header_raw['width']) + $colincrement;
581 …$row = ($thisfile_bmp_header_raw['height'] - 1 - (($pixelcounter - $col) / $thisfile_bmp_header_ra…
582 $pixelcounter = ($row * $thisfile_bmp_header_raw['width']) + $col;
602 $col = $pixelcounter % $thisfile_bmp_header_raw['width'];
603 …$row = $thisfile_bmp_header_raw['height'] - 1 - (($pixelcounter - $col) / $thisfile_bmp_header_raw…
604 $thisfile_bmp['data'][$row][$col] = $thisfile_bmp['palette'][$paletteindex];
622 $col = $pixelcounter % $thisfile_bmp_header_raw['width'];
623 …$row = $thisfile_bmp_header_raw['height'] - 1 - (($pixelcounter - $col) / $thisfile_bmp_header_raw…
624 $thisfile_bmp['data'][$row][$col] = $thisfile_bmp['palette'][ $paletteindexes[ $i % 2 ]];
660 for ($col = 0; $col < $thisfile_bmp_header_raw['width']; $col++) {
667 $thisfile_bmp['data'][$row][$col] = (($red << 16) | ($green << 8) | $blue);
736 foreach ($colarray as $col => $color) {
743 imagesetpixel($gd, $col, $row, $pixelcolor);