免费调用DALL·E 4生成AI图片
本帖最后由 dlearn 于 2023-12-5 18:05 编辑## 使用说明
- 打开网页(https://www.bing.com/)
- 按下`F12`,在控制台输入以下两行代码获取cookie
```javascript
cookieStore.get("_U").then(result => console.log(result.value))
cookieStore.get("SRCHHPGUSR").then(result => console.log(result.value))
```
- 使用示例
```python
from BingImageCreator import ImageGen
# _U
U = "xxxxx"
# SRCHHPGUSR
S = "xxxxx"
imageGen = ImageGen(
U, S, proxy={"http": "http://127.0.0.1:7890", "https": "https://127.0.0.1:7890"}
)
list = imageGen.get_images("一只兔子")
print(list)
imageGen.save_images(list, "out")
```
其中(https://github.com/nichem/bing-image-generate/blob/master/BingImageCreator.py)的地址
## 参考链接
(https://github.com/acheong08/BingImageCreator) 确定可以运行嘛?有例子不?感觉很强大 怎么弄,还请教 greatzdl 发表于 2023-12-6 16:47
确定可以运行嘛?有例子不?感觉很强大
唯一需要注意的是,调用时可能需要代{过}{滤}理 感谢分享,画图是可以画图,就是很多词被block了,想画的图画不出来
页:
[1]