-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
1052 lines (935 loc) · 47.7 KB
/
Copy pathindex.html
File metadata and controls
1052 lines (935 loc) · 47.7 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>ChatGPT Images 2.0 — Gallery</title>
<meta name="theme-color" content="#0e0d0a">
<link rel="icon" href="favicon.svg" type="image/svg+xml">
<link rel="preconnect" href="https://fonts.googleapis.com">
<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin>
<link href="https://fonts.googleapis.com/css2?family=Sora:wght@400;500;600;700&family=Source+Serif+4:ital,opsz,wght@0,8..60,400;0,8..60,600;1,8..60,400&display=swap" rel="stylesheet">
<style>
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
:root {
--bg: #0e0d0a;
--surface: #1a1916;
--surface-hi: #232118;
--border: #2e2c23;
--border-hi: #46433a;
--text: #e4dfd4;
--text-dim: #9a9284;
--accent: #10a37f;
--accent-hover: #0d8c6d;
--shadow-sm: 0 1px 3px rgba(0,0,0,.4), 0 2px 8px rgba(0,0,0,.3);
--shadow-md: 0 6px 16px rgba(0,0,0,.5), 0 16px 40px rgba(0,0,0,.4);
}
body {
font-family: 'Sora', sans-serif;
background: var(--bg);
color: var(--text);
min-height: 100vh;
}
/* ── Header ── */
header {
background: var(--surface);
border-bottom: 1px solid var(--border);
padding: 1.125rem 1.75rem 0;
position: sticky;
top: 0;
z-index: 100;
}
.header-inner {
max-width: 1440px;
margin: 0 auto;
display: flex;
align-items: center;
gap: 0.875rem;
flex-wrap: wrap;
padding-bottom: 0.875rem;
}
/* ── Filter row ── */
.filter-row {
max-width: 1440px;
margin: 0 auto;
display: flex;
align-items: center;
gap: 0.375rem;
overflow-x: auto;
padding-bottom: 0.875rem;
scrollbar-width: none;
}
.filter-row::-webkit-scrollbar { display: none; }
.filter-btn {
display: inline-flex;
align-items: center;
gap: 0.3rem;
padding: 0.3rem 0.75rem;
border-radius: 20px;
font-family: 'Sora', sans-serif;
font-size: 0.75rem;
font-weight: 500;
cursor: pointer;
border: 1px solid var(--border);
background: transparent;
color: var(--text-dim);
white-space: nowrap;
transition: background 0.12s, color 0.12s, border-color 0.12s;
flex-shrink: 0;
}
.filter-btn:hover { color: var(--text); border-color: var(--border-hi); }
.filter-btn.active {
background: var(--accent);
border-color: var(--accent);
color: #fff;
}
.filter-btn .count {
font-size: 0.6875rem;
opacity: 0.7;
}
h1 {
font-size: 1.125rem;
font-weight: 700;
letter-spacing: -0.02em;
}
.header-meta {
font-size: 0.75rem;
color: var(--text-dim);
}
.header-right {
margin-left: auto;
display: flex;
align-items: center;
gap: 0.75rem;
}
.header-source {
font-size: 0.75rem;
color: var(--text-dim);
text-decoration: none;
}
.header-source:hover { color: var(--text); }
/* ── View toggle ── */
.view-toggle {
display: flex;
background: var(--bg);
border: 1px solid var(--border);
border-radius: 7px;
overflow: hidden;
}
.view-btn {
display: flex;
align-items: center;
gap: 0.35rem;
padding: 0.35rem 0.75rem;
font-family: 'Sora', sans-serif;
font-size: 0.75rem;
font-weight: 500;
cursor: pointer;
border: none;
background: transparent;
color: var(--text-dim);
transition: background 0.12s, color 0.12s;
}
.view-btn:hover { color: var(--text); }
.view-btn.active {
background: var(--surface-hi);
color: var(--text);
}
/* ── Shared Buttons ── */
.btn {
display: inline-flex;
align-items: center;
gap: 0.3rem;
padding: 0.375rem 0.75rem;
border-radius: 6px;
font-family: 'Sora', sans-serif;
font-size: 0.75rem;
font-weight: 500;
cursor: pointer;
border: none;
text-decoration: none;
white-space: nowrap;
transition: background 0.12s, color 0.12s;
line-height: 1;
}
.btn-ghost {
background: transparent;
border: 1px solid var(--border);
color: var(--text-dim);
}
.btn-ghost:hover { background: var(--surface-hi); color: var(--text); border-color: var(--border-hi); }
.btn-green {
background: var(--accent);
color: #fff;
}
.btn-green:hover { background: var(--accent-hover); }
/* ── Gallery grid ── */
#gallery {
max-width: 1440px;
margin: 0 auto;
padding: 1.75rem;
display: grid;
grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
gap: 1rem;
}
.card {
background: var(--surface);
border-radius: 10px;
border: 1px solid var(--border);
box-shadow: var(--shadow-sm);
overflow: hidden;
display: flex;
flex-direction: column;
cursor: pointer;
transition: transform 0.15s ease, box-shadow 0.15s ease, border-color 0.15s ease;
}
.card:hover {
transform: translateY(-3px);
box-shadow: var(--shadow-md);
border-color: var(--border-hi);
}
.card-image {
width: 100%;
aspect-ratio: 4 / 3;
object-fit: cover;
display: block;
background: var(--border);
}
.card-body {
padding: 0.75rem 0.875rem 0.875rem;
display: flex;
flex-direction: column;
gap: 0.25rem;
flex: 1;
}
.card-num {
font-size: 0.625rem;
font-weight: 700;
color: var(--text-dim);
letter-spacing: 0.06em;
text-transform: uppercase;
}
.card-title {
font-size: 0.9375rem;
font-weight: 600;
line-height: 1.3;
}
.card-prompt-preview {
font-family: 'Source Serif 4', serif;
font-size: 0.8125rem;
color: var(--text-dim);
line-height: 1.55;
display: -webkit-box;
-webkit-line-clamp: 3;
-webkit-box-orient: vertical;
overflow: hidden;
flex: 1;
margin-top: 0.125rem;
}
.card-actions {
display: flex;
gap: 0.4rem;
margin-top: 0.625rem;
padding-top: 0.625rem;
border-top: 1px solid var(--border);
}
/* ── Scan list view ── */
#scan {
display: none;
max-width: 920px;
margin: 0 auto;
padding: 1.75rem;
flex-direction: column;
gap: 0.625rem;
}
body.mode-scan #gallery { display: none; }
body.mode-scan #scan { display: flex; }
.scan-row {
display: flex;
gap: 1rem;
align-items: flex-start;
background: var(--surface);
border: 1px solid var(--border);
border-radius: 9px;
padding: 0.875rem;
cursor: pointer;
transition: border-color 0.12s, background 0.12s;
}
.scan-row:hover {
border-color: var(--accent);
background: var(--surface-hi);
}
.scan-thumb {
width: 96px;
height: 72px;
object-fit: cover;
border-radius: 6px;
flex-shrink: 0;
background: var(--border);
}
.scan-body {
flex: 1;
min-width: 0;
display: flex;
flex-direction: column;
gap: 0.3rem;
}
.scan-meta {
font-size: 0.6875rem;
font-weight: 700;
color: var(--text-dim);
letter-spacing: 0.05em;
text-transform: uppercase;
}
.scan-title {
font-size: 0.875rem;
font-weight: 600;
line-height: 1.3;
margin-bottom: 0.25rem;
}
.scan-prompt {
font-family: 'Source Serif 4', serif;
font-size: 0.8125rem;
line-height: 1.65;
color: var(--text-dim);
}
/* ── Lightbox ── */
.lightbox {
display: none;
position: fixed;
inset: 0;
z-index: 500;
background: rgba(6,5,4,.88);
backdrop-filter: blur(8px);
-webkit-backdrop-filter: blur(8px);
align-items: center;
justify-content: center;
}
.lightbox.open { display: flex; }
.lb-inner {
display: flex;
width: min(1080px, calc(100vw - 3rem));
max-height: calc(100vh - 3rem);
background: var(--surface);
border: 1px solid var(--border-hi);
border-radius: 14px;
overflow: hidden;
position: relative;
box-shadow: 0 32px 80px rgba(0,0,0,.7);
}
.lb-img-wrap {
flex: 0 0 54%;
background: #080705;
display: flex;
align-items: center;
justify-content: center;
overflow: hidden;
}
.lb-img {
max-width: 100%;
max-height: calc(100vh - 3rem);
object-fit: contain;
display: block;
}
.lb-panel {
flex: 0 0 46%;
display: flex;
flex-direction: column;
overflow-y: auto;
padding: 1.625rem 1.625rem 1.375rem;
gap: 0.875rem;
}
.lb-eyebrow {
font-size: 0.625rem;
font-weight: 700;
color: var(--text-dim);
letter-spacing: 0.07em;
text-transform: uppercase;
}
.lb-title {
font-size: 1.125rem;
font-weight: 700;
letter-spacing: -0.015em;
line-height: 1.3;
}
.lb-divider {
border: none;
border-top: 1px solid var(--border);
}
.lb-prompt-label {
font-size: 0.625rem;
font-weight: 700;
color: var(--text-dim);
letter-spacing: 0.07em;
text-transform: uppercase;
}
.lb-prompt {
font-family: 'Source Serif 4', serif;
font-size: 0.875rem;
line-height: 1.7;
color: var(--text);
background: var(--bg);
border: 1px solid var(--border);
border-radius: 8px;
padding: 1rem 1.125rem;
white-space: pre-wrap;
word-break: break-word;
flex: 1;
}
.lb-note {
font-size: 0.6875rem;
color: var(--text-dim);
line-height: 1.5;
}
.lb-actions {
display: flex;
gap: 0.5rem;
flex-wrap: wrap;
}
.lb-nav {
position: absolute;
top: 50%;
transform: translateY(-50%);
background: rgba(0,0,0,.5);
color: #fff;
border: none;
border-radius: 50%;
width: 2.25rem;
height: 2.25rem;
display: flex;
align-items: center;
justify-content: center;
cursor: pointer;
font-size: 0.875rem;
transition: background 0.12s;
z-index: 10;
}
.lb-nav:hover { background: rgba(0,0,0,.75); }
.lb-nav:disabled { opacity: 0.2; cursor: default; }
.lb-nav.prev { left: 0.625rem; }
.lb-nav.next { right: 0.625rem; }
.lb-close {
position: absolute;
top: 0.625rem;
right: 0.625rem;
background: rgba(0,0,0,.5);
color: #fff;
border: none;
border-radius: 50%;
width: 2rem;
height: 2rem;
display: flex;
align-items: center;
justify-content: center;
cursor: pointer;
font-size: 0.75rem;
transition: background 0.12s;
z-index: 10;
}
.lb-close:hover { background: rgba(0,0,0,.75); }
/* ── Toast ── */
.toast {
position: fixed;
bottom: 2rem;
left: 50%;
transform: translateX(-50%) translateY(0.5rem);
background: var(--text);
color: var(--bg);
padding: 0.5rem 1.125rem;
border-radius: 8px;
font-size: 0.8125rem;
font-weight: 600;
z-index: 2000;
pointer-events: none;
opacity: 0;
transition: opacity 0.18s ease, transform 0.18s ease;
}
.toast.show { opacity: 1; transform: translateX(-50%) translateY(0); }
.filtered-out { display: none !important; }
/* ── Responsive ── */
@media (max-width: 720px) {
.lb-inner { flex-direction: column; width: calc(100vw - 1.5rem); max-height: calc(100vh - 1.5rem); }
.lb-img-wrap { flex: 0 0 42%; }
.lb-panel { padding: 1.125rem; }
#gallery { padding: 1rem; gap: 0.75rem; grid-template-columns: repeat(auto-fill, minmax(220px, 1fr)); }
#scan { padding: 1rem; }
header { padding: 0.875rem 1rem; }
.header-source { display: none; }
}
</style>
</head>
<body>
<header>
<div class="header-inner">
<h1>ChatGPT Images 2.0</h1>
<span class="header-meta">45 images · prompt gallery</span>
<div class="header-right">
<div class="view-toggle" role="group" aria-label="View mode">
<button class="view-btn active" id="btn-grid" onclick="setView('grid')">
<svg width="13" height="13" viewBox="0 0 16 16" fill="currentColor"><rect x="1" y="1" width="6" height="6" rx="1"/><rect x="9" y="1" width="6" height="6" rx="1"/><rect x="1" y="9" width="6" height="6" rx="1"/><rect x="9" y="9" width="6" height="6" rx="1"/></svg>
Grid
</button>
<button class="view-btn" id="btn-scan" onclick="setView('scan')">
<svg width="13" height="13" viewBox="0 0 16 16" fill="currentColor"><rect x="1" y="1" width="4" height="4" rx="1"/><rect x="7" y="2" width="8" height="1.5" rx="0.75"/><rect x="7" y="4" width="5" height="1.5" rx="0.75"/><rect x="1" y="7" width="4" height="4" rx="1"/><rect x="7" y="8" width="8" height="1.5" rx="0.75"/><rect x="7" y="10" width="5" height="1.5" rx="0.75"/><rect x="1" y="13" width="4" height="2" rx="1"/><rect x="7" y="13.25" width="8" height="1.5" rx="0.75"/></svg>
Scan
</button>
</div>
<a class="header-source" href="https://openai.com/index/introducing-chatgpt-images-2-0/" target="_blank" rel="noopener">openai.com ↗</a>
</div>
</div>
<div class="filter-row" id="filter-row"></div>
</header>
<main id="gallery"></main>
<div id="scan"></div>
<!-- Lightbox -->
<div class="lightbox" id="lightbox" aria-modal="true" aria-labelledby="lb-title" aria-describedby="lb-note" aria-hidden="true" role="dialog" tabindex="-1">
<div class="lb-inner">
<div class="lb-img-wrap">
<img class="lb-img" id="lb-img" src="" alt="">
</div>
<div class="lb-panel">
<div>
<div class="lb-eyebrow" id="lb-num"></div>
<div class="lb-title" id="lb-title"></div>
</div>
<hr class="lb-divider">
<div class="lb-prompt-label">Prompt</div>
<div class="lb-prompt" id="lb-prompt"></div>
<div class="lb-note" id="lb-note">Opens ChatGPT with the prompt pre-filled; press Enter there to send. Keyboard here: ←/→ or j/k to navigate, Esc to close.</div>
<div class="lb-actions">
<button class="btn btn-ghost" id="lb-copy-btn">
<svg width="11" height="11" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2.5" stroke-linecap="round" stroke-linejoin="round"><rect x="9" y="9" width="13" height="13" rx="2"/><path d="M5 15H4a2 2 0 0 1-2-2V4a2 2 0 0 1 2-2h9a2 2 0 0 1 2 2v1"/></svg>
Copy prompt
</button>
<a class="btn btn-green" id="lb-chatgpt-link" href="" target="_blank" rel="noopener">
<svg width="11" height="11" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2.5" stroke-linecap="round" stroke-linejoin="round"><path d="M18 13v6a2 2 0 0 1-2 2H5a2 2 0 0 1-2-2V8a2 2 0 0 1 2-2h6"/><polyline points="15 3 21 3 21 9"/><line x1="10" y1="14" x2="21" y2="3"/></svg>
Try in ChatGPT
</a>
</div>
</div>
<button class="lb-nav prev" id="lb-prev" aria-label="Previous">←</button>
<button class="lb-nav next" id="lb-next" aria-label="Next">→</button>
<button class="lb-close" id="lb-close" aria-label="Close">✕</button>
</div>
</div>
<div class="toast" id="toast">Prompt copied!</div>
<script>
const IMAGES = [
{
id: 1, file: "screenshot.webp", title: "ChatGPT UI", tag: "photography",
prompt: `a screenshot of chatgpt, in a browser, in macosx. the user types "draw me a dog" chatgpt draws an ascii dog the front window is chatgpt, but the desktop is quite messy with lots of random windows open (e.g. a terminal). they're all in the background`
},
{
id: 2, file: "images-2-visual-polyglot.webp", title: "Visual Polyglot", tag: "editorial",
prompt: `I am creating a magazine page with the theme of "visual polyglot". The title in the center of the image should be "Create Everything at Once". Create a piece of art celebrating visual creations, not limited to beautiful photographs but also across the full breadth of human visual culture and natural visual elements. There should be curated collage representing the diverse distribution: scientific diagrams, the periodic table, the solar system, medieval manuscript pages, botanical illustrations, anatomical drawings, old maps, climate charts, engineering schematics, transit signage, multilingual text, comic panels, UI screenshots, a camera photo, a butterfly specimen, pie charts, architectural blueprints, and façade drawings. The text frames the model as fluent across languages, notation systems, interfaces, cultural forms, and visual conventions—able to move from utility to beauty, from document understanding to artistic generation. Also feature artistic elements like pixel art, styles, history, sculpture, nature, photography, paintings, and all art forms. These are just examples, I need you to actively think about other elements / styles that may fit in a good design that's not limited to these concepts. The overall effect is that of a premium research announcement or museum-style manifesto: elegant, ambitious, and designed to argue that image intelligence should be trained on the whole visual world, not just polished aesthetics. Use an unstructured, creative and artistic layout, such as but not limited to fan out, avoid grid-like layouts. Portrait 4:5 aspect ratio. Don't add any content text beside the "Create Everything at Once" title. Text as part of the art is okay. Avoid a beige tint of the overall style, since we want vibrant elements to be vibrant.`
},
{
id: 3, file: "rice.webp", title: "Grain of Rice", tag: "photography",
prompt: `Mound of rice with thousands of grains, zoomed out. One of those grains has "GPT Image 2" etched onto it, just big enough to fit on that single grain. This rice grain is exactly the same size as the others, not any bigger or smaller, and blends into the rice mound well so it cannot be spotted at a glance.`
},
{
id: 4, file: "images-2-wolf-magazine.webp", title: "Wolf Magazine", tag: "editorial",
prompt: `an editorial magazine page about wolves in north america and how they're more harmless than we think. make it look like a glossy, smooth, well laid out widely distributed science magazine.`
},
{
id: 5, file: "images-2-wbaseball-note.webp", title: "Baseball Essay", tag: "photography",
prompt: `a photorealistic, taken by phone photo of a handwritten essay in pencil, bold but elegant handwriting, but messy and somewhat uneven, on an 8.5x11 piece of lined paper, about the history of baseball in toronto. make sure there is variance in the writing in a very human way. give it a slight coffee stain on the top right corner`
},
{
id: 6, file: "japanese.webp", title: "Shonen Manga (JP)", tag: "comics",
prompt: `Make a sample page of a colorized Japanese shonen adventure manga. The page should vividly depict our main character found a magical quill. The name of the quill is called the Quill of GPT Image. Make it dramatic. The magical quill has strong power sealed inside it.Additional instructions: Aspect ratio: Portrait 1440x2560. The pen should have an OpenAI logo on it. The language throughout the manga should be Japanese. Think carefully first to make this a good story with good split of manga panels. The page should appear as a photo of a physical page, not a digital page.`
},
{
id: 7, file: "hindi.webp", title: "Indian Bookstore", tag: "photography",
prompt: `I want to create a magazine page that features a professional realistic photography in an Indian bookstore that selling indian books in different languages used in India. The photography should feature book covers in Hindi, Bengali, Marathi, Telugu, Tamil, Urdu, Gujarati, Kannada, Odia. The books must be made-up books with title related to "art" in these languages, but looks like actual book covers rather than a set. The publisher must be "OpenAI". All text must be clearly visible. The purpose of this photography is to show case the diversity of India language. The page should be a picture entirely, no meta text nor title. Aspect Ratio: 1440x2560 portrait`
},
{
id: 8, file: "chinese.webp", title: "Chinese Manga", tag: "comics",
prompt: `Generate a full color Chinese-text manga about this OpenAI 研究科学家, 陈博远 (first picture), who works on improving the text rendering capability of ChatGPT Image 2 model for the upcoming release. (in the background there is boba tea and a banana taped to the wall with a single slice of duct tape). The model can render insanely small Chinese text when he tried generating some detailed and beautiful multilingual infographics handdrawn-style poster about his hometown, 无锡 on his computer screen. His hard work pays off and the team was impressed by the absurdly good quality of multilingual text performance of his model, seeing all the languages it can write. When he takes a break with one hand holding his phone, he received a translated text message from Sam Altman on his phone (avatar attached as second picture), asking him to take a look at the rendered multilingual text in an image he just generated to congrat the team, since Sam only knows English. However, make it funny by let Boyuan outrage (typical manga style) at the end by seeing Sam's generated image contains a "稳稳地接住你" phrase at the central location in an otherwise perfectly rendered image that's used to congrat the team, because this sentence has been memed as an unnatural but funny Chinese sentence GPT likes to use on Chinese internet. Boyuan should rage "天呐! 它又学会了接住!" (with teammates as tiny heads on the side, sweating and saying in Chinese "we are working hard to fix it!"). At the very bottom of the manga, add a tiny line of footnote (very tiny) in Chinese that "note: the entire manga, including this footnote and picture in picture, are all generated with gpt image 2 at once without editing or multiple steps。"
Additional Instructions: Use vertical 1440x2560 image layout, with first row about this researcher working hard, second row about his result on 无锡 with multiple languages, third row shows the team excitement, fourth row split into left and right where left shows he takes a break and the phone received a message, right panel shows Sam's text message, and fifth row shows Sam's picture and 陈博远's reaction. No narration except for the first row. Avoid Chinese map. All characters should be in manga style. The banana background should only appear in the first panel and the tape should be a single slice of tape, not a cross tape. The banana and tape decoration should be small as a insignificant easter egg for people to find. OpenAI logo shall only appear on 陈博远's cloth, not elsewhere. No mugs in the scene since we already have the boba. Sam should only appear in the text message panel. The entire manga should be appear as a professional photo of a physical page in a manga book. In the lower right most corner of the poster there is a small "极小中文也清晰可读:" with a paragraph of much smaller Chinese that begins with "(此处为极小字号测试)无锡是作者的故乡,所以做了这幅海报,中文总算是修好了。很多年没回家了,好想吃大闸蟹啊!" (ultra small).`
},
{
id: 9, file: "images-2-korean-advertisement.webp", title: "Korean Ad", tag: "poster",
prompt: `프리미엄 한옥 스테이 예약 유도용 카드 이미지, 고즈넉한 골목을 지나 체크인하는 순간, 마당이 보이는 창가에서 차를 마시는 순간, 따뜻한 조명 아래 객실에서 쉬는 순간의 3장면이 한 화면 안에서 자연스럽게 이어지는 구성, 같은 한국 여성이 반복 등장하며 우아하고 여유로운 여행 분위기, 크림과 우드 톤, 부드러운 자연광, 정갈한 한옥 공간, 저장하고 싶은 프리미엄 여행 카드 무드, 제목과 짧은 라벨, 예약 안내를 얹기 쉬운 여백, 모바일 중심 4:5 비율`
},
{
id: 10, file: "images-2-typography.webp", title: "Typography Poster", tag: "poster",
prompt: `Generate professional multilingual poster about typography. The poster is supposed to be an artwork celebrating languages around the world. Japanese editorial style. 4:5 portrait aspect ratio`
},
{
id: 11, file: "images-2-candid-people-1.webp", title: "Candid Coast", tag: "photography",
prompt: `A photorealistic candid travel scene of a person standing at a coastal roadside turnout on an overcast morning, shot on 35mm film. Natural imperfect framing, visible grain, ambient light, muted colors, wind in clothing and hair, cinematic realism, and the feeling of a lived-in documentary photograph.`
},
{
id: 12, file: "images-2-candid-people-2.webp", title: "Night Flash", tag: "photography",
prompt: `A photorealistic snapshot portrait of two friends outside a venue at night, shot on a compact point-and-shoot camera with direct flash. Close subject distance, crisp foreground detail, deep shadow falloff, slightly raw spontaneous energy, nightlife atmosphere, and the unmistakable look of an early-2000s flash photograph.`
},
{
id: 13, file: "ChatGPT_Image_Apr_14__2026__09_42_30_PM.webp", title: "Suburban Strange", tag: "photography",
prompt: `The portraits are taken outdoors, indoors, in specific, intimate, suburban settings. I don't want to replicate this; I want to maintain the same photographic style and realism, with shots taken using view cameras with colour film and medium-format cameras with colour film, but pushing the strangeness of the subjects and locations further. Not so much in a poor and grubby way, but more in the direction of kitsch and the middle classes, yet with elements that could not exist in reality, either aesthetically or physically.`
},
{
id: 14, file: "dc02fe03-ac6f-46cf-802e-fa6e0847242f.webp", title: "Twins on Road", tag: "photography",
prompt: `Create a photographic image with beautiful depth of field, as if it were shot on a medium-format analogue camera using colour film, 85 mm f/4. It should be a distinctive portrait of twins—realistic, authentic, imperfect, and natural—set in the middle of a deserted, misty road in the heart of America. Aspect ratio 3:4.`
},
{
id: 15, file: "images-2-lecture-hall.webp", title: "Recursive Lecture", tag: "photography",
prompt: `a 2015 ubc lecture hall with professor showing slides about GPT imagegen 2, photorealistic. the slides show a professor showing slides about GPT imagegen 2, and so on, recursively, forever.`
},
{
id: 16, file: "images-2-aliens.webp", title: "Alien Café", tag: "photography",
prompt: `A photorealistic iPhone photo of two aliens sitting at an outdoor cafe in late afternoon, taken casually by someone at the table. Half-finished drinks, uneven sunlight, relaxed posture, slightly imperfect framing, and the natural realism of a real everyday phone snapshot.`
},
{
id: 17, file: "images-2-high-fashion.webp", title: "High Fashion", tag: "photography",
prompt: `35mm photograph of a book of high-fashion photoshoots`
},
{
id: 18, file: "images-2-computer-lab.webp", title: "2004 Computer Lab", tag: "photography",
prompt: `Create one photorealistic candid disposable-camera snapshot from a fictional early 2000s American high school computer lab, alternate-history/anachronistic premise: every student is using ChatGPT on old beige CRT monitors and bulky desktop towers. Scene feels like 2002-2004: rows of tan computers, rolling chairs, Windows XP-era browser windows, ball mice, tangled cables, binder stickers, floppy disks, CD-ROM binders, overhead fluorescent lights, laminated keyboard-shortcut posters, backpacks under desks. Diverse teenage students in non-sexualized early-2000s clothes, leaning toward screens, laughing, one student pointing at a ChatGPT answer, another typing. Show simple readable screen text on several monitors: ChatGPT, Ask anything, and short chat bubbles, but do not imitate a modern polished app UI. Make it candid and nostalgic, imperfect flash photo, mild motion blur, film grain, slightly off-center composition, orange date stamp in corner reading 02 18 04.`
},
{
id: 19, file: "images-2-35mm-photograph.webp", title: "70s NYC Streets", tag: "photography",
prompt: `35mm photograph of a book of 1970s NYC candid street photographs`
},
{
id: 20, file: "shonenfinal.webp", title: "Seinen Manga", tag: "comics",
prompt: `a page of a comic book in the style of Japanese Seinen manga`
},
{
id: 21, file: "images-2-french-poster.webp", title: "French New Wave Poster", tag: "poster",
prompt: `1960s French New Wave theatrical poster, bold photomontage composition, torn-paper collage sensibility, pop-art color bursts, high-contrast black-and-white imagery with selective red blue and yellow accents, hand-made offset-print texture, slightly off-register ink, expressive asymmetry, art-house poster cool, graphic spontaneity, street-poster energy, adventurous typography-led design.
Poster text:
- Large title at the bottom: "GPT Image 2.0"
- Smaller headline at the top: "Image generation with a point of view"
- Small footer text: "Coming soon"
Keep all visible text in English. Use a theatrical poster composition.`
},
{
id: 22, file: "images-2-Czech-poster.webp", title: "Czech Film Poster", tag: "poster",
prompt: `1960s Czechoslovak film poster, surreal metaphor-driven composition, collage sensibility, painterly photomontage feel, symbolic central imagery, art-house theatrical mood, muted but slightly acidic color palette, hand-made print texture, off-register ink, distressed paper surface, unusual visual juxtapositions, elegant tension between abstraction and narrative, vintage gallery-poster sophistication.
Poster text:
- Large title at the bottom: "GPT Image 2.0"
- Smaller headline at the top: "Built on a deeper understanding of images"
- Small footer text: "Coming soon"
Keep all visible text in English. Use a theatrical poster composition.`
},
{
id: 23, file: "images-2-miami-comic.webp", title: "Pastel Comic", tag: "comics",
prompt: `A page of a comic book in the style of Mid-Century Pastel Comic Art`
},
{
id: 24, file: "images-2-indie-comic.webp", title: "Indie Comic", tag: "comics",
prompt: `A page of a comic book in the style of modern indie comic`
},
{
id: 25, file: "image__82_.webp", title: "Anime Character Sheet", tag: "infographic",
prompt: `Based on everything you know about me, make a character sheet of shonen-style anime character of me, name is adele`
},
{
id: 26, file: "gpt_img__1___1_.webp", title: "Food Calligraphy", tag: "editorial",
prompt: `calligraphy with the following text. it should be written using different food as an ingredient. (do not use too easy ingredients like beans) "GPT Image" — you should be careful/creative about how to use food as an ingredient for each letter. You should not distort food to fit in alphabet though, but it should naturally assemble or look like a letter. Prefer keeping originality/naturalness of real food over likeliness to alphabet. prefer assembling food naturally over distorting, cutting food into unnatural shape to look like a letter.
---
Create a beautifully designed set of studio artifacts for the launch of GPT Image 2: printed review sheets, pinned proofs, contact prints, layout studies, notes, and small pieces of launch collateral. It should feel like the wall or table of a serious creative studio preparing for a major release, with restrained typography, believable details, and an elegant documentary-style realism.`
},
{
id: 27, file: "images-2-manga-style_disassembly.webp", title: "Dunk Disassembly", tag: "illustration",
prompt: `"japanese-manga-style disassembly" of a basketball dunk shoot motion like a time lapse. Tell the most story through visuals rather than text. 3:1 ultrawide aspect ratio. prefer light background rather than dark. do not use japanese`
},
{
id: 28, file: "images-2-thai_pano.webp", title: "Asian City Panorama", tag: "photography",
prompt: `create a photorealistic panorama shot as if taken on iphone of a busy asian city. make it a bit jaggedy like my hand shook while taking the panorama shot ; there should be fault lines where the image breaks from my hand shaking or not keeping a straight line`
},
{
id: 29, file: "bookmark.webp", title: "Tangerine Books Bookmark", tag: "poster",
prompt: `i'm opening a bookstore called 'tangerine books' in toronto and would like to make a bookmark to print, that i give my shoppers. the aesthetic should be gorgeous art deco - colorful, retro, joyful, elegant. include print dimensions and margins. please include the address and phone number: 88 Paper Lane
Toronto, ON M0X 2Z2
(416) 555-0188
Open 7 days a week, 9am-9pm.
include bleed, trim, and safe margin.`
},
{
id: 30, file: "images-2-japanese-charicature.webp", title: "Japanese Caricatures", tag: "illustration",
prompt: `Use the input photos only for each person's identity. Redraw all 9 of us in one ultrawide image as very simple surreal Japanese sticker-style caricatures: long thin necks, small deadpan faces, minimal black outline, flat light coloring, almost no shading, very few facial details, simplified hair shapes, lots of white space, plain white background, slightly awkward and funny. Show all 9 of us naturally gathered around a giant sheet of paper on the floor, leaning over it from different sides in diverse drawing poses, all actively working together on the same single large drawing-in-progress on the paper, not separate little drawings, with exactly one drawn person per input person. the drawing on the paper should read as one coherent poster-like scene.`
},
{
id: 31, file: "images-2-storybook.webp", title: "Winding Story Path", tag: "illustration",
prompt: `a really tall and narrow photo where there's a winding path that goes through children storybook like characters and phrases like "not yet" until it arrives at a satisfying conclusion at the bottom. it should be on a white background and the path should be a really thin winding solid black line`
},
{
id: 32, file: "images-2-cantor.webp", title: "Cantor's Diagonal", tag: "infographic",
prompt: `cantor's diagonalization proof, infographic`
},
{
id: 33, file: "images-2-design-trends.webp", title: "Design Trends 2025", tag: "infographic",
prompt: `make an infographic of the 6 biggest design trends in 2025 . make sure each pane is the same size.`
},
{
id: 34, file: "images-2-wheat-trends.webp", title: "Wheatpaste Trends", tag: "poster",
prompt: `make an wheatpaste poster of the 6 biggest design trends in 2025 . make sure each pane is the same size.`
},
{
id: 35, file: "images-2-color-analysis.webp", title: "Color Analysis", tag: "infographic",
prompt: `Using this portrait, create a diagram-first personal color analysis. Show which clothing colors suit the subject through visual comparison. Keep text minimal and avoid paragraphs.`
},
{
id: 36, file: "imagegen_call_001_image_002.webp", title: "Kizuki Matcha (3)", tag: "poster",
prompt: `Make an advertisement promoting my new matcha shop called 'kizuki' opening in brooklyn heights. have a nice sunlight image of a strawberry matcha (iced) and a streetwear aesthetic w japanese minimalism. make sure to include multiple aspect ratio outputs so i can use it on twitter, IG stories, IG feed, and linkedin.`
},
{
id: 37, file: "imagegen_call_000_image_000.webp", title: "Kizuki Matcha (1)", tag: "poster",
prompt: `Make an advertisement promoting my new matcha shop called 'kizuki' opening in brooklyn heights. have a nice sunlight image of a strawberry matcha (iced) and a streetwear aesthetic w japanese minimalism. make sure to include multiple aspect ratio outputs so i can use it on twitter, IG stories, IG feed, and linkedin.`
},
{
id: 38, file: "imagegen_call_001_image_001.webp", title: "Kizuki Matcha (2)", tag: "poster",
prompt: `Make an advertisement promoting my new matcha shop called 'kizuki' opening in brooklyn heights. have a nice sunlight image of a strawberry matcha (iced) and a streetwear aesthetic w japanese minimalism. make sure to include multiple aspect ratio outputs so i can use it on twitter, IG stories, IG feed, and linkedin.`
},
{
id: 39, file: "ChatGPT_Image_Apr_20__2026__09_39_01_PM__1_.webp", title: "Spud & Garlic (1)", tag: "comics",
prompt: `make a four-page american retro style comic about a potato named spud and a garlic named garlic who are friends and go on a trip to the south of france together`
},
{
id: 40, file: "ChatGPT_Image_Apr_20__2026__09_39_01_PM__2_.webp", title: "Spud & Garlic (2)", tag: "comics",
prompt: `make a four-page american retro style comic about a potato named spud and a garlic named garlic who are friends and go on a trip to the south of france together`
},
{
id: 41, file: "ChatGPT_Image_Apr_20__2026__09_39_01_PM__3_.webp", title: "Spud & Garlic (3)", tag: "comics",
prompt: `make a four-page american retro style comic about a potato named spud and a garlic named garlic who are friends and go on a trip to the south of france together`
},
{
id: 42, file: "ChatGPT_Image_Apr_20__2026__09_39_02_PM__4_.webp", title: "Spud & Garlic (4)", tag: "comics",
prompt: `make a four-page american retro style comic about a potato named spud and a garlic named garlic who are friends and go on a trip to the south of france together`
},
{
id: 43, file: "images-2-academic-poster.webp", title: "Academic Poster", tag: "infographic",
prompt: `Please make a landscape academic paper poster based on the uploaded PDF file. Remember to include important charts/diagrams/plots from the source.`
},
{
id: 44, file: "images-2-thinking-mode-searches.webp", title: "Thinking Mode Searches", tag: "poster",
prompt: `Search for the merch in OpenAI supply co website and make a professional poster displaying our merch in a nice layout. The title of the poster should be "Thinking Mode Searches". Along the title there is a subtitle "With thinking mode, the model can automatically browse the internet and find relevant contents for reference." Below that, add a caption for the images below: "Prompt: Make a poster about OpenAI merch available on the official website right now." Aspect ratio: 4:5 portrait.`
},
{
id: 45, file: "image__12_.webp", title: "Blackboard Math Proof", tag: "photography",
prompt: `a 35mm film photograph of a blackboard in a classroom, and on the blackboard is a visual proof of sum of odd numbers is a square. there is a title "Thinking Mode On" before the math proof. Aspect Ratio: 4:5 portrait.`
},
];
// ── Category definitions ─────────────────────────────────
const CATEGORIES = [
{ tag: 'all', label: 'All' },
{ tag: 'photography', label: 'Photography' },
{ tag: 'comics', label: 'Comics & Manga' },
{ tag: 'poster', label: 'Poster & Ad' },
{ tag: 'infographic', label: 'Infographic' },
{ tag: 'editorial', label: 'Editorial' },
{ tag: 'illustration', label: 'Illustration' },
];
// ── Helpers ──────────────────────────────────────────────
function chatgptUrl(prompt) {
return `https://chatgpt.com/?q=${encodeURIComponent(prompt)}`;
}
let toastTimer;
function showToast() {
const t = document.getElementById('toast');
t.classList.add('show');
clearTimeout(toastTimer);
toastTimer = setTimeout(() => t.classList.remove('show'), 2200);
}
// ── Render gallery (grid) ─────────────────────────────────
const galleryEl = document.getElementById('gallery');
IMAGES.forEach(img => {
const card = document.createElement('article');
card.className = 'card';
const image = document.createElement('img');
image.className = 'card-image';
image.src = img.file;
image.alt = img.title;
image.loading = 'lazy';
const body = document.createElement('div');
body.className = 'card-body';
const num = document.createElement('div');
num.className = 'card-num';
num.textContent = `#${String(img.id).padStart(2, '0')}`;
const title = document.createElement('div');
title.className = 'card-title';
title.textContent = img.title;
const preview = document.createElement('div');
preview.className = 'card-prompt-preview';
preview.textContent = img.prompt;
const actions = document.createElement('div');
actions.className = 'card-actions';
const copyBtn = document.createElement('button');
copyBtn.className = 'btn btn-ghost';
copyBtn.textContent = 'Copy';
copyBtn.addEventListener('click', e => {
e.stopPropagation();
navigator.clipboard.writeText(img.prompt).then(showToast);
});
const chatgptBtn = document.createElement('a');
chatgptBtn.className = 'btn btn-green';
chatgptBtn.href = chatgptUrl(img.prompt);
chatgptBtn.target = '_blank';
chatgptBtn.rel = 'noopener';
chatgptBtn.textContent = 'Try in ChatGPT ↗';
chatgptBtn.addEventListener('click', e => e.stopPropagation());
actions.appendChild(copyBtn);
actions.appendChild(chatgptBtn);
body.appendChild(num);
body.appendChild(title);
body.appendChild(preview);
body.appendChild(actions);
card.appendChild(image);
card.appendChild(body);
card.dataset.tag = img.tag;
card.addEventListener('click', () => openLightbox(img.id));
galleryEl.appendChild(card);
});
// ── Render scan list ──────────────────────────────────────
const scanEl = document.getElementById('scan');
IMAGES.forEach(img => {
const row = document.createElement('div');
row.className = 'scan-row';
row.setAttribute('role', 'button');
row.setAttribute('tabindex', '0');
const thumb = document.createElement('img');
thumb.className = 'scan-thumb';
thumb.src = img.file;
thumb.alt = img.title;
thumb.loading = 'lazy';
const body = document.createElement('div');
body.className = 'scan-body';
const meta = document.createElement('div');
meta.className = 'scan-meta';
meta.textContent = `#${String(img.id).padStart(2, '0')}`;
const title = document.createElement('div');
title.className = 'scan-title';
title.textContent = img.title;
const prompt = document.createElement('div');
prompt.className = 'scan-prompt';
prompt.textContent = img.prompt;
body.appendChild(meta);
body.appendChild(title);
body.appendChild(prompt);
row.appendChild(thumb);
row.appendChild(body);
row.dataset.tag = img.tag;
row.addEventListener('click', () => openLightbox(img.id));
row.addEventListener('keydown', e => { if (e.key === 'Enter' || e.key === ' ') openLightbox(img.id); });
scanEl.appendChild(row);
});
// ── Filter ───────────────────────────────────────────────
let activeFilter = 'all';
const filterRow = document.getElementById('filter-row');
CATEGORIES.forEach(cat => {
const count = cat.tag === 'all' ? IMAGES.length : IMAGES.filter(i => i.tag === cat.tag).length;
const btn = document.createElement('button');
btn.className = 'filter-btn' + (cat.tag === 'all' ? ' active' : '');
btn.dataset.tag = cat.tag;
btn.innerHTML = `${cat.label} <span class="count">${count}</span>`;
btn.addEventListener('click', () => setFilter(cat.tag));
filterRow.appendChild(btn);
});
function setFilter(tag) {
activeFilter = tag;
document.querySelectorAll('.filter-btn').forEach(b => {
b.classList.toggle('active', b.dataset.tag === tag);
});
document.querySelectorAll('.card').forEach(card => {
card.classList.toggle('filtered-out', tag !== 'all' && card.dataset.tag !== tag);
});
document.querySelectorAll('.scan-row').forEach(row => {
row.classList.toggle('filtered-out', tag !== 'all' && row.dataset.tag !== tag);
});
}
// ── View toggle ───────────────────────────────────────────
function setView(mode) {
document.body.classList.toggle('mode-scan', mode === 'scan');
document.getElementById('btn-grid').classList.toggle('active', mode === 'grid');
document.getElementById('btn-scan').classList.toggle('active', mode === 'scan');
localStorage.setItem('chatgpt-gallery-view', mode);
}
// Restore saved view
const savedView = localStorage.getItem('chatgpt-gallery-view');
if (savedView === 'scan') setView('scan');
// ── Lightbox ──────────────────────────────────────────────
let currentId = null;
let lastFocusedElement = null;
const lightbox = document.getElementById('lightbox');
const lbImg = document.getElementById('lb-img');
const lbNum = document.getElementById('lb-num');
const lbTitle = document.getElementById('lb-title');
const lbPrompt = document.getElementById('lb-prompt');
const lbLink = document.getElementById('lb-chatgpt-link');
const lbPrev = document.getElementById('lb-prev');
const lbNext = document.getElementById('lb-next');
function openLightbox(id) {
const img = IMAGES.find(i => i.id === id);
if (!img) return;
if (currentId === null && document.activeElement instanceof HTMLElement) {
lastFocusedElement = document.activeElement;
}
currentId = id;
lbImg.src = img.file;
lbImg.alt = img.title;
lbNum.textContent = `#${img.id} of ${IMAGES.length}`;
lbTitle.textContent = img.title;
lbPrompt.textContent = img.prompt;
lbLink.href = chatgptUrl(img.prompt);
const visible = activeFilter === 'all' ? IMAGES : IMAGES.filter(i => i.tag === activeFilter);
const idx = visible.findIndex(i => i.id === id);
lbPrev.disabled = idx === 0;
lbNext.disabled = idx === visible.length - 1;
lightbox.classList.add('open');
lightbox.setAttribute('aria-hidden', 'false');
document.body.style.overflow = 'hidden';
lightbox.focus();
history.pushState(null, '', `?id=${id}`);
}
function closeLightbox() {
if (currentId === null) return;
lightbox.classList.remove('open');
lightbox.setAttribute('aria-hidden', 'true');
document.body.style.overflow = '';
currentId = null;
history.pushState(null, '', location.pathname);