本文整理匯總了PHP中Thumbnail::size_auto方法的典型用法代碼示例。如果您正苦於以下問題:PHP Thumbnail::size_auto方法的具體用法?PHP Thumbnail::size_auto怎麽用?PHP Thumbnail::size_auto使用的例子?那麽, 這裏精選的方法代碼示例或許可以為您提供幫助。您也可以進一步了解該方法所在類Thumbnail
的用法示例。
在下文中一共展示了Thumbnail::size_auto方法的1個代碼示例,這些例子默認根據受歡迎程度排序。您可以為喜歡或者感覺有用的代碼點讚,您的評價將有助於係統推薦出更棒的PHP代碼示例。
示例1: Thumbnail
<?php
//Thumbnail sample
include 'Thumbnail.class.php';
$thumb = new Thumbnail("source.jpg");
// Contructor and set source image file
$thumb->size_auto(300);
// [OPTIONAL] set the biggest width or height for thumbnail
$thumb->txt_watermark_Hmargin = 10;
// [OPTIONAL] set watermark text horizonatal margin in pixels
$thumb->txt_watermark_Vmargin = 10;
// [OPTIONAL] set watermark text vertical margin in pixels
$thumb->txt_watermark = 'Font 1';
// [OPTIONAL] set watermark text [RECOMENDED ONLY WITH GD 2 ]
$thumb->txt_watermark_color = 'FF0000';
// [OPTIONAL] set watermark text color , RGB Hexadecimal[RECOMENDED ONLY WITH GD 2 ]
$thumb->txt_watermark_font = 1;
// [OPTIONAL] set watermark text font: 1,2,3,4,5
$thumb->txt_watermark_Valing = 'TOP';
// [OPTIONAL] set watermark text vertical position, TOP | CENTER | BOTTOM
$thumb->txt_watermark_Haling = 'LEFT';
// [OPTIONAL] set watermark text horizonatal position, LEFT | CENTER | RIGHT
$thumb->process();
// generate image
$thumb->txt_watermark = 'Font 2';
// [OPTIONAL] set watermark text [RECOMENDED ONLY WITH GD 2 ]
$thumb->txt_watermark_color = 'FFFFFF';
// [OPTIONAL] set watermark text color , RGB Hexadecimal[RECOMENDED ONLY WITH GD 2 ]
$thumb->txt_watermark_font = 5;
// [OPTIONAL] set watermark text font: 1,2,3,4,5
$thumb->txt_watermark_Valing = 'TOP';