Searched refs:BITMAPINFOHEADER (Results 1 – 2 of 2) sorted by relevance
/plugin/photogallery/phpThumb/ |
H A D | phpthumb.bmp.php | 67 $BITMAPINFOHEADER = phpthumb_functions::LittleEndian2String( 40, 4); // DWORD biSize; 68 $BITMAPINFOHEADER .= phpthumb_functions::LittleEndian2String( $imageX, 4); // LONG biWidth; 69 $BITMAPINFOHEADER .= phpthumb_functions::LittleEndian2String( $imageY, 4); // LONG biHeight; 70 $BITMAPINFOHEADER .= phpthumb_functions::LittleEndian2String( 1, 2); // WORD biPlanes; 71 $BITMAPINFOHEADER .= phpthumb_functions::LittleEndian2String( 24, 2); // WORD biBitCount; 72 …$BITMAPINFOHEADER .= phpthumb_functions::LittleEndian2String( 0, 4); // DWORD biCompression; 73 $BITMAPINFOHEADER .= phpthumb_functions::LittleEndian2String( 0, 4); // DWORD biSizeImage; 74 …$BITMAPINFOHEADER .= phpthumb_functions::LittleEndian2String( 2835, 4); // LONG biXPelsPerMet… 76 $BITMAPINFOHEADER .= phpthumb_functions::LittleEndian2String( 0, 4); // DWORD biClrUsed; 77 …$BITMAPINFOHEADER .= phpthumb_functions::LittleEndian2String( 0, 4); // DWORD biClrImportan… [all …]
|
/plugin/jplayer/vendor/james-heinrich/getid3/getid3/ |
H A D | module.audio-video.riff.php | 2072 * @param string $BITMAPINFOHEADER 2077 public static function ParseBITMAPINFOHEADER($BITMAPINFOHEADER, $littleEndian=true) { argument 2079 …$parsed['biSize'] = substr($BITMAPINFOHEADER, 0, 4); // number of bytes required by the … 2080 $parsed['biWidth'] = substr($BITMAPINFOHEADER, 4, 4); // width of the bitmap in pixels 2082 …$parsed['biPlanes'] = substr($BITMAPINFOHEADER, 12, 2); // number of color planes on the ta… 2083 …$parsed['biBitCount'] = substr($BITMAPINFOHEADER, 14, 2); // Specifies the number of bits per… 2084 …$parsed['biSizeImage'] = substr($BITMAPINFOHEADER, 20, 4); // size of the bitmap data section … 2085 …$parsed['biXPelsPerMeter'] = substr($BITMAPINFOHEADER, 24, 4); // horizontal resolution, in pixels… 2086 …$parsed['biYPelsPerMeter'] = substr($BITMAPINFOHEADER, 28, 4); // vertical resolution, in pixels p… 2088 …$parsed['biClrImportant'] = substr($BITMAPINFOHEADER, 36, 4); // number of color indices that are… [all …]
|