
Historical Figure Magazine Cover Generator
A creative structured prompt that simulates a Python class to generate high-end editorial magazine covers for historical figures, specifying wardrobe and lighting.
조회163
좋아요1
댓글0
공유0
북마크4
인용0
번역
class magazine_cover_shoot:
def __init__(self, subject="{argument name="historical figure" default="[historical_figure]"}"):
self.medium = "고급 편집 스튜디오 사진, 8k 해상도"
self.layout = "클래식 프레스티지 잡지 표지 (예: 타임 또는 포브스)"
def generate_editorial_content(self):
# ai 추론: 의상, 소품 및 텍스트 도출
wardrobe = f"ai_infer({self.subject}에게 어울리는 시대적 고증이 완벽한 맞춤 의상)"
pose = "턱을 괴고 생각에 잠긴 듯한 모습, 카메라를 꿰뚫어 보는 듯한 강렬한 눈빛"
# 그래픽 디자인 요소
masthead = "상단에 배치된 크고 굵은 세리프 폰트의 제목, 인물의 머리에 살짝 가려짐"
subtitles = f"ai_infer({self.subject}의 가장 위대한 업적을 요약하는 3~4개의 짧고 강렬한 단어, 왼쪽 정렬)"
barcode = "하단 모서리에 표준 잡지 바코드 및 발행 번호"
return [wardrobe, pose, masthead, subtitles, barcode]
# 실행: 조명은 {argument name="lighting style" default="렘브란트 스타일"}이어야 함—얼굴 한쪽에는 깊은 그림자를, 다른 한쪽에는 완벽한 소프트박스 조명을 적용.
기계 번역 — 실제 결과물을 만든 것은 원문 프롬프트입니다.











