
时尚电影肖像摄影
标签
复制提示词
[#Promptshare] [#AIart ] Try this prompt design and create your own beauty. Grok imagine =======Prompt====== #[derive(Debug)] struct SceneType { description: String, } #[derive(Debug)] struct Mood { atmosphere: String, } #[derive(Debug)] struct Subject { skin: String, makeup: String, hair: String, expression: String, outfit: String, } #[derive(Debug)] struct Environment { background: String, } #[derive(Debug)] struct Lighting { type_: String, effects: Vec<String>, } #[derive(Debug)] struct TechnicalSpecs { depth_of_field: String, grain: String, color_grading: String, editing_texture: String, } #[derive(Debug)] struct ImagePrompt { scene_type: SceneType, mood: Mood, subject: Subject, environment: Environment, lighting: Lighting, technical_specs: TechnicalSpecs, full_prompt_string: String, } let image_prompt = ImagePrompt { scene_type: SceneType { description: "Cinematic fashion portrait with melancholic yet approachable intimacy".to_string(), }, mood: Mood { atmosphere: "Timeless, quietly confident with subtle melancholic warmth".to_string(), }, subject: Subject { skin: "Clear, fair skin with natural glow".to_string(), makeup: "Light, natural with warm lip color".to_string(), hair: "Long, straight brown hair with soft fluffy texture and natural volume".to_string(), expression: "Calm and confident with subtle smile, large expressive eyes, small nose".to_string(), outfit: "Light pink ribbed knit top with unique cut-out design near neckline, showcasing elegant texture and subtle wine-red undertones".to_string(), }, environment: Environment { background: "Dark minimalist backdrop fading to black with subtle light-colored wall elements for clean focus".to_string(), }, lighting: Lighting { type_: "Soft, diffused front lighting".to_string(), effects: vec![ "Gentle shadows on face".to_string(), "Even illumination highlighting knit texture and skin".to_string(), "Subtle warm glow with melancholic depth".to_string(), ], }, technical_specs: TechnicalSpecs { depth_of_field: "Shallow depth of field".to_string(), grain: "Subtle film grain".to_string(), color_grading: "Organic warm grading with desaturated melancholic tones".to_string(), editing_texture: "High-end professional texture, photorealistic detail".to_string(), }, full_prompt_string: "Melancholic and cinematic portrait photography. Young Hong Kong woman with clear fair skin, light natural makeup, warm lip color. Long straight brown hair with fluffy texture. Calm confident expression with subtle smile, large expressive eyes, small nose. Wearing light pink ribbed knit top with unique cut-out near neckline. Dark minimalist background fading to black with plain light-colored wall focus. Soft diffused front lighting, gentle shadows, subtle film grain, organic color grading, shallow depth of field, high-end editing texture. Use exact facial features from reference without alterations.".to_string(), };