返回创作内容库

电影级美食汉堡爆炸提示词(代码风格)

一个高度结构化、类似代码的提示,使用 Python 语法(导入物理和照明模块)来生成一张美食汉堡慢动作爆炸的电影级广告图片,详细描述了食材、质地和影棚布光设置。

nano-banana-pro · 产品 · 产品营销 · 摄影 · 电影 / 电影剧照 · 食品 / 饮料

试一试复制喜欢的提示词,在 AnchorDot 中开始创作。
电影级美食汉堡爆炸提示词(代码风格)电影级美食汉堡爆炸提示词(代码风格)

中文提示词

```python import physics_engine as cinematic from studio_lighting import RimLight, SpotLight class GourmetBurger: def __init__(self): self.state = "assembled" self.ingredients = [ "toasted_brioche_bun", "wagyu_patty", "molten_cheddar", "crispy_lettuce", "heirloom_tomato", "secret_sauce_droplets" ] def trigger_explosion(self): """ Executes the slow-motion deconstruction effect. """ self.state = "mid-air_burst" for item in self.ingredients: # Applying physics for the "flying" effect item.apply_force(direction="outward", velocity="slow_motion") item.render_texture(quality="hyper_detailed") # Suspends liquid particles in 3D space cinematic.suspend_fluids(type="sauce", density="high_viscosity") # Environment Configuration scene = cinematic.Scene(background="dark_studio_charcoal") scene.add_lighting([ RimLight(intensity=0.8, color="warm_gold"), SpotLight(target="patty_texture", focus="ultra_sharp") ]) # Execute the render burger = GourmetBurger() burger.trigger_explosion() render_output = scene.capture(style="cinematic_advertising", realistic=True) ```

原始提示词

import physics_engine as cinematic from studio_lighting import RimLight, SpotLight class GourmetBurger: def __init__(self): self.state = "assembled" self.ingredients = [ "toasted_brioche_bun", "wagyu_patty", "molten_cheddar", "crispy_lettuce", "heirloom_tomato", "secret_sauce_droplets" ] def trigger_explosion(self): """ Executes the slow-motion deconstruction effect. """ self.state = "mid-air_burst" for item in self.ingredients: # Applying physics for the "flying" effect item.apply_force(direction="outward", velocity="slow_motion") item.render_texture(quality="hyper_detailed") # Suspends liquid particles in 3D space cinematic.suspend_fluids(type="sauce", density="high_viscosity") # Environment Configuration scene = cinematic.Scene(background="dark_studio_charcoal") scene.add_lighting([ RimLight(intensity=0.8, color="warm_gold"), SpotLight(target="patty_texture", focus="ultra_sharp") ]) # Execute the render burger = GourmetBurger() burger.trigger_explosion() render_output = scene.capture(style="cinematic_advertising", realistic=True)