本文整理匯總了PHP中image::SetBackGround方法的典型用法代碼示例。如果您正苦於以下問題:PHP image::SetBackGround方法的具體用法?PHP image::SetBackGround怎麽用?PHP image::SetBackGround使用的例子?那麽, 這裏精選的方法代碼示例或許可以為您提供幫助。您也可以進一步了解該方法所在類image
的用法示例。
在下文中一共展示了image::SetBackGround方法的2個代碼示例,這些例子默認根據受歡迎程度排序。您可以為喜歡或者感覺有用的代碼點讚,您的評價將有助於係統推薦出更棒的PHP代碼示例。
示例1: image
<?php
include "setting.php";
$img = new image();
$img->SetBackGround("gif");
$img->SetCharFile("gif");
$img->ShowInfo();
$img->CopyChar();
$img->Filter();
$img->OutPutImage("gif");
class image
{
var $image;
var $background;
var $team1_front = array();
var $team1_back = array();
var $team2_front = array();
var $team2_back = array();
var $char_img_type;
var $img_x, $img_y;
function SetCharFile($type)
{
$this->char_img_type = $type;
for ($j = 1; $j < 6; $j++) {
if ($img = $_GET["f1" . $j]) {
if (strpos($img, "/") !== false) {
continue;
}
$file = IMG_CHAR . $img . "." . $type;
if (file_exists($file)) {
$this->team1_front[] = $file;
示例2: image
従って畫像合成する場合,反転済みの畫像を別で用意する。
sampleURL
http://localhost/proj/hof/image.php?f11=mon_018&f12=mon_018&f13=mon_018&f14=mon_018&b11=mon_018&b12=mon_018&f21=mon_018&f22=mon_018&b21=mon_018&b22=mon_018&b23=mon_018&f23=mon_018&f24=mon_018&info=0
最後の[&info=0] は無くてもok
※※※ 魔法陣の表示に未対応!!!!!!!!!
*/
include("setting.php");
$img = new image();
// ( gif, png, jpeg )
// gif -> 動作確認済み
// png -> 畫像の色數を保てるかどうか未確認
// jpeg -> 動作未確認
$img->SetBackGround("gif");// 背景畫像の形式
$img->SetCharFile("gif");// *
$img->ShowInfo();
$img->CopyChar();
$img->Filter();
// 出力畫像の形式
// gif > png > jpeg の順でサイズが異なる
$img->OutPutImage("gif");
//////////////////////////////////////////////////////////////////////
class image{
var $image;