亚洲激情专区-91九色丨porny丨老师-久久久久久久女国产乱让韩-国产精品午夜小视频观看

溫馨提示×

溫馨提示×

您好,登錄后才能下訂單哦!

密碼登錄×
登錄注冊×
其他方式登錄
點擊 登錄注冊 即表示同意《億速云用戶服務條款》

如何用PHP將女友照片轉成可愛的動漫頭像

發布時間:2022-02-14 09:10:50 來源:億速云 閱讀:170 作者:iii 欄目:編程語言

這篇文章主要介紹“如何用PHP將女友照片轉成可愛的動漫頭像”,在日常操作中,相信很多人在如何用PHP將女友照片轉成可愛的動漫頭像問題上存在疑惑,小編查閱了各式資料,整理出簡單好用的操作方法,希望對大家解答”如何用PHP將女友照片轉成可愛的動漫頭像”的疑惑有所幫助!接下來,請跟著小編一起來學習吧!

首先注冊個百度AI,然后進到人像動漫化開通控制臺(好像是前500次免費調用接口)。

如何用PHP將女友照片轉成可愛的動漫頭像

到我的控制臺創建應用

如何用PHP將女友照片轉成可愛的動漫頭像

然后把Api KeySerect Key 記下來, 等下需要用來獲取AccessToken

如何用PHP將女友照片轉成可愛的動漫頭像

獲取AccessToken

1.先封裝一個curl請求方法

<?php
class Curl
{
    public function post($url = '', $param = '')
    {
        if (empty($url) || empty($param)) {
            return false;
        }
        $postUrl = $url;
        $curlPost = $param;
        $curl = curl_init();//初始化curl
        curl_setopt($curl, CURLOPT_URL,$postUrl);//抓取指定網頁
        curl_setopt($curl, CURLOPT_HEADER, 0);//設置header
        curl_setopt($curl, CURLOPT_RETURNTRANSFER, 1);//要求結果為字符串且輸出到屏幕上
        curl_setopt($curl, CURLOPT_POST, 1);//post提交方式
        curl_setopt($curl, CURLOPT_POSTFIELDS, $curlPost);
        $data = curl_exec($curl);//運行curl
        if ($error = curl_error($curl)) {
            die($error);
        }
        curl_close($curl);
        return $data;
    }
}

2.獲取AccessToken

require_once 'Curl.php';

class AccessToken
{
	// Api Key
	private $apiKey= ''; 
	// Secret Key
	private $secretKey = '';

	private $requestToeknUrl = "https://aip.baidubce.com/oauth/2.0/token";
	private $accessToken;

	public function __construct()
	{
		// 默認有效時間2592000秒, 可以存到緩存中
		// 對返回的數據沒做過段判斷, 需要的請自行判斷處理 
		$this->accessToken = ($this->requestAccessToken())['access_token'];
	}

	public function requestAccessToken(){
		$url = $this->requestToeknUrl;
	    $postData['grant_type']       = 'client_credentials';
	    $postData['client_id']      = $this->apiKey;
	    $postData['client_secret'] = $this->secretKey;
	    $o = "";
	    foreach ( $postData as $k => $v ) 
	    {
	    	$o.= "{$k}=" . urlencode( $v ). "&" ;
	    }
	    $postData = trim($o, '&');
	    
	    $result = (new Curl())->post($url, $postData);
	    return json_decode($result, true);
	}
	
	public function getAccessToken()
	{
		return $this->accessToken;
	}
}

通過getAccessToken()方法獲取AccessToken

<?php
// require_once 'Curl.php';
require_once 'AccessToken.php';

class Demo
{
	public function index()
	{
		// 獲取AccessToken
		$accessToken = (new AccessToken())->getAccessToken());
		// 百度AI接口
		$url = 'https://aip.baidubce.com/rest/2.0/image-process/v1/selfie_anime?access_token=' . $accessToken;
		// 圖片路徑
		$img = file_get_contents('C:\Users\Admin\Desktop\6a56f099861bf4c470e5d24f7017b1a.jpg');
		// base64編碼的圖片, 可以是本地圖片或網絡上傳的, 只要能轉成base64編碼就可以了
		$img = base64_encode($img);
		$bodys = array(
		    'image' => $img
		);
		$result = (new Curl())->post($url, $bodys);
		$result = json_decode($result, true);
		// data:image/jpg;base64,
		echo "<img  src=\"data:image/jpg;base64,{$result['image']}\" />";
	}
}
(new Demo())->index();

最后貼上別人的女朋友o(╥﹏╥)o

如何用PHP將女友照片轉成可愛的動漫頭像

如何用PHP將女友照片轉成可愛的動漫頭像

到此,關于“如何用PHP將女友照片轉成可愛的動漫頭像”的學習就結束了,希望能夠解決大家的疑惑。理論與實踐的搭配能更好的幫助大家學習,快去試試吧!若想繼續學習更多相關知識,請繼續關注億速云網站,小編會繼續努力為大家帶來更多實用的文章!

向AI問一下細節

免責聲明:本站發布的內容(圖片、視頻和文字)以原創、轉載和分享為主,文章觀點不代表本網站立場,如果涉及侵權請聯系站長郵箱:is@yisu.com進行舉報,并提供相關證據,一經查實,將立刻刪除涉嫌侵權內容。

php
AI

射洪县| 靖江市| 遵义市| 东乡县| 建德市| 盐山县| 贵定县| 建瓯市| 南开区| 崇左市| 三明市| 清涧县| 连江县| 汶川县| 福建省| 沅陵县| 宁南县| 综艺| 甘南县| 边坝县| 绥中县| 丰城市| 宁明县| 宜都市| 鲁山县| 汝州市| 三门县| 沈丘县| 靖西县| 新宁县| 宜兴市| 阿克苏市| 祁阳县| 修水县| 白银市| 盐池县| 章丘市| 泾阳县| 遂昌县| 永州市| 高邑县|