php调用openai的dall-e实现文字描述生成图片代码

代码语言:php

所属分类:其他

代码描述:php调用openai的dall-e实现文字描述生成图片代码

代码标签: php 调用 openai dall-e 文字 描述 生成 图片 代码

下面为部分代码预览,完整代码请点击下载或在bfwstudio webide中打开

<?php

// Set up the cURL request
$ch = curl_init();

curl_setopt($ch, CURLOPT_URL, "https://api.openai.com/v1/images/generations");
curl_setopt($ch, CURLOPT_RETURNTRANSFER, 1);
curl_setopt($ch, CURLOPT_POSTFIELDS, '{
 
"prompt": "绿色的猫咪飞翔在天空中",
  "n": 2,
  "size": "1024x1024"
}');


curl_setopt($ch, CURLOPT_POST, 1);

// Set the API key as an HTTP header
$headers = array();
$headers[] = "Content-Type: application/json";
$headers[] = "Authorization: .........完整代码请登录后点击上方下载按钮下载查看

网友评论0