本文整理匯總了PHP中imagick::getImageBlob方法的典型用法代碼示例。如果您正苦於以下問題:PHP imagick::getImageBlob方法的具體用法?PHP imagick::getImageBlob怎麽用?PHP imagick::getImageBlob使用的例子?那麽, 這裏精選的方法代碼示例或許可以為您提供幫助。您也可以進一步了解該方法所在類imagick
的用法示例。
在下文中一共展示了imagick::getImageBlob方法的2個代碼示例,這些例子默認根據受歡迎程度排序。您可以為喜歡或者感覺有用的代碼點讚,您的評價將有助於係統推薦出更棒的PHP代碼示例。
示例1: cropImage_common
$im = new imagick($filename);
/* create the thumbnail */
if ($cropThumbnailImage) {
$im->cropThumbnailImage(80, 80);
}
/* Write to a file */
if ($resizeImage) {
$im->resizeImage(900, 80, 1, 0.5);
}
switch ($case) {
case "write_img":
$im->writeImage("img/" . $_GET["file"]);
break;
case "show_img":
header("Content-Type: image/jpg");
echo $im->getImageBlob();
break;
}
} else {
cropImage_common($filename, 80, 80);
}
function cropImage_common($filename, $width, $height)
{
// Content type
header('Content-Type: image/jpeg');
// Cacul des nouvelles dimensions
list($width_orig, $height_orig) = getimagesize($filename);
$ratio_orig = $width_orig / $height_orig;
if ($width / $height > $ratio_orig) {
$width = $height * $ratio_orig;
} else {
示例2: fopen
<?php
phpinfo();
exit;
$pdf = './manual.pdf';
$fp_pdf = fopen($pdf, 'rb');
$img = new imagick();
// [0] can be used to set page number
$img->setResolution(300, 300);
$img->readImageFile($fp_pdf);
$img->setImageFormat("jpg");
$img->setImageCompression(imagick::COMPRESSION_JPEG);
$img->setImageCompressionQuality(90);
$img->setImageUnits(imagick::RESOLUTION_PIXELSPERINCH);
$data = $img->getImageBlob();