Searched refs:phpthumb_functions (Results 1 – 12 of 12) sorted by relevance
/plugin/photogallery/phpThumb/ |
D | phpthumb.filters.php | 30 if (phpthumb_functions::gd_version() < 2) { 31 …$this->DebugMessage('Skipping ApplyMask() because gd_version is "'.phpthumb_functions::gd_version(… 34 if (phpthumb_functions::version_compare_replacement(PHP_VERSION, '4.3.2', '>=')) { 37 …if ($gdimg_mask_resized = phpthumb_functions::ImageCreateFunction(imagesx($gdimg_image), imagesy($… 40 …if ($gdimg_mask_blendtemp = phpthumb_functions::ImageCreateFunction(imagesx($gdimg_image), imagesy… 49 $RealPixel = phpthumb_functions::GetPixelColor($gdimg_image, $x, $y); 50 …$MaskPixel = phpthumb_functions::GrayscalePixel(phpthumb_functions::GetPixelColor($gdimg_mask_resi… 52 …$newcolor = phpthumb_functions::ImageColorAllocateAlphaSafe($gdimg_mask_blendtemp, $RealPixel['red… 86 $color1 = phpthumb_functions::ImageHexColorAllocate($gdimg, $hexcolor1, false, $alpha); 87 $color2 = phpthumb_functions::ImageHexColorAllocate($gdimg, $hexcolor2, false, $alpha); [all …]
|
D | phpthumb.class.php | 353 …ageData).' bytes; magic="'.substr($this->rawImageData, 0, 4).'" ('.phpthumb_functions::HexCharDisp… 558 if (phpthumb_functions::version_compare_replacement(PHP_VERSION, '5.1.2', '>=')) { 706 …$downloadfilename = phpthumb_functions::SanitizeFilename(is_string($this->sia) ? $this->sia : ($th… 716 header('Content-Type: '.phpthumb_functions::ImageTypeToMIMEtype($this->thumbnailFormat)); 734 header('Content-Type: '.phpthumb_functions::ImageTypeToMIMEtype($this->thumbnailFormat)); 744 header('Content-Type: '.phpthumb_functions::ImageTypeToMIMEtype($this->thumbnailFormat)); 760 header('Content-Type: '.phpthumb_functions::ImageTypeToMIMEtype($this->thumbnailFormat)); 782 header('Content-Type: '.phpthumb_functions::ImageTypeToMIMEtype($this->thumbnailFormat)); 825 …$AllFilesInCacheDirectory = phpthumb_functions::GetAllFilesInSubfolders($this->config_cache_direct… 1078 …if (phpthumb_functions::CaseInsensitiveInArray($this->config_output_format, $AvailableImageOutputF… [all …]
|
D | phpthumb.ico.php | 33 $argb = phpthumb_functions::GetPixelColor($gd_image, $x, $y); 71 …$BitmapInfoHeader[$key] .= phpthumb_functions::LittleEndian2String($ImageWidths[$key], 4); //… 74 …$BitmapInfoHeader[$key] .= phpthumb_functions::LittleEndian2String($ImageHeights[$key] * 2, 4); //… 78 …$BitmapInfoHeader[$key] .= phpthumb_functions::LittleEndian2String($biSizeImage, 4); //… 88 …$icondata .= phpthumb_functions::LittleEndian2String(count($gd_image_array), 2); // idCount; … 103 …$icondata .= phpthumb_functions::LittleEndian2String($dwBytesInRes, 4); // dwBytesInRes; … 105 …$icondata .= phpthumb_functions::LittleEndian2String($dwImageOffset, 4); // dwImageOffset; …
|
D | phpThumb.php | 40 …$downloadfilename = phpthumb_functions::SanitizeFilename(!empty($_GET['sia']) ? $_GET['sia'] : (!e… 44 …$downloadfilename = phpthumb_functions::SanitizeFilename((!empty($phpThumb->src) ? basename($phpTh… 59 $parsed_url = phpthumb_functions::ParseURLbetter(@$_SERVER['HTTP_REFERER']); 73 …$phpThumb->DebugMessage('* Would have sent headers (2): Content-Type: '.phpthumb_functions::ImageT… 101 header('Content-Type: '.phpthumb_functions::ImageTypeToMIMEtype($getimagesize[2])); 130 if (!phpthumb_functions::FunctionIsDisabled('set_time_limit')) { 207 } elseif (phpthumb_functions::PasswordStrength($phpThumb->config_high_security_password) < 20) { 251 …if ($rawImageData = phpthumb_functions::SafeURLread($_GET['src'], $error, $phpThumb->config_http_f… 260 $md5s = phpthumb_functions::md5_file_safe($SourceFilename); 284 $parsed_url_referer = phpthumb_functions::ParseURLbetter(@$_SERVER['HTTP_REFERER']); [all …]
|
D | phpthumb.bmp.php | 49 $argb = phpthumb_functions::GetPixelColor($gd_image, $x, $y); 61 $BITMAPFILEHEADER .= phpthumb_functions::LittleEndian2String($bmpSize, 4); // DWORD bfSize; 62 $BITMAPFILEHEADER .= phpthumb_functions::LittleEndian2String( 0, 2); // WORD bfReserved1; 63 $BITMAPFILEHEADER .= phpthumb_functions::LittleEndian2String( 0, 2); // WORD bfReserved2; 64 $BITMAPFILEHEADER .= phpthumb_functions::LittleEndian2String( 54, 4); // DWORD bfOffBits; 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; [all …]
|
D | phpthumb.functions.php | 12 class phpthumb_functions { class 969 $phpinfo_array = phpthumb_functions::phpinfo_array();
|
D | phpthumb.gif.php | 40 if (!phpthumb_functions::FunctionIsDisabled('set_time_limit')) { 1105 if (!phpthumb_functions::FunctionIsDisabled('set_time_limit')) {
|
D | phpThumb.config.php.default | 16 if (!class_exists('phpthumb_functions', false)) { // normally include_once should take care of this… 137 if (phpthumb_functions::version_compare_replacement(phpversion(), '4.3.2', '>=') && !defined('memor…
|
/plugin/photogallery/phpThumb/demo/ |
D | phpThumb.demo.check.php | 39 $ServerInfo['gd_string'] = phpthumb_functions::gd_version(true); 40 $ServerInfo['gd_numeric'] = phpthumb_functions::gd_version(false); 74 …'latest' => phpthumb_functions::SafeURLread('http://phpthumb.sourceforge.net/?latestversion=1', $d… 101 } elseif (phpthumb_functions::version_compare_replacement($versions['base']['this'], $versions['bas… 129 …if (!defined('phpThumbConfigFileVersion') || phpthumb_functions::version_compare_replacement($vers… 153 $password_complexity = phpthumb_functions::PasswordStrength($PHPTHUMB_CONFIG['high_security_passwor… 172 phpthumb_functions::EnsureDirectoryExists(dirname($phpThumb->cache_filename)); 208 if (phpthumb_functions::version_compare_replacement(PHP_VERSION, '5.0.0', '>=')) { 210 } elseif (phpthumb_functions::version_compare_replacement(PHP_VERSION, '4.4.2', '=')) { 212 } elseif (phpthumb_functions::version_compare_replacement(PHP_VERSION, '4.3.3', '>=')) { [all …]
|
D | phpThumb.demo.demo.php | 39 $ServerInfo['gd_string'] = phpthumb_functions::gd_version(true); 40 $ServerInfo['gd_numeric'] = phpthumb_functions::gd_version(false);
|
/plugin/photogallery/phpThumb/docs/ |
D | phpthumb.changelog.txt | 48 * [bugfix: G94] cannot declare class phpthumb_functions 603 * gd_info() no longer member of phpthumb_functions 1172 * Bugfix: missing phpthumb_functions:: class name for 1280 * Bugfix: missing "phpthumb_functions::" in
|
D | phpthumb.faq.txt | 77 list($newW, $newH) = phpthumb_functions::ProportionalResize(
|