← 返回提示词图库

PROMPT RECORD图像记录

创建临时视图 franchise_dna 如下: select infer_iconic_character_profile(:franchise) as profile_mask, infe...

GPT-Image-2 Gdgtify Thu Aug 20 07:43:00 +0000 2026
查看来源

中文说明

创建临时视图 franchise_dna 如下: select infer_iconic_character_profile(:franchise) as profile_mask, infer_flat_environment(:franchise) as foreground, infer_light_color(:franchise) as light_ink, infer_dark_color(:franchise) as dark_ink; 创建临时视图 poster_layers 如下: select layer1 = render_background(light_ink, texture='archival_paper'), layer2 = render_foreground(foregrou...

原始 Prompt

create temp view franchise_dna as
select
infer_iconic_character_profile(:franchise) as profile_mask,
infer_flat_environment(:franchise) as foreground,
infer_light_color(:franchise) as light_ink,
infer_dark_color(:franchise) as dark_ink;

create temp view poster_layers as
select
layer1 = render_background(light_ink, texture='archival_paper'),
layer2 = render_foreground(foreground, dark_ink, mask=profile_mask)
from franchise_dna;

-- gestalt logic: the foreground is printed with the profile_mask as negative space.
-- the environment's skyline edge aligns exactly with the profile silhouette.

create temp view final_poster as
select
composite(layer1, layer2, mode='screen_print_overprint') as artwork
from poster_layers;

render artwork
with style='olly_moss_minimalism, gestalt_figure_ground',
constraints='no_gradients, no_3d, no_floating_faces_in_sky';