Lines Matching refs:col

339 								for ($col = 0; $col < $thisfile_bmp_header_raw['width']; $col = $col) {
343 $thisfile_bmp['data'][$row][$col] = $thisfile_bmp['palette'][$paletteindex];
344 $col++;
356 for ($col = 0; $col < $thisfile_bmp_header_raw['width']; $col = $col) {
360 $thisfile_bmp['data'][$row][$col] = $thisfile_bmp['palette'][$paletteindex];
361 $col++;
373 for ($col = 0; $col < $thisfile_bmp_header_raw['width']; $col++) {
375 $thisfile_bmp['data'][$row][$col] = $thisfile_bmp['palette'][$paletteindex];
386 for ($col = 0; $col < $thisfile_bmp_header_raw['width']; $col++) {
387 …$thisfile_bmp['data'][$row][$col] = (ord($BMPpixelData[$pixeldataoffset+2]) << 16) | (ord($BMPpixe…
399 for ($col = 0; $col < $thisfile_bmp_header_raw['width']; $col++) {
400 …$thisfile_bmp['data'][$row][$col] = (ord($BMPpixelData[$pixeldataoffset+3]) << 24) | (ord($BMPpixe…
450 $col = ($pixelcounter % $thisfile_bmp_header_raw['width']) + $colincrement;
451 …$row = ($thisfile_bmp_header_raw['height'] - 1 - (($pixelcounter - $col) / $thisfile_bmp_header_ra…
452 $pixelcounter = ($row * $thisfile_bmp_header_raw['width']) + $col;
462 $col = $pixelcounter % $thisfile_bmp_header_raw['width'];
463 …$row = $thisfile_bmp_header_raw['height'] - 1 - (($pixelcounter - $col) / $thisfile_bmp_header_raw…
464 $thisfile_bmp['data'][$row][$col] = $thisfile_bmp['palette'][$paletteindex];
479 $col = $pixelcounter % $thisfile_bmp_header_raw['width'];
480 …$row = $thisfile_bmp_header_raw['height'] - 1 - (($pixelcounter - $col) / $thisfile_bmp_header_raw…
481 $thisfile_bmp['data'][$row][$col] = $thisfile_bmp['palette'][$secondbyte];
526 $col = ($pixelcounter % $thisfile_bmp_header_raw['width']) + $colincrement;
527 …$row = ($thisfile_bmp_header_raw['height'] - 1 - (($pixelcounter - $col) / $thisfile_bmp_header_ra…
528 $pixelcounter = ($row * $thisfile_bmp_header_raw['width']) + $col;
549 $col = $pixelcounter % $thisfile_bmp_header_raw['width'];
550 …$row = $thisfile_bmp_header_raw['height'] - 1 - (($pixelcounter - $col) / $thisfile_bmp_header_raw…
551 $thisfile_bmp['data'][$row][$col] = $thisfile_bmp['palette'][$paletteindex];
569 $col = $pixelcounter % $thisfile_bmp_header_raw['width'];
570 …$row = $thisfile_bmp_header_raw['height'] - 1 - (($pixelcounter - $col) / $thisfile_bmp_header_raw…
571 $thisfile_bmp['data'][$row][$col] = $thisfile_bmp['palette'][$paletteindexes[($i % 2)]];
603 for ($col = 0; $col < $thisfile_bmp_header_raw['width']; $col++) {
610 $thisfile_bmp['data'][$row][$col] = (($red << 16) | ($green << 8) | ($blue));
649 for ($col = 0; $col < $BMPinfo['resolution_x']; $col++) {
650 if (isset($BMPinfo['bmp']['data'][$row][$col])) {
651 $red = ($BMPinfo['bmp']['data'][$row][$col] & 0x00FF0000) >> 16;
652 $green = ($BMPinfo['bmp']['data'][$row][$col] & 0x0000FF00) >> 8;
653 $blue = ($BMPinfo['bmp']['data'][$row][$col] & 0x000000FF);
655 imagesetpixel($im, $col, $row, $pixelcolor);