cang-ying/engines/gen_subai_full.js
Guanghu Domestic Migration a2fa7d57d8 chore: import sanitized domestic snapshot for REPO-005
Source snapshot: 23037fa3a2e9b0597162735755e92fc763bf4d94
2026-07-17 15:55:48 +08:00

37 lines
1.1 KiB
JavaScript
Raw Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

#!/usr/bin/env node
/**
* 铸渊 · 苏白全身图v6 · 更严格的真人感锁定
* v5全身图问题: 卡通风 → 模型对全身默认走动画路线
* 修复: 去掉"渲染"、强调"写实"、加入"亚洲青年男子真人"
*/
const { generateImage } = require('./image-api-adapter');
const FULL_BODY_PROMPT = [
'亚洲青年男子真人形象',
'18岁',
'黑色长发束起成古代发髻',
'竹簪固定发髻',
'清秀俊美面容',
'自信笑容',
'身形挺拔',
'宽松长袖白色汉服',
'腰间青色束带',
'双手叉腰站姿',
'纯灰色摄影棚背景',
'写实风格3D',
'高质量',
'电影感布光'
].join('');
const FULL_BODY_OUTPUT = '/Volumes/JZAO/铸渊-ICE-GL-ZY001/OUT-输出/图片/zai-fu-fei-xiu-xian/ep01/anchors/char-003-subai-full-body-v6.png';
(async () => {
console.log('[铸渊·苏白v6] 全身图生成...');
try {
const r = await generateImage({ prompt: FULL_BODY_PROMPT, size: '1728x2304', outputPath: FULL_BODY_OUTPUT });
console.log('[铸渊·苏白v6] ✅:', r.imagePath);
} catch (err) {
console.error('[铸渊·苏白v6] ❌:', err.message);
}
})();