You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
use Imactool\HyperfStableDiffusion\StableDiffusion;
42
48
@@ -52,9 +58,36 @@ use Imactool\HyperfStableDiffusion\StableDiffusion;
52
58
)->generate(3);
53
59
```
54
60
61
+
### 图片生成图片(Image to Image)
62
+
```php
63
+
use Imactool\HyperfStableDiffusion\Prompt;
64
+
use Imactool\HyperfStableDiffusion\StableDiffusion;
65
+
use Intervention\Image\ImageManager;
66
+
67
+
//这里使用了 intervention/image 扩展来处理图片文件,你也可以更换为其他的
68
+
$sourceImg = (string) (new ImageManager(['driver' => 'imagick']))->make('path/image/source.png')->encode('data-url');
69
+
70
+
$prompt = 'Petite 21-year-old Caucasian female gamer streaming from her bedroom with pastel pink pigtails and gaming gear. Dynamic and engaging image inspired by colorful LED lights and the energy of Twitch culture, in 1920x1080 resolution.';
->inputParams('negative_prompt', 'disfigured, kitsch, ugly, oversaturated, greain, low-res, Deformed, blurry, bad anatomy, disfigured, poorly drawn face, mutation, mutated, extra limb, ugly, poorly drawn hands, missing limb, blurry, floating limbs, disconnected limbs, malformed hands, blur, out of focus, long neck, long body, ugly, disgusting, poorly drawn, childish, mutilated, mangled, old, surreal, calligraphy, sign, writing, watermark, text, body out of frame, extra legs, extra arms, extra feet, out of frame, poorly drawn feet, cross-eye, blurry, bad anatomy')
0 commit comments