本文整理汇总了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;