Lines Matching refs:this

22 		if (is_object($this->phpThumbObject)) {
23 return $this->phpThumbObject->DebugMessage($message, $file, $line);
31 …$this->DebugMessage('Skipping ApplyMask() because gd_version is "'.phpthumb_functions::gd_version(…
36 $this->DebugMessage('Using alpha ApplyMask() technique', __FILE__, __LINE__);
62 $this->DebugMessage('ImageCreateFunction() failed', __FILE__, __LINE__);
67 $this->DebugMessage('ImageCreateFunction() failed', __FILE__, __LINE__);
72 …$this->DebugMessage('Skipping ApplyMask() technique because PHP is v"'. PHP_VERSION .'"', __FILE__…
139 $this->DebugMessage('FAILED: imagefilter($gdimg, IMG_FILTER_GAUSSIAN_BLUR)', __FILE__, __LINE__);
142 …$this->DebugMessage('FAILED: phpthumb_filters::BlurGaussian($gdimg) [using phpthumb_filters::Blur(…
143 return $this->Blur($gdimg, 0.5);
152 … $this->DebugMessage('FAILED: imagefilter($gdimg, IMG_FILTER_SELECTIVE_BLUR)', __FILE__, __LINE__);
156 …$this->DebugMessage('FAILED: phpthumb_filters::BlurSelective($gdimg) [function not implemented]', …
171 …$this->DebugMessage('FAILED: imagefilter($gdimg, IMG_FILTER_BRIGHTNESS, '.$amount.')', __FILE__, _…
204 …$this->DebugMessage('FAILED: imagefilter($gdimg, IMG_FILTER_CONTRAST, '.$amount.')', __FILE__, __L…
247 $this->DebugMessage('FAILED: imagefilter($gdimg, IMG_FILTER_COLORIZE)', __FILE__, __LINE__);
310 …return $this->Colorize($gdimg, $amount, (phpthumb_functions::IsHexColor($color) ? $color : 'gray')…
402 $this->DebugMessage('FAILED: imagefilter($gdimg, IMG_FILTER_EDGEDETECT)', __FILE__, __LINE__);
406 …$this->DebugMessage('FAILED: phpthumb_filters::EdgeDetect($gdimg) [function not implemented]', __F…
423 $this->ApplyMask($gdimg_ellipsemask, $gdimg);
428 …$this->DebugMessage('$gdimg_ellipsemask = phpthumb_functions::ImageCreateFunction() failed', __FIL…
432 …$this->DebugMessage('$gdimg_ellipsemask_double = phpthumb_functions::ImageCreateFunction() failed'…
443 $this->DebugMessage('FAILED: imagefilter($gdimg, IMG_FILTER_EMBOSS)', __FILE__, __LINE__);
447 …$this->DebugMessage('FAILED: phpthumb_filters::Emboss($gdimg) [function not implemented]', __FILE_…
520 $this->DebugMessage('FAILED: imagefilter($gdimg, IMG_FILTER_GRAYSCALE)', __FILE__, __LINE__);
523 return $this->Colorize($gdimg, 100, 'gray');
559 $Analysis = $this->HistogramAnalysis($gdimg, true);
636 $Analysis = $this->HistogramAnalysis($gdimg, true);
675 $this->WatermarkOverlay($gdimg, $gdHist, $alignment, $opacity, $margin_x, $margin_y);
734 …$this->phpThumbObject->ImageResizeFunction($gd_border_canvas, $gdimg, floor(($output_width - $new_…
749 …$this->DebugMessage('FAILED: $gd_border_canvas = phpthumb_functions::ImageCreateFunction('.$output…
857 $this->DebugMessage('FAILED: imagefilter($gdimg, IMG_FILTER_MEAN_REMOVAL)', __FILE__, __LINE__);
861 …$this->DebugMessage('FAILED: phpthumb_filters::MeanRemoval($gdimg) [function not implemented]', __…
871 $this->DebugMessage('FAILED: imagefilter($gdimg, IMG_FILTER_NEGATE)', __FILE__, __LINE__);
904 $this->ApplyMask($gdimg_cornermask, $gdimg);
906 …$this->DebugMessage('RoundedImageCorners('.$radius_x.', '.$radius_y.') succeeded', __FILE__, __LIN…
910 …$this->DebugMessage('FAILED: $gdimg_cornermask = phpthumb_functions::ImageCreateFunction('.imagesx…
915 …$this->DebugMessage('FAILED: $gdimg_cornermask_triple = phpthumb_functions::ImageCreateFunction('.…
929 return $this->Desaturate($gdimg, $amount, $color);
951 $this->DebugMessage('FAILED: imagefilter($gdimg, IMG_FILTER_COLORIZE)', __FILE__, __LINE__);
956 $this->DebugMessage('FAILED: imagefilter($gdimg, IMG_FILTER_GRAYSCALE)', __FILE__, __LINE__);
999 …$this->DebugMessage('FAILED: imagefilter($gdimg, IMG_FILTER_SMOOTH, '.$amount.')', __FILE__, __LIN…
1003 …$this->DebugMessage('FAILED: phpthumb_filters::Smooth($gdimg, '.$amount.') [function not implement…
1070 $this->ImageTrueColorToPalette2($gdimg, $dither, $colors);
1083 $Analysis = $this->HistogramAnalysis($gdimg, false);
1131 '^Fb' => $this->phpThumbObject->getimagesizeinfo['filesize'],
1132 '^Fk' => round($this->phpThumbObject->getimagesizeinfo['filesize'] / 1024),
1133 '^Fm' => round($this->phpThumbObject->getimagesizeinfo['filesize'] / 1048576),
1134 '^X' => $this->phpThumbObject->getimagesizeinfo[0],
1135 '^Y' => $this->phpThumbObject->getimagesizeinfo[1],
1147 $this->DebugMessage('Processing '.count($textlines).' lines of text', __FILE__, __LINE__);
1154 $this->DebugMessage('Using TTF font "'.$ttffont.'"', __FILE__, __LINE__);
1257 …$this->DebugMessage('WatermarkText() calling imagefilledrectangle($gdimg, '.$x_TL.', '.$y_TL.', '.…
1294 …$this->DebugMessage('WatermarkText() calling imagettftext($gdimg, '.$size.', '.$angle.', '.$text_o…
1306 …$this->DebugMessage('Using built-in font (size='.$size.') for text watermark'.($ttffont ? ' becaus…
1322 …$this->DebugMessage('WatermarkText() calling imagefilledrectangle($img_watermark, 0, 0, '.imagesx(…
1401 …$this->DebugMessage('WatermarkText() calling imagestring($img_watermark, '.$size.', '.$x_offset.',…
1404 …$this->DebugMessage('WatermarkText() calling imagestring($img_watermark_mask, '.$size.', '.$x_offs…
1411 $this->ApplyMask($img_watermark_mask, $img_watermark);
1414 …$this->DebugMessage('WatermarkText() calling phpthumb_filters::WatermarkOverlay($gdimg, $img_water…
1415 $this->WatermarkOverlay($gdimg, $img_watermark, $originOffsetX.'x'.$originOffsetY, $opacity, 0);