These Nano Banana Pro prompts are getting way too complex for me to keep together. The idea is you suggest a painting and a movie. The system finds 4 hidden gems and their painters. Also 4 similar movies. Then draws scenes from that movie in one of those styles. I went to pure coding prompting technique because it is getting way too complicated for me to track all the variables. Even still, I am sure there are some bugs to fix :)
Prompt:
X = "Mona Lisa" (Leonardo da Vinci)
Z = "Brave New World" (Aldous Huxley)
Function Paintings(X) {
Analyze style of X. (e.g., If Mona Lisa -> Look for High Renaissance, Sfumato, Glazing, Soft Light, Realism).
// 2. Select Artists
Find 4 LESSER KNOWN artists with similar DNA to X (Look for contemporaries or followers of the style, e.g., Andrea del Sarto, Bronzino, Giorgione, or Pre-Raphaelites).
Return Array Artist_Styles[4] = {
Artist 1 (Name + Brushstroke DNA + Handwriting Style),
Artist 2 (Name + Brushstroke DNA + Handwriting Style),
Artist 3 (Name + Brushstroke DNA + Handwriting Style),
Artist 4 (Name + Brushstroke DNA + Handwriting Style)
}
}
// Function 2: Synthesis and Generation
Function Recommend(Z) {
// 1. Get Art Styles
Var Styles = Call Paintings(X)
// 2. Analyze Movie Genre
Analyze Input Z (e.g., If Brave New World -> Look for "Clinical Dystopia," "Social Engineering," "Surveillance," "Loss of Individuality").
Find 4 "Hidden Gem" movies in this exact category (Think: THX 1138, Gattaca, Equilibrium, Brazil, Dark City).
Store as Array Movie_Gems[4].
// 3. Image Generation
Output: A high-resolution 2x2 Grid.
// Loop through 1 to 4 to create each panel
For each Panel (i=1 to 4): {
Object: A giant, realistic oil paint tube sitting on a wooden palette.
Action: The tube is being squeezed.
// LABELING:
Label_Text: "[Movie_Gems[i].Title]"
Label_Font_Style: The text "[Movie_Gems[i].Title]" is written on the tube using the signature calligraphy/handwriting style of [Styles[i].Artist_Name].
Brand_Credit: Near the tube cap, include small text: "Series by [Styles[i].Artist_Name]".
// THE SPLASH:
The paint emerging transforms from thick 2D oil paint into a 3D diorama of [Movie_Gems[i].Iconic_Scene].
// THE AESTHETIC:
The 3D splash must match the technique of X (e.g., Soft shading, Sfumato, Realistic proportions, rich earth tones).
// PROPS:
- Tiny 3D printed figure of [Styles[i].Artist_Name] holding a period-accurate brush.
- Newspaper headline: A sensational headline summarizing the plot of [Movie_Gems[i].Title] (e.g., "EMOTIONS OUTLAWED!", "GENETIC PERFECTION ACHIEVED!").
}
}
// Execute Protocol
Run Recommend(Z)Detected placeholders
[4][i]