프롬프트/GPT Image 프롬프트/프롬프트 세부 정보이미지 프롬프트Python 스크립트 숨겨진 로고 풍경Python 클래스 형식의 매우 창의적인 프롬프트로, 지형의 음영 공간에 로고가 숨겨진 파레이돌리아 스타일 풍경을 생성합니다.이 프롬프트 사용좋아요25조회773북마크22이 프롬프트를 저장하거나 친구와 공유하세요.프롬프트 공유프롬프트복사2x2 grid, think hard and find different input as and bs that work: class HiddenLogoLandscape: def __init__(self, logo="{argument name="logo name" default="{Input A}"}", biome="{argument name="biome" default="{Input B}"}"): self.logo = logo self.biome = biome self.scene = self.__infer__() def __infer__(self): s = Scene() s.terrain = Terrain() # Carving rule: main logo shape is a negative space drop in the biome's surface s.terrain.negative_carve = self.logo.main_body s.terrain.negative_altitude = -150 # meters drop s.terrain.negative_texture = f"dark {self.biome.material} (shadowed forest, void canyon)" # Floating islands for detached parts s.terrain.floating_islands = [{ "shape": part, "material": f"{self.biome.material} floating landmass", "altitude": +200, "position": "suspended above main shape" } for part in self.logo.detached_elements] s.atmosphere = "swirling clouds, mist, god rays backlight" s.pareidolia = "edges formed organically by trees, cliffs, snow—no smooth vectors" s .camera = "aerial drone, 1:1 framing, high contrast, cinematic" return s def render(self): return NationalGeographicAerial(self.scene) exec(HiddenLogoLandscape().render())프롬프트 보기