Midjourney Inc
Midjourney Inc AI สร้างภาพ Text-to-Image Discord Prompt Engineering V6.1 Photorealistic Artistic David Holz San Francisco
| Plan | ราคา/เดือน | Fast Mode | Relax Mode | Concurrent Jobs |
|---|---|---|---|---|
| Basic | $10 | ~200 ภาพ | ไม่จำกัด | 3 |
| Standard | $30 | 15 ชม. | ไม่จำกัด | 3 |
| Pro | $60 | 30 ชม. | ไม่จำกัด | 12 + Stealth |
| Mega | $120 | 60 ชม. | ไม่จำกัด | 12 + Stealth |
Prompt Engineering
# === Midjourney Prompt Builder ===
from dataclasses import dataclass
@dataclass
class PromptTemplate:
category: str
subject: str
style: str
details: str
parameters: str
full_prompt: str
templates = [
PromptTemplate("Portrait Photography",
"a young woman with freckles",
"photorealistic editorial photography",
"golden hour sunlight, shallow depth of field, 85mm lens",
"--ar 2:3 --v 6.1 --q 2 --s 500",
"/imagine a young woman with freckles, photorealistic editorial photography, golden hour sunlight, shallow depth of field, 85mm lens --ar 2:3 --v 6.1 --q 2 --s 500"),
PromptTemplate("Landscape",
"misty mountain valley with a river",
"cinematic wide angle photography",
"dramatic lighting, fog, sunrise, autumn colors, 4K",
"--ar 16:9 --v 6.1 --q 2 --s 750",
"/imagine misty mountain valley with a river, cinematic wide angle photography, dramatic lighting, fog, sunrise, autumn colors --ar 16:9 --v 6.1 --q 2 --s 750"),
PromptTemplate("Product Design",
"minimalist wireless earbuds",
"product photography studio lighting",
"white background, soft shadows, premium materials, macro detail",
"--ar 1:1 --v 6.1 --q 2 --s 300",
"/imagine minimalist wireless earbuds, product photography studio lighting, white background, soft shadows, premium materials --ar 1:1 --v 6.1 --q 2 --s 300"),
PromptTemplate("Anime/Illustration",
"a cyberpunk samurai in neon city",
"anime illustration in the style of Studio Trigger",
"vibrant neon colors, rain, reflections, dynamic pose",
"--ar 2:3 --v 6.1 --s 800 --niji 6",
"/imagine a cyberpunk samurai in neon city, anime illustration, vibrant neon colors, rain, reflections, dynamic pose --ar 2:3 --niji 6 --s 800"),
PromptTemplate("Logo/Icon",
"a minimalist fox logo",
"flat vector design geometric",
"orange gradient, white background, clean lines, modern",
"--ar 1:1 --v 6.1 --s 200 --no photorealistic",
"/imagine a minimalist fox logo, flat vector design geometric, orange gradient, white background, clean lines --ar 1:1 --v 6.1 --s 200 --no photorealistic"),
]
print("=== Prompt Templates ===")
for t in templates:
print(f"\n [{t.category}]")
print(f" Subject: {t.subject}")
print(f" Style: {t.style}")
print(f" Details: {t.details}")
print(f" Params: {t.parameters}")
print(f" Full: {t.full_prompt}")
Parameters Guide
# === Midjourney Parameters ===
@dataclass
class Parameter:
param: str
values: str
effect: str
recommended: str
params = [
Parameter("--ar (Aspect Ratio)",
"1:1 2:3 3:2 4:3 16:9 9:16",
"อัตราส่วนภาพ กว้าง: สูง",
"Portrait 2:3 | Landscape 16:9 | Square 1:1"),
Parameter("--v (Version)",
"5.2 6.0 6.1",
"เวอร์ชันของ Model V6.1 ใหม่สุด สมจริงที่สุด",
"--v 6.1 สำหรับงานทั่วไป"),
Parameter("--q (Quality)",
"0.25 0.5 1 2",
"คุณภาพ ยิ่งสูงยิ่งละเอียด ใช้เวลามากขึ้น",
"--q 2 สำหรับงาน Final | --q 1 สำหรับ Draft"),
Parameter("--s (Stylize)",
"0-1000 (default 100)",
"ความ Artistic ยิ่งสูง AI ตีความมากขึ้น",
"Photo 50-250 | Art 500-800 | Abstract 800+"),
Parameter("--c (Chaos)",
"0-100 (default 0)",
"ความหลากหลายของ 4 ภาพ ยิ่งสูง ยิ่งต่างกัน",
"0 สำหรับ Consistent | 50+ สำหรับ Explore"),
Parameter("--no (Negative)",
"คำที่ไม่ต้องการ",
"ลบสิ่งที่ไม่ต้องการออกจากภาพ",
"--no text watermark people background"),
Parameter("--seed (Seed)",
"0-4294967295",
"ทำซ้ำภาพเดิม (เปลี่ยน Prompt ภาพคล้ายกัน)",
"จด Seed ของภาพที่ชอบ ใช้ Iterate"),
]
print("=== Parameters Guide ===")
for p in params:
print(f" [{p.param}] Values: {p.values}")
print(f" Effect: {p.effect}")
print(f" Recommended: {p.recommended}")
Use Cases
# === Midjourney Use Cases ===
@dataclass
class UseCase:
use_case: str
prompt_style: str
parameters: str
plan_needed: str
use_cases = [
UseCase("Social Media Content",
"Photorealistic Lifestyle Product Flat Lay",
"--ar 1:1 (IG) --ar 9:16 (Story) --q 1",
"Standard $30 (ใช้ประจำ 15hr Fast)"),
UseCase("Blog/Article Illustration",
"Editorial Conceptual Metaphorical",
"--ar 16:9 --q 1 --s 500",
"Basic $10 (200 ภาพพอสำหรับ Blog)"),
UseCase("Logo/Brand Design",
"Flat Vector Geometric Minimalist",
"--ar 1:1 --s 200 --no photorealistic",
"Pro $60 (Stealth Mode Commercial)"),
UseCase("Game Art/Concept",
"Fantasy Sci-fi Cyberpunk Environment Character",
"--ar 16:9 --q 2 --s 750 --c 50",
"Standard-Pro (ใช้เยอะ ต้อง Fast)"),
UseCase("Architecture Visualization",
"Photorealistic Interior Exterior Modern",
"--ar 16:9 --q 2 --s 300 --v 6.1",
"Pro $60 (High Quality Commercial)"),
]
print("=== Use Cases ===")
for u in use_cases:
print(f" [{u.use_case}]")
print(f" Style: {u.prompt_style}")
print(f" Params: {u.parameters}")
print(f" Plan: {u.plan_needed}")
เคล็ดลับ
- Specific: ใช้คำเฉพาะ ไม่ใช้ beautiful nice (ใช้ luminous ethereal แทน)
- Style Reference: อ้างอิง Artist Style เช่น in the style of Ghibli
- Seed: จด Seed ของภาพที่ชอบ ใช้ Iterate เปลี่ยน Prompt
- Relax: ใช้ Relax Mode สำหรับ Draft ประหยัด Fast Hours
- Weight: ใช้ :: Weight เช่น cat::2 background::0.5 เน้นส่วนสำคัญ
Midjourney Inc คืออะไร
AI สร้างภาพ Text-to-Image David Holz Discord V6.1 Photorealistic Artistic DALL-E Stable Diffusion San Francisco 2022
วิธีใช้ทำอย่างไร
สมัคร midjourney.com Discord /imagine prompt U1-U4 Upscale V1-V4 Variation Parameters --ar --v --q --s Web App Gallery
Prompt Engineering เขียนอย่างไร
Subject Style Details Lighting Camera Parameters Specific Artist Reference Weight :: Seed --no Negative Iterate Variation
แผนราคาเท่าไหร่
Basic $10 Standard $30 Pro $60 Mega $120 Fast Mode Relax Mode Stealth Concurrent Jobs Annual 20% Discount Commercial
สรุป
Midjourney Inc AI สร้างภาพ Discord Prompt Engineering V6.1 Parameters --ar --v --q --s Basic Standard Pro Mega Commercial
