Explore AI generated designs, images, art and prompts by top community artists and designers.
an attractive pretty chinese white women , black dress , strapless , 4k , echi , uhd image , exclusive , ellegance , dark bluecadet and gold colour , ultrarealistic , photorealistic , taken with 100mm kodak photo studio , full body , hand take poker card , bright , bright studio lighting , no background , flat white background ,
modelshoot style , (extremely detailed CG unity 8k wallpaper) , (front view:1.2) , full shot body photo of beautiful Ancient Chinese woman(young Liu Yifei :1.2) , (karate hand:1.2) , (hand hold bamboo flute) , (Kung fu master:1.2) , top of mountain , (sun shine through tree:1.3) , (sun shine on body:1.3) , (bamboo hat) , (hair through hat) , standing , (sexy revealing dress:1.3) , ( winter mountain:1.2) , ( windy storm snow:1.1) , ( strong wind :1.5) , ( strong wind :1.5) , NSFW , sexy model , (see through dress:1.2) , (show half breast:1.3) , pearl skin , fit shirt , (show half thigh :1.3) , (eyes contact:1.2) , angry , front hair bang , professional majestic oil painting by Ed Blinkey , Atey Ghailan , Studio Ghibli , by Jeremy Mann , Greg Manchess , Antonio Moro , trending on ArtStation , trending on CGSociety , Intricate , High Detail , Sharp focus , dramatic , photorealistic painting art by midjourney and greg rutkowski ,
modelshoot style , (extremely detailed CG unity 8k wallpaper) , (front view:1.2) , full shot body photo of beautiful Ancient Chinese woman(young Liu Yifei :1.2) , (karate hand:1.2) , (hand hold bamboo flute) , (Kung fu master:1.2) , top of mountain , (sun shine through tree:1.3) , (sun shine on body:1.3) , (bamboo hat) , (hair through hat) , standing , (sexy revealing dress:1.3) , ( winter mountain:1.2) , ( windy storm snow:1.1) , ( strong wind :1.5) , ( strong wind :1.5) , NSFW , sexy model , (see through dress:1.2) , (show half breast:1.3) , pearl skin , fit shirt , (show half thigh :1.3) , (eyes contact:1.2) , angry , front hair bang , professional majestic oil painting by Ed Blinkey , Atey Ghailan , Studio Ghibli , by Jeremy Mann , Greg Manchess , Antonio Moro , trending on ArtStation , trending on CGSociety , Intricate , High Detail , Sharp focus , dramatic , photorealistic painting art by midjourney and greg rutkowski ,
# Fonction pour créer une sphère pour la tête def create_head(): bpy.ops.mesh.primitive_uv_sphere_add(radius=1 , location=(0 , 0 , 2)) head = bpy.context.active_object head.name = "Head" bpy.ops.object.shade_smooth() # Fonction pour créer des cylindres pour les bras et les jambes def create_limb(name , radius , height , location): bpy.ops.mesh.primitive_cylinder_add(radius=radius , depth=height , location=location) limb = bpy.context.active_object limb.name = name bpy.ops.object.shade_smooth() # Fonction pour créer un cône pour le chapeau def create_hat(): bpy.ops.mesh.primitive_cone_add(radius1=1 , radius2=0 , depth=2 , location=(0 , 0 , 3.5)) hat = bpy.context.active_object hat.name = "Hat" bpy.ops.object.shade_smooth() # Fonction pour créer une sphère pour les mains def create_hands(): bpy.ops.mesh.primitive_uv_sphere_add(radius=0.5 , location=(1.5 , 0 , 1)) hand1 = bpy.context.active_object hand1.name = "Hand1" bpy.ops.object.shade_smooth() bpy.ops.mesh.primitive_uv_sphere_add(radius=0.5 , location=(-1.5 , 0 , 1)) hand2 = bpy.context.active_object hand2.name = "Hand2" bpy.ops.object.shade_smooth() # Fonction pour créer des cubes pour le torse et les pieds def create_body(): bpy.ops.mesh.primitive_cube_add(size=2 , location=(0 , 0 , 0.5)) body = bpy.context.active_object body.name = "Body" bpy.ops.object.shade_smooth() def create_feet(): bpy.ops.mesh.primitive_cube_add(size=1 , location=(1 , 0 , -1)) foot1 = bpy.context.active_object foot1.name = "Foot1" bpy.ops.object.shade_smooth() bpy.ops.mesh.primitive_cube_add(size=1 , location=(-1 , 0 , -1)) foot2 = bpy.context.active_object foot2.name = "Foot2" bpy.ops.object.shade_smooth() # Appel des fonctions pour créer le personnage create_head() create_limb("RightArm" , 0.2 , 2 , (1.5 , 0 , 1)) create_limb("LeftArm" , 0.2 , 2 , (-1.5 , 0 , 1)) create_limb("RightLeg" , 0.3 , 2 , (0.5 , 0 , -1)) create_limb("LeftLeg" , 0.3 , 2 , (-0.5 , 0 , -1)) create_hat() create_hands() create_body() create_feet() ,
import bpy # Fonction pour créer une sphère pour la tête def create_head(): bpy.ops.mesh.primitive_uv_sphere_add(radius=1 , location=(0 , 0 , 2)) head = bpy.context.active_object head.name = "Head" bpy.ops.object.shade_smooth() # Fonction pour créer des cylindres pour les bras et les jambes def create_limb(name , radius , height , location): bpy.ops.mesh.primitive_cylinder_add(radius=radius , depth=height , location=location) limb = bpy.context.active_object limb.name = name bpy.ops.object.shade_smooth() # Fonction pour créer un cône pour le chapeau def create_hat(): bpy.ops.mesh.primitive_cone_add(radius1=1 , radius2=0 , depth=2 , location=(0 , 0 , 3.5)) hat = bpy.context.active_object hat.name = "Hat" bpy.ops.object.shade_smooth() # Fonction pour créer une sphère pour les mains def create_hands(): bpy.ops.mesh.primitive_uv_sphere_add(radius=0.5 , location=(1.5 , 0 , 1)) hand1 = bpy.context.active_object hand1.name = "Hand1" bpy.ops.object.shade_smooth() bpy.ops.mesh.primitive_uv_sphere_add(radius=0.5 , location=(-1.5 , 0 , 1)) hand2 = bpy.context.active_object hand2.name = "Hand2" bpy.ops.object.shade_smooth() # Fonction pour créer des cubes pour le torse et les pieds def create_body(): bpy.ops.mesh.primitive_cube_add(size=2 , location=(0 , 0 , 0.5)) body = bpy.context.active_object body.name = "Body" bpy.ops.object.shade_smooth() def create_feet(): bpy.ops.mesh.primitive_cube_add(size=1 , location=(1 , 0 , -1)) foot1 = bpy.context.active_object foot1.name = "Foot1" bpy.ops.object.shade_smooth() bpy.ops.mesh.primitive_cube_add(size=1 , location=(-1 , 0 , -1)) foot2 = bpy.context.active_object foot2.name = "Foot2" bpy.ops.object.shade_smooth() # Appel des fonctions pour créer le personnage create_head() create_limb("RightArm" , 0.2 , 2 , (1.5 , 0 , 1)) create_limb("LeftArm" , 0.2 , 2 , (-1.5 , 0 , 1)) create_limb("RightLeg" , 0.3 , 2 , (0.5 , 0 , -1)) create_limb("LeftLeg" , 0.3 , 2 , (-0.5 , 0 , -1)) create_hat() create_hands() create_body() create_feet() ,
import bpy # Fonction pour créer une sphère pour la tête def create_head(): bpy.ops.mesh.primitive_uv_sphere_add(radius=1 , location=(0 , 0 , 2)) head = bpy.context.active_object head.name = "Head" bpy.ops.object.shade_smooth() # Fonction pour créer des cylindres pour les bras et les jambes def create_limb(name , radius , height , location): bpy.ops.mesh.primitive_cylinder_add(radius=radius , depth=height , location=location) limb = bpy.context.active_object limb.name = name bpy.ops.object.shade_smooth() # Fonction pour créer un cône pour le chapeau def create_hat(): bpy.ops.mesh.primitive_cone_add(radius1=1 , radius2=0 , depth=2 , location=(0 , 0 , 3.5)) hat = bpy.context.active_object hat.name = "Hat" bpy.ops.object.shade_smooth() # Fonction pour créer une sphère pour les mains def create_hands(): bpy.ops.mesh.primitive_uv_sphere_add(radius=0.5 , location=(1.5 , 0 , 1)) hand1 = bpy.context.active_object hand1.name = "Hand1" bpy.ops.object.shade_smooth() bpy.ops.mesh.primitive_uv_sphere_add(radius=0.5 , location=(-1.5 , 0 , 1)) hand2 = bpy.context.active_object hand2.name = "Hand2" bpy.ops.object.shade_smooth() # Fonction pour créer des cubes pour le torse et les pieds def create_body(): bpy.ops.mesh.primitive_cube_add(size=2 , location=(0 , 0 , 0.5)) body = bpy.context.active_object body.name = "Body" bpy.ops.object.shade_smooth() def create_feet(): bpy.ops.mesh.primitive_cube_add(size=1 , location=(1 , 0 , -1)) foot1 = bpy.context.active_object foot1.name = "Foot1" bpy.ops.object.shade_smooth() bpy.ops.mesh.primitive_cube_add(size=1 , location=(-1 , 0 , -1)) foot2 = bpy.context.active_object foot2.name = "Foot2" bpy.ops.object.shade_smooth() # Appel des fonctions pour créer le personnage create_head() create_limb("RightArm" , 0.2 , 2 , (1.5 , 0 , 1)) create_limb("LeftArm" , 0.2 , 2 , (-1.5 , 0 , 1)) create_limb("RightLeg" , 0.3 , 2 , (0.5 , 0 , -1)) create_limb("LeftLeg" , 0.3 , 2 , (-0.5 , 0 , -1)) create_hat() create_hands() create_body() create_feet() ,
full body portrait photograph of Madison Beer as Pocahontas , young beautiful native american woman , perfect symmetrical face , feather jewelry , traditional handmade dress , armed female hunter warrior , (((wild west))) environment , Utah landscape , ultra realistic , concept art , elegant , ((intricate)) , ((highly detailed)) , depth of field , ((professionally color graded)) , 8k , art by artgerm and greg rutkowski and alphonse mucha , 4k , clean , realistic face , realistic eyes , highest quality , realistic hands , trending on artstation , masterpiece , NSFW , five fingers ,
Create an ultra-detailed 3D render of Baby Venom in a Pixar-style. He is a small , chubby , and adorable version of Venom with a glossy , inky black body and large expressive white eyes full of playful mischief. His sharp-toothed grin is slightly exaggerated but remains cute rather than scary. His tiny body has smooth , rounded features , and his limbs are short and slightly exaggerated for a baby-like appearance. Subtle symbiote tendrils swirl gently around him , giving him a dynamic and energetic presence. The lighting is soft and cinematic , with gentle reflections on his shiny symbiote skin , enhancing the high-quality Pixar-style realism. The background is moody but colorful , hinting at an exciting and mysterious world , with soft glows and dynamic lighting that make Baby Venom pop off the scene. The overall vibe should be a mix of adorable and mischievous , capturing the playful yet powerful nature of this tiny symbiote hero ,
A beautiful young European woman with fair skin , delicate features , and soft wavy blonde hair , captured in a photorealistic style. Her striking blue eyes and serene expression give her a confident yet natural charm. She wears a simple , stylish outfit such as a light-colored blouse or a casual jacket. The lighting is soft and natural , emphasizing her flawless complexion. The focus is on her face and upper body , with a gentle , blurred background that draws attention to her facial features and the natural flow of her hair. The image is highly detailed , with a warm , inviting atmosphere. ,
(masterpiece , cyberpunk , hyper detailed , best quality) , woman , solo , tanned skin , toned body , calm demeanor , motorcycle , motorcycle helmet , vibrant ginger hair under motorcycle helmet , detailed clothing , finely detailed , beautiful detailed shading , beautifully detailed background , sharp focus , cinematic lighting , modern photography , micro detail , macro detailed shading , smooth soft skin , glowing light , detailed background , dynamic angle , ,
modelshoot style , (extremely detailed CG unity 8k wallpaper) , (front view:1.2) , full shot body photo of beautiful Ancient Chinese woman(young Liu Yifei :1.2) , (karate hand:1.2) , (hand hold bamboo flute) , (Kung fu master:1.2) , top of mountain , (sun shine through tree:1.3) , (sun shine on body:1.3) , (bamboo hat) , (hair through hat) , standing , (sexy revealing dress:1.3) , ( winter mountain:1.2) , ( windy storm snow:1.1) , ( strong wind :1.5) , ( strong wind :1.5) , NSFW , sexy model , (see through dress:1.2) , (show half breast:1.3) , pearl skin , fit shirt , (show half thigh :1.3) , (eyes contact:1.2) , angry , front hair bang , professional majestic oil painting by Ed Blinkey , Atey Ghailan , Studio Ghibli , by Jeremy Mann , Greg Manchess , Antonio Moro , trending on ArtStation , trending on CGSociety , Intricate , High Detail , Sharp focus , dramatic , photorealistic painting art by midjourney and greg rutkowski ,
A hyper-realistic 3D Blender-rendered character portrait , ultra-detailed with stunning lighting and shadow interplay. A confident woman with long , flowing wavy brown hair , deep expressive eyes , naturally arched eyebrows , a straight nose , and smaller lips , closely resembling the girl in the reference images. Fair skin with warm undertones. She wears a high-necked , long-sleeve black fitted top. Her earrings are small ‘X’ markers , subtly referencing stock market indicators. She stands with her arms crossed , exuding intelligence and confidence. The lighting is cinematic , golden-hour inspired , with realistic depth , soft reflections , and physically accurate shadows. The background is a clean white environment , emphasizing the character with a polished and professional composition. High-poly rendering , ultra-crisp textures , ray-traced reflections , volumetric lighting , and physically based materials , achieving a lifelike blend of realism and stylization. Upper body shot , centered with white margins for a balanced composition. 8K resolution , HDR color gradiNg ,
In South Korea , beauty standards are influenced by traditional ideals , K-pop culture , and modern aesthetics. The general perception of beauty is often associated with youthful , delicate , and refined features. Here are some key characteristics:1. Facial FeaturesV-Shaped Jawline – A slim and well-defined jawline is considered attractive. Many people undergo cosmetic procedures to achieve this look.Big , Bright Eyes – Large eyes with double eyelids are preferred , often enhanced with makeup , eyelid surgery , or contact lenses.Small and High Nose – A straight or slightly upturned nose with a defined bridge is desirable.Clear and Flawless Skin – Pale , smooth , and blemish-free skin is a major beauty standard , often associated with skincare routines and treatments.2. Body FeaturesSlim Figure – A slender body with a small waist and long legs is highly valued. The "S-line" (curvy yet slim) and "11-line abs" (visible vertical abdominal lines) are often seen as ideal.Height Preference – Taller women are generally considered more attractive , though petite figures are also appreciated.3. Makeup I'd like to see her in the dress. ,
In South Korea , beauty standards are influenced by traditional ideals , K-pop culture , and modern aesthetics. The general perception of beauty is often associated with youthful , delicate , and refined features. Here are some key characteristics: 1. Facial Features V-Shaped Jawline – A slim and well-defined jawline is considered attractive. Many people undergo cosmetic procedures to achieve this look. Big , Bright Eyes – Large eyes with double eyelids are preferred , often enhanced with makeup , eyelid surgery , or contact lenses. Small and High Nose – A straight or slightly upturned nose with a defined bridge is desirable. Clear and Flawless Skin – Pale , smooth , and blemish-free skin is a major beauty standard , often associated with skincare routines and treatments. 2. Body Features Slim Figure – A slender body with a small waist and long legs is highly valued. The "S-line" (curvy yet slim) and "11-line abs" (visible vertical abdominal lines) are often seen as ideal. Height Preference – Taller women are generally considered more attractive , though petite figures are also appreciated. 3. Makeup & Fashion Natural Makeup Look – A fresh and youthful "no-makeup" makeup style is common , emphasizing soft colors , dewy skin , and gradient lips. Trendy & Feminine Fashion – Korean beauty is often complemented by stylish and elegant clothing , with a focus on pastel colors and minimalistic designs. 4. Influence of K-pop & Media The popularity of K-pop idols and actresses has a strong influence on beauty trends. Celebrities such as IU , Suzy , and Jennie from BLACKPINK set the standard for modern beauty in Korea , leading many to adopt similar styles. While these beauty standards are widely recognized , there is a growing movement toward self-love and diversity , encouraging people to embrace their unique features. please make a short movie with this conditions , please. ,