AI for Artists

This course is written for people who make things — illustrators, designers, photographers, art directors, animators, musicians, hobbyists. It assumes you want to *use* these tools well, not build them. There is no maths here, no code, and nothing you need to install.

Everything is organised around four questions: what actually happens when you type a description, how to write descriptions that get you what you pictured, which tool to reach for on a given job, and what you're allowed to do with the result once you have it.

What you'll be able to do by the end

  • Explain, in plain language, what the machine is doing between your prompt and your picture — and use that to debug bad results instead of guessing
  • Write prompts in whichever of the two prompting dialects your chosen tool speaks
  • Pick the right tool for a job in under a minute, and know roughly what it will cost you
  • Steer a result with reference images, masks and edits rather than rerolling the dice
  • Answer a client asking "do I own this, and can we ship it?"

What is deliberately not here

Model architectures, U-Nets, latent spaces, LoRA training, ComfyUI graphs, VRAM budgets and local installation. None of that makes you a better artist, and all of it is a distraction while you're learning to see.

If you later want it — and some of you will — it lives in Deep Learning › Diffusion Models, where it belongs alongside the rest of the theory.

One thing to hold onto before you start

These tools do not understand your idea. They have seen an enormous number of images with words attached, and they are very good at producing something statistically consistent with the words you gave them. Every technique in this course is really the same technique: give it words and references that narrow down what it could plausibly produce until the only plausible answers are the ones you'd be happy with.

Almost every frustration artists have with these tools — the ignored instruction, the sixth finger, the four petals when you asked for five, the two wildly different images from the same prompt — comes from one thing: not knowing what the machine is doing with your sentence.

So before any prompting advice, here is the whole journey your description takes. It is four steps, and none of them require any technical background.


  you type a description

        |

  1. a language model reads it       -> turns words into meaning

        |

  2. the meaning becomes a target    -> a 'this is what good looks like' signal

        |

  3. a painter starts from static    -> and refines toward that target, 20-50 times

        |

  4. the result is decoded to pixels -> your image

The first thing that touches your prompt is a language model. This is the part of the system people mean when they say "LLM," and it is worth understanding because it is the part you actually talk to.

What a language model is, for an artist

A language model is a program that has read a colossal amount of text and learned which words tend to go with which other words, in which contexts. That's genuinely it. From that one ability it gets a surprisingly deep working knowledge of what things mean — that cerulean is a blue, that chiaroscuro implies a hard light source and deep shadow, that a Dutch angle is a tilted camera, that Bauhaus and Art Nouveau are not the same century.

It is not looking anything up. It has no dictionary. It has a learned sense of how these words sit next to each other, and that turns out to be enough.

What it does with your prompt

It converts your sentence into a compact numerical summary of its meaning — not a list of your words, but a representation of what you were getting at. Two prompts that mean nearly the same thing land in nearly the same place; two that mean different things land far apart.

This is why "a decrepit seaside hotel" and "a run-down hotel by the sea" give you similar images, while changing one adjective from decrepit to opulent changes everything.

Two flavours you'll meet in the wild

  • A plain text encoder. Older and open-weight image tools use a relatively small model that just reads your words. It is literal. It does not reason, it does not fill gaps, and it does not ask what you meant. Give it a vague prompt and you get a vague image.
  • A full conversational model. Tools built on chat assistants (ChatGPT's image generation, Gemini's, Copilot's) run your request through a proper reasoning model first. It will expand "a cosy reading nook" into a paragraph of specifics before any painting starts. Convenient, but it means the model is making creative decisions on your behalf — which is why the same prompt twice can give you two quite different rooms.

Knowing which of these you're talking to is the single most useful thing you can know about a tool. It decides how you should write.

That numerical summary of your meaning now becomes a target — a standing instruction that will be consulted at every single step of the painting process.

The useful mental picture is an art director standing behind the painter, holding your brief, and at every stage saying "more like this, less like that."

The director does not paint. It only judges direction. And critically, it judges the whole picture at once against the whole brief at once — it does not tick off your requirements one by one.

That single fact explains a lot of behaviour you have probably found maddening, and we'll come back to it two sections from now.

How hard the director pushes is usually a setting you control. Different tools call it different things — guidance, prompt strength, stylize, CFG, creativity — but it is always the same dial:

  • Push too gently → the model wanders off and makes something pretty that isn't what you asked for
  • Push too hard → the model over-corrects: scorched colours, crunchy contrast, stiff and literal compositions
  • The sweet spot is usually near the default. When results look burnt or over-saturated, this dial is the first thing to turn down, not your prompt.

Here is the part that surprises people. The model does not draw your image. It does not start with a blank canvas and add a horizon, then a boat, then a sky. It starts with a rectangle of pure random static — visual noise, like an untuned television — and repeatedly *removes* the parts that don't belong.

The sculpture analogy is the accurate one. The model is not painting; it is carving. It looks at the noise and asks "if this static were a slightly blurry version of the image described in the brief, what would I need to take away?" It removes a bit. It looks again. It removes a bit more.

Do that twenty to fifty times, checking against your brief every time, and a coherent image emerges from the static. Early steps decide the big things — composition, masses, where the light comes from. Late steps decide texture, edges, fine detail.

Why this is worth knowing:

  • The composition is locked in early. By roughly a quarter of the way through, the layout is decided. This is why prompt words about composition and framing carry more weight than words about small details — and why adding "tiny brass buttons" rarely gets you tiny brass buttons.
  • More steps is not more quality. Past a point the image stops changing meaningfully and you're just spending money. Defaults are almost always fine; doubling the steps is not a fix for a weak prompt.
  • The starting static is a real ingredient. That random rectangle is generated from a number called the seed. Same prompt + same seed + same settings = the same image, every time. Same prompt + different seed = a genuinely different image. When you get something almost right, locking the seed and changing one word is how you make a controlled adjustment instead of rolling the dice again.

For speed, most of that carving happens on a small, compressed sketch of the image rather than on the full-resolution picture — think of it as working on a thumbnail. A final decoding step expands that sketch into the actual pixels you download.

You never see this step, but it leaves fingerprints, and recognising them saves you from chasing prompt fixes for problems your prompt didn't cause:

  • Small faces and hands in wide shots come out mushy. In the compressed sketch a distant face is only a few marks wide; there simply wasn't room for the detail. The fix is composition or a face-aware upscale — never a longer prompt.
  • Fine repeating patterns wobble. Chain-link, houndstooth, brickwork, crowd scenes, distant text.
  • This is the natural resolution ceiling. Every tool has a size it was built for. Ask for something far larger in one shot and you get duplicated limbs and repeated horizons. Generate at the native size, then upscale.

Now the payoff. Nearly every classic complaint about AI image tools is a direct, predictable consequence of the four steps above — which means each has a real fix rather than a superstition.

What you seeWhy it happensWhat actually fixes it
"No hats" produced a hatThe brief is matched as a whole, not read as an instruction list. Hat is in the brief, so hattishness scores well. The director never learned the word "no".Describe the positive: bare-headed, windswept hair. Or use the tool's dedicated negative-prompt field, which is a separate mechanism from your sentence.
You asked for five, got fourNothing in the process counts. It matches the look of a described scene, and five petals and four petals look almost identical to a whole-image judgement.Ask for small numbers, or arrangements it has seen often (a pair, a row of three). For exact counts, generate then edit.
Hands and teethHands appear in a million poses, from a million angles, half-occluded. There is no single "look of a hand" to converge on — unlike a face, which is always roughly the same arrangement.Genuinely much better in 2026 models. Otherwise: crop them out, or inpaint them afterwards.
It merged two subjectsThe brief is one summary of one meaning. "A woman in a red coat and a man in a blue coat" is, to that summary, largely people-in-coloured-coats. Attributes bleed.Separate them in space (on the left… on the right…), or generate separately and compose. Some tools support per-region prompting.
The style words did nothingA style name only works if that style was strongly represented, and named that way, in what the model learned. Obscure or very recent artists often simply aren't in there.Describe the style's mechanics instead of naming it: the medium, the mark-making, the palette, the light, the era. This works on every model.
Same prompt, wildly different imagesDifferent starting static — and, on chat-based tools, a reasoning model reinterpreting your request afresh each time.Lock the seed. On chat tools, be specific enough that there is nothing left to reinterpret.
Text came out as gibberishThe model carves shapes, and letterforms are shapes that have to be exactly right to read as language.Use a model built for it (Ideogram, Qwen-Image, GPT Image, Recraft), keep the text short, and put it in quotation marks.

The general principle: when a result is wrong, ask which of the four steps failed? Wrong subject or wrong meaning is step 1 — rewrite. Right subject but ignored or over-cooked is step 2 — adjust guidance. Wrong composition is step 3 — reroll or change the seed. Mushy detail is step 4 — recompose or upscale. That single question will save you more time than any prompt template.

Once you have the four steps, the other media are small variations rather than new subjects. You do not need to learn them from scratch.

  • Video does the same carving, but on a stack of frames at once rather than one picture — which is why a model can keep a subject consistent as it moves. It is also why video is expensive, why clips are short, and why the thing to describe is motion and camera ("slow push in", "she turns to look over her shoulder") rather than a static scene. A described scene with no described motion gets you a slow drift.
  • 3D mostly works by generating a subject from many viewpoints and reconciling them into a solid shape with a surface. That reconciling stage is why AI 3D output needs cleanup: the geometry is plausible from outside but rarely tidy underneath.
  • Music and sound carve a picture of the sound over time — effectively a spectrogram — then convert it to audio. Same process, different canvas. Which is why music tools respond to the same kind of description you'd give an image: genre, instrumentation, mood, tempo, production era.

The practical upshot: everything you learn about prompting images transfers. Be concrete, describe what can be perceived, put the important thing first, and change one variable at a time.

Prompting is not a secret language and there is no magic word. It is art direction in writing: saying enough that a competent stranger could produce roughly what you pictured, and no more.

The good news is that the fundamentals are the same across every tool and have been for years. Only the dialect changes.

Nearly every prompt that works contains the same six ingredients. Not every prompt needs all six — but when a result feels generic, it is almost always because one of these was left for the model to decide.

  1. Subject — what it is, specifically. A heron, not a bird.
  2. Action or state — what it is doing. Mid-stride through shallow water, not just standing there.
  3. Setting — where, and when. A tidal estuary at first light.
  4. Medium or style — what kind of image this is. 35mm photograph, gouache illustration, charcoal study.
  5. Light — the single highest-leverage word group in the whole prompt. Low backlight, mist catching the sun.
  6. Framing — where the camera is. Low angle, long lens, subject small in frame.

Watch it build:

  • a heron → a stock bird on a white background
  • a heron mid-stride through shallow water → now it's a scene
  • …in a tidal estuary at first light → now it has a world
  • …35mm photograph → now it has a medium, and stops looking like a render
  • …low backlight, mist catching the sun → now it has mood, and this is where most of the quality arrives
  • …low angle, long lens, subject small in frame → now it has a point of view, and it looks authored

Put the subject first. Most models weight the front of a prompt more heavily. Whatever the image is about should be in the first handful of words.

Cut the adjectives that describe quality rather than content. Beautiful, stunning, masterpiece, 8k, highly detailed, award-winning were load-bearing in 2022 and are mostly noise in 2026 models — they crowd out the words that are actually doing work. If a word doesn't change what a viewer would see, delete it.

There are exactly two ways to write a prompt, and using the wrong one for your tool is the most common reason a good prompt underperforms. Find out which dialect your tool speaks before anything else.

Dialect 1 — Natural sentences. Write as you would brief a person. Used by GPT Image, Gemini/Nano Banana, Midjourney, Ideogram, FLUX, Runway, and essentially every tool built on a conversational model.

A low-angle 35mm photograph of a heron mid-stride through a shallow tidal estuary at first light, low backlight with mist catching the sun, the bird small in a wide frame.

Full sentences genuinely help here — the language model uses grammar to work out what modifies what. "A red car and a blue house" survives as a sentence; as tags it becomes a colour soup.

Dialect 2 — Comma-separated tags. Short descriptors, most important first. Used by Stable Diffusion and its descendants, and by most open-weight and anime-focused models.

heron, mid-stride, shallow estuary water, first light, backlit, mist, 35mm photo, low angle, wide shot

These models read more literally and weight roughly by position, so ordering is your emphasis. Many also accept explicit weights and a separate negative prompt field for things to avoid — which, unlike writing "no X" in your sentence, actually works.

A quick way to tell which you're in: if the tool has a chat box and answers you back, it's dialect 1. If it has a second text box labelled negative prompt, it's dialect 2. If in doubt, write a natural sentence — every modern model tolerates it, while tag soup confuses the conversational ones.

Platform-specific extras are worth ten minutes of reading. Aspect ratio, stylisation, reference weighting and version flags are all per-platform, they change every few months, and every vendor documents them properly. Read your tool's own guide once; skip anyone's list of "magic prompt words".

The skill underneath prompting is not writing. It is looking — being able to name what makes an image you admire work. Artists who develop this vocabulary get better results from every tool, permanently, because it is the vocabulary the models were trained on.

Light — the highest-leverage category, and the one beginners underuse most.

  • Direction: backlit, side-lit, top light, underlit
  • Quality: hard shadows, soft diffused light, overcast, dappled
  • Time and source: golden hour, blue hour, noon sun, candlelight, sodium streetlight, screen glow
  • Contrast: high-key (bright, low contrast), low-key (dark, dominated by shadow), chiaroscuro

Camera and framing — this is how you control composition.

  • Shot size: extreme close-up, portrait, medium shot, wide establishing shot
  • Angle: eye level, low angle, high angle, overhead, Dutch angle
  • Lens behaviour: wide angle (expansive, distorted edges), long lens (compressed, shallow focus), macro, fisheye
  • Depth: shallow depth of field, everything in focus, foreground framing

Colour — describe a relationship, not just a hue.

  • Muted earth tones, high-saturation neon, monochrome with a single red accent
  • Complementary orange and teal, analogous blues and greens, desaturated with warm highlights

Surface and material — what makes an image feel touchable.

  • Weathered, polished, matte, translucent, wet, dusty, hand-worn
  • For illustration: visible brushwork, heavy grain, clean vector edges, rough ink line

A practical drill. Take three images you wish you had made. For each, write six lines: subject, light, colour, framing, medium, and mood. Do that for a week and your prompting improves more than any template will manage. You are building the vocabulary; the tools already speak it.

Style is where most artists start and where most get stuck, because the obvious move — naming an artist — is both the least reliable technique and the most ethically loaded one.

Describe the mechanics instead of naming the style. This is the technique that works on every model, never goes stale, and gives you something nobody else has. Instead of in the style of [artist], specify what actually produces that look:

  • Medium and tool: gouache on toned paper, ballpoint pen, linocut, 35mm colour negative, wet-plate collodion
  • Mark-making: visible brush texture, hard-edged flat colour, cross-hatching, heavy impasto, airbrushed gradients
  • Palette and light, as in the previous section
  • Era and context: 1970s sci-fi paperback cover, mid-century travel poster, 1990s film still, Edo-period woodblock

Four such phrases will out-perform an artist's name almost every time, and the result will be yours.

Where naming still helps: movements and genres (Art Nouveau, Brutalist, Ukiyo-e, Bauhaus, cyberpunk), which are broad, well-documented and not attached to a living person's livelihood.

Where it fails: individual living artists — often absent from the model, unpredictable when present, restricted or blocked on several major platforms, and a genuine ethical problem when the artist is alive and working. Most agencies and clients now have a policy on this; if you work commercially, ask before you use it.

Style references beat style words. Nearly every 2026 tool accepts an image as a style reference, and passing your own work, your own photographs, or your own mood board is more precise than any sentence, more defensible than an artist's name, and yields a look that's consistently yours. If you take one thing from this section: build a reference folder before you build a prompt library.

The single biggest difference between people who get great results and people who don't is not prompt quality. It is that one group changes one thing at a time, and the other group rewrites the whole prompt after every disappointing result and learns nothing.

A working loop:

  1. Start short. Subject, setting, medium. Four or five generations. You are looking for a direction, not a final image.
  2. Pick the closest one and lock its seed. Now you have a stable base and every change you make is legible.
  3. Change one thing. The light. Then the framing. Then the palette. Note what each word actually did — this is how you build real intuition rather than folklore.
  4. Switch from generating to editing. Once composition is right, stop rerolling. Inpaint the problem areas, extend the canvas, adjust by conversation. Rerolling a good image to fix a small flaw usually loses more than it gains.
  5. Finish outside the tool. Upscale, then colour-grade, crop and retouch in whatever you normally use. Almost no professional output ships straight from the generator.

Habits worth having:

  • Keep a prompt journal. Prompt, seed, tool, settings, and one line on what worked. This is also your evidence of authorship if you ever need to prove it — see the section on copyright.
  • A/B a single variable. Two generations differing by one phrase teach you more than twenty random ones.
  • Reroll before you rewrite. If a prompt gives one good result in five, the prompt is fine and you were unlucky. Judge a prompt on four generations, not one.
  • Know when to stop prompting. Some things are faster to fix in Photoshop in thirty seconds than to coax out of a model in thirty minutes. Prompting is a tool in your workflow, not the whole of it.

There is no best tool, and anyone who tells you otherwise is selling something. There are tools that are clearly better at specific jobs, and the useful skill is matching the job to the tool in under a minute.

Everything in this section runs in a browser. You do not need a powerful computer, a graphics card, or an installation. If you have a laptop and a card on file, you can use all of it today.

Pick by the job, not by the brand:

If the job is…Reach for
A finished, realistic image you'll actually publishGPT Image, FLUX.2
Art direction, mood, cinematic concept workMidjourney
Anything with readable text in it — posters, packaging, logosIdeogram, Qwen-Image, Recraft
Brand and design assets, vector, consistent style setsRecraft
Editing an existing image by describing the changeGemini / Nano Banana Pro, GPT Image
Cleared-for-commercial-use assets inside Creative CloudAdobe Firefly
Cinematic video with soundVeo, Sora
Lots of video on a budgetKling, Hailuo
Precise camera control and video editingRunway
Game-ready or print-ready 3DMeshy, Tripo
Music you can legally releaseElevenLabs Music, Soundraw
Trying many models without many subscriptionsOpenArt, Freepik, Krea

How the money works, briefly. Almost everything is credits or a monthly tier. A still image is cents; a few seconds of video is dollars — video is roughly two orders of magnitude more expensive than stills, which is why you should storyboard with images first and only generate video once you know the shot.

Before you subscribe to anything, spend a week on an aggregator (below) where a single subscription gets you most of the major models. You will discover which two you actually reach for, and you can then subscribe directly to those.

A word on how fast this moves. Everything named on this page will have shifted within a year — models get versioned, renamed, deprecated and occasionally shut down mid-project. Treat these as categories with current examples, not a shopping list. What doesn't change is the six-part recipe, the two dialects, and knowing what the machine is doing.

The 2026 image landscape has settled into clear specialisms. The blunt version: GPT Image for realism and reliable prompt-following, Midjourney for art direction, FLUX when you want open weights or licensing flexibility, Ideogram or Qwen-Image the moment there is text in the picture, Recraft for brand and design systems, Firefly when the client needs indemnified assets.

GPT Image (OpenAI)

GPT Image (OpenAI)

The strongest all-round default in 2026 and the top of most blind-preference leaderboards. Excellent realism, unusually literal prompt-following, solid text rendering, and conversational multi-turn editing — generate, then say 'make the sofa navy, pull back a little' and it does. If you only learn one tool, this is the safe choice.

Midjourney

Midjourney

Still the undisputed king of look. Midjourney has an opinion about beauty and applies it whether you asked or not — which is exactly what you want for mood boards, concept art and cinematic stills, and exactly what you don't want when you need something specific. V8 is several times faster than earlier versions with much better prompt adherence and text. Reach for it when the brief is 'make it feel like…'.

FLUX (Black Forest Labs)

FLUX (Black Forest Labs)

The realism and texture specialist, and the most important open-weight family. Excellent skin, fabric, materials and light, with strong world knowledge. Crucially, the smaller FLUX releases carry permissive licences, so it is the practical choice when you need commercial use without negotiating a separate agreement — or when you want to run your own.

Google Nano Banana Pro / Gemini Image

Google Nano Banana Pro / Gemini Image

The fastest good option, and the best conversational editor. Generates at 4K in seconds and excels at iterative, chat-driven changes to an existing image — replace this, extend that, keep everything else identical. Built into Gemini, so it inherits real world knowledge and can reason about a reference image before editing it.

Ideogram

Ideogram

The typography specialist. Rendering readable, well-kerned, correctly-spelled text inside a generated image is a genuinely distinct hard problem, and Ideogram was built for it. The default choice for posters, signage, book covers, packaging mock-ups and logo exploration.

Recraft

The designer's tool rather than the artist's. Generates true vector output (SVG) alongside raster, holds a defined brand style across a whole set of assets, and handles icons, mockups and layouts with text. If your deliverable is a design system rather than a picture, start here.

Qwen-Image (Alibaba)

Open-weight, and currently the strongest open model for text rendering — including non-Latin scripts, where most Western models fail completely. Worth knowing about if you work in Chinese, Japanese, Korean or Arabic, or if you need text accuracy without a subscription.

Adobe Firefly

Adobe Firefly

The commercially-safe option. Trained on licensed and public-domain content, sold with IP indemnification for enterprise customers, and built directly into Photoshop, Illustrator and Express. Rarely the most impressive output — reliably the easiest one to defend to a client's legal team, and the one that fits an existing Creative Cloud workflow.

Leonardo AI

Leonardo AI

Strong for games and production art, with tools for consistent characters, tileable textures, sprite sheets and asset sets, plus custom style training on your own images. Good when you need fifty things that look like they came from the same world.

Video is where the biggest year-on-year jump has happened, and also where costs bite. In 2026 no single model runs away with it: Sora, Veo and Kling sit at roughly the same quality tier for cinematic shots, and each owns a different corner of the workflow.

Before you generate a single clip, three things will save you a lot of money:

  • Storyboard with images first. Stills cost cents, video costs dollars. Get the shot right as a frame, then animate it.
  • Start from an image, not from text. Nearly every tool accepts a starting frame, and image-to-video gives you far more control over composition than describing it again in words.
  • Describe motion and camera, not the scene. "Slow dolly in, she lowers the cup and looks off-frame left." A scene description with no motion gets you a slow ambient drift.
Google Veo

Google Veo

Generates native synchronised audio — dialogue, ambience and effects — alongside the picture, which no competitor matches as cleanly. Very strong photorealism and physical plausibility. The default for realistic marketing and product work where a silent clip isn't a deliverable, and priced aggressively in its fast mode.

Sora (OpenAI)

Sora (OpenAI)

The strongest physical-world simulation of the group — objects have weight, water behaves, things occlude correctly — plus longer coherent shots and strong narrative concepting. The premium option, priced per second, and the one to reach for when the shot has to feel real rather than merely look good.

Kling

The value leader, and genuinely excellent at high-motion scenes and multi-shot sequences that keep the same subject across cuts. Roughly a fraction of Sora's per-second cost, which changes what you can afford to iterate on. If you need volume, start here.

Runway

Runway

The filmmaker's toolkit rather than a pure generator. Best-in-class explicit camera control, plus a real editing suite around it — inpainting into video, motion brush, style transfer across frames, and frame-accurate control. The choice when you know exactly what the camera should do.

Luma Dream Machine

Luma Dream Machine

Fast, fluid, natural motion with a strong sense of three-dimensional space, and a generous free tier. A good place to learn video generation without spending much, and strong at dreamlike, flowing camera work.

Pika

Pika

Playful and accessible, with genuinely novel effects and strong character animation. Less of a cinematic tool, more of a creative one — good for social content, stylised motion and ideas you'd struggle to brief anywhere else.

Hailuo (MiniMax)

Punches well above its price for character motion and expression, with a usable free tier. Frequently the best quality-per-credit for talking or performing subjects.

Text-to-3D crossed from research demo into working pipeline tool around 2025. It is now genuinely useful for concepting, background props, prototypes and greyboxing — describe an object or upload one photograph and get back a textured mesh in a couple of minutes.

Set your expectations correctly, because this is where people get burned. None of these replace a 3D artist. Every output needs cleanup — retopology, UV fixes, texture touch-up, material setup — before it is engine- or print-ready. The honest use case is the first 80% of a background asset, not a hero asset.

Meshy

The most consistently production-ready of the group. Clean mesh output, strong PBR texturing, topology controls, and reliable export into Blender, Unity and Unreal. Text-to-3D and image-to-3D both work well. The sensible default if you intend to actually ship the asset.

Tripo AI

The fastest, and the best at stylised work — voxel, cartoon, toy and LEGO-like styles — with automatic rigging and animation for characters. Excellent for rapid concepting and for game jams where speed beats polish.

Rodin (Hyper3D)

The highest geometric fidelity available, with 4K textures. Aimed at artists who are comfortable refining output manually and want the best possible starting geometry rather than the fastest turnaround.

Luma AI

Luma AI

Comes at 3D from the opposite direction: capture rather than generation. Walk around a real object with your phone and get a photorealistic 3D scene back. The best route to accurate 3D of things that actually exist — products, locations, sculptures.

Tencent Hunyuan3D

The leading open-weight 3D model. Best treated as a concepting tool rather than a finished pipeline, but it is free, self-hostable, and improving quickly. Worth watching if you'd rather not build a workflow on a subscription.

Music generation is the corner of this field where the legal picture matters more than the output quality — and where it has changed most dramatically. If you intend to publish, read the licensing note below before you fall in love with a tool.

The 2026 licensing situation, briefly, because it determines which tool you can use:

  • ElevenLabs Music was trained on licensed catalogue from the start, through deals with Merlin and Kobalt. It is currently the cleanest option for commercial release.
  • Suno has settled with some major labels and committed to retiring models trained on unlicensed music, but remains in significant litigation. Check its current terms yourself before commercial use.
  • Udio settled and pivoted into a closed fan-remix platform — you can create there, but you cannot export, distribute or use the results in outside projects. Not a production tool any more.
  • Soundraw, Mubert and Artlist are built as royalty-free production libraries with straightforward commercial licences, which is often exactly what a video project actually needs.

ElevenLabs Music

Trained on licensed catalogue from day one via label and publisher deals, and marketed explicitly as cleared for commercial use. The same company's voice and sound-effects tools are the industry standard, so it also fits neatly if you already generate voiceover or SFX. Currently the safest choice if the track is going to be published.

Suno

The most capable and best-known music generator — full songs with vocals, lyrics and structure, across essentially any genre, from a short description. Extraordinary output. Also the platform with the most unsettled legal position, so read its current commercial terms yourself rather than trusting a summary.

Soundraw

Soundraw

Purpose-built for creators who need a soundtrack rather than a song: choose genre, mood, length and instrumentation, then adjust the arrangement section by section. Clear royalty-free licensing and precise control over length, which matters when you are scoring to picture.

Mubert

Mubert

Generative royalty-free music with both a simple interface and an API. Good for background beds, streams, podcasts and long-form ambience where you need a lot of usable music and no licensing questions.

AIVA

AIVA

Focused on emotional and cinematic scoring for film, games and trailers, with more compositional control than most and the ability to export stems and edit in a DAW. The choice when you need to score to a scene rather than generate a track.

Aggregators give you many models behind one subscription and one interface. For anyone starting out, this is straightforwardly the right first purchase: you get to find out which models suit your work before committing to any of them, and you avoid five simultaneous subscriptions.

OpenArt

OpenArt

A full creative suite rather than just a model menu. Extensive model library, plus consistent-character tools, story and comic builders, inpainting, and visual workflows — all no-code. Well suited to artists who want to build a repeatable process without touching a node graph.

Krea

Best-in-class real-time generation: sketch or arrange shapes on a canvas and watch the image update as you draw. This changes the interaction from writing-and-waiting to actual drawing, and it is the closest thing to a genuinely artist-native interface. Also hosts most major models for conventional generation.

Freepik

A very broad model roster — image, video, audio, upscaling and background removal — wrapped in a design tool, and bundled with a conventional stock library. Practical value for money if your work is commercial design rather than fine art.

Hugging Face

Hugging Face

The open-source community's home. Thousands of models, most with a free browser demo you can try immediately without an account or a card. The best place to test an unfamiliar open model before deciding whether it is worth pursuing, and the place new open releases appear first.

Prompting alone tops out fast. Everything that separates a lucky generation from a deliverable happens after the first image exists — showing the model references, fixing regions instead of rerolling, editing by conversation, and finishing at proper resolution.

The mental shift that matters: stop treating generation as a slot machine and start treating it as a first draft. Professionals generate once to establish the composition, then spend the remaining time steering that specific image. Every technique below is a way of steering rather than rerolling.

The most underused capability in every modern tool. A picture communicates a look in a way no sentence can, and essentially every 2026 platform will take one.

The three things a reference can carry, usually as separate controls:

  • Style reference — take the palette, light, texture and mark-making from this image, but not its content. This is how you get a consistent look across a whole set, and how you apply your own style rather than borrowing someone's name.
  • Character or subject reference — keep this face, this person, this product across many different images.
  • Composition or structure reference — keep this layout, this pose, this perspective, and change everything else.

Most tools let you weight how strongly the reference applies. Low weight is a hint; high weight is nearly a copy. Start low and increase — the failure mode of a strong reference is a near-duplicate of the input, which is both useless and, if the reference isn't yours, a problem.

Use your own images. Your photographs, your sketches, your palettes, your previous work. This is the single clearest route to output that looks like you made it, and it strengthens your position on authorship considerably.

The most common real-world requirement — a children's book, a comic, a storyboard, a brand mascot, a product across a campaign — and historically the hardest thing to do. It got dramatically easier in 2026.

In rough order of reliability:

  1. Dedicated character features. Most major platforms now have an explicit character-reference control: upload two or three images of your subject and reuse them. Use this first if it exists.
  2. Conversational editing. Generate the character once, then ask for new scenes with "the same person, now sitting on the steps." Chat-based tools hold onto the subject well within a session.
  3. A very specific written description, reused verbatim. Not "a girl" but "a nine-year-old girl with short curly auburn hair, round tortoiseshell glasses, freckles, a mustard-yellow raincoat." Paste the identical block into every prompt.
  4. A locked seed plus small prompt changes. Cheap, works only for modest variations, but useful for a set of near-identical shots.
  5. A character sheet. Generate one image containing the same character from several angles and expressions, then use that single image as your reference for everything afterwards. This is the trick that professional illustrators land on.

Set expectations with clients. Perfect consistency across dozens of images still is not solved. Plan for a retouching pass, and price for it.

The biggest usability change of the last two years, and the one that most closes the gap between AI tools and normal creative software. Instead of writing a new prompt and hoping, you keep the image you have and describe the change.

"Make the jacket dark green." "Remove the car on the left." "Same shot, later in the evening." "Pull back so we see the whole building." "Keep everything, just open her eyes."

The model edits the image rather than regenerating it, so everything you didn't mention mostly survives. Available in GPT Image, Gemini / Nano Banana, and increasingly everywhere else.

How to get the most from it:

  • One change per turn. Bundled requests get partially applied and you won't know which part failed.
  • Say what must not change: "keeping the lighting and her expression exactly as they are."
  • Save versions as you go. Long edit chains drift — colours shift, faces soften — and you will want to go back three steps.
  • Know when to stop. After many turns, quality degrades. Export, fix the rest in your normal editor.

Painting over a selected region, and extending the canvas past its edges. Between them they solve most of the problems you'd otherwise reroll for — and they are available in every serious tool, including Photoshop.

Inpainting — mask an area, describe what should be there, regenerate only that area.

  • Fixing a bad hand, a wrong expression, a duplicated object
  • Removing something you don't want, or adding something you do
  • Changing one element — a garment, a sign, a product — while everything else stays identical
  • Practical tip: feather your mask generously and include some surrounding context in the selection. Tight masks produce visible seams.

Outpainting — extend the image beyond its original frame.

  • Turning a square into a banner, or a portrait crop into a landscape
  • Recovering headroom the original composition didn't leave you
  • Building a wide environment from a single strong central image
  • Practical tip: extend in modest steps rather than one huge jump, and re-anchor with a prompt each time. Big extensions drift into a different scene.

Feed in an existing image and have the model produce a new version of it, keeping the composition and structure. The one control that matters is *strength* — how far it is allowed to depart from what you gave it.

  • Low strength — a light pass. Colour and texture shift, composition intact. Good for grading, unifying a set, or adding grain and material.
  • Medium strength — the useful middle. Your sketch keeps its layout but becomes a rendered piece. This is where most of the value lives.
  • High strength — barely related to the input. At this point you may as well have prompted from scratch.

What artists actually use it for:

  • Sketch to finish. Rough out the composition yourself — badly is fine, it only needs to read — and let the model render it. You keep authorship of the composition, which is both the creatively interesting part and the legally significant one.
  • Style unification across an inconsistent set of images.
  • Photo transformation — turning your own reference photography into illustration, and staying entirely within material you own.

A step beyond image-to-image: instead of loosely following a reference, the model is held to a specific structural property of it — the pose of a figure, the depth of a scene, the lines of a drawing — while everything else is free.

You will meet these as named options in the interface rather than as anything you have to configure:

  • Pose — extract a skeleton from a reference photo and generate a completely different character in exactly that pose. Solves the hardest part of figure work.
  • Depth — preserve the spatial layout of a scene and restyle everything in it. Useful for keeping an architectural or environmental composition while changing its world.
  • Edge or line art — follow the outlines of a drawing exactly. This is the one that matters most to illustrators: draw your own linework, let the model handle colour and rendering, and the drawing remains unambiguously yours.
  • Scribble — the loose version of the same idea, for rough thumbnails.

Why this is the most important section here for working artists. Guided generation is what turns these tools from a slot machine into an instrument. You supply the drawing, the pose, the composition — the parts that require judgement and skill — and the model does the rendering labour. That is a defensible creative process, a repeatable one, and the one that survives contact with a client who asks how the image was made.

The most complete implementations are in the open-source tooling covered in the Deep Learning track, but usable versions now ship in OpenArt, Krea, Leonardo, Freepik and Photoshop — no installation required.

Models generate at a fixed native size — often around one to two megapixels. That is fine on screen and nowhere near enough for print, large format, or anything a client will inspect closely. Upscaling is the last step of essentially every professional workflow.

  • Standard upscale — two to four times the resolution, inventing plausible detail as it goes. Built into most platforms.
  • Creative upscale — adds detail that wasn't there. Spectacular results, but it will change faces and small features, so check identity afterwards.
  • Face restoration — a specialised pass for portraits, and the fix for the mushy-distant-face problem from earlier.
  • Do it in stages. Two 2× passes usually beat one 4× pass.

And then finish properly. Colour grade, crop, retouch, composite, add grain, set type. Almost nothing professional ships straight out of a generator. The final ten percent — the part that makes it look authored rather than generated — still happens in Photoshop, Affinity, Lightroom, Procreate or After Effects. Your existing craft is not obsolete here; it is the differentiator.

If you are using these tools for money — client work, products, publication, licensing — the questions stop being about prompting and start being about ownership, permission and disclosure. This section is the part most courses skip and most working artists actually need.

This is a practical orientation, not legal advice. The law here is genuinely unsettled and varies by country. For anything with real money attached, ask a lawyer in your jurisdiction.

The short answer in the United States, and broadly similar in the UK, EU and elsewhere: a work produced by AI *on its own* cannot be copyrighted, because copyright requires a human author. A work in which you made substantial creative contributions can be — and it is protected to the extent of what you contributed.

Where this stands in 2026. The Supreme Court declined to review Thaler v. Perlmutter in March 2026, leaving in place the appellate ruling affirming the Copyright Office's human-authorship requirement. That question is settled: AI cannot be an author.

What remains open — and is being worked out case by case — is exactly how much human involvement is enough.

The useful way to think about it. A prompt alone is generally treated as an idea, and ideas aren't protected. But when you use these tools the way you'd use a camera or a brush — making sustained creative choices about the result — you are contributing protectable expression. Practically, that means:

  • Typing a prompt and downloading the first result → weakest position, likely unprotectable
  • Extensive iteration, selection, masked editing and composition → considerably stronger
  • Your own sketch, photograph or linework as the structural basis → stronger again; the underlying drawing is yours outright
  • AI elements composited into a larger work you built → your arrangement and your original elements are protected

Keep records — this is the concrete, actionable part. If you ever need to demonstrate authorship, contemporaneous evidence of your process is what does it. Keep:

  • Prompts and how they evolved, and why
  • Outputs you rejected, and what was wrong with them
  • Your own source material — sketches, photos, references
  • Screenshots or layered files showing masking, editing and compositing
  • Notes on the decisions you made at each stage

This is the prompt journal from the iteration section, doing a second job. It costs almost nothing to maintain and is impossible to reconstruct afterwards.

Copyright is about whether anyone else can copy your work. Licensing is about whether the platform permits you to sell it at all. These are separate questions and people conflate them constantly.

Read your tool's terms for these four things specifically:

  1. Are commercial rights included on your plan? Several platforms grant them only on paid tiers — free-tier output can be personal use only.
  2. What happens if you stop paying? Some terms retroactively restrict use of work made during a subscription once it lapses.
  3. Are your generations public? Several platforms make everything visible to other users by default, including on paid plans. This matters enormously for client work under NDA — check before you generate anything confidential.
  4. Is there indemnification? Some enterprise offerings (Adobe, Google, OpenAI, Microsoft) will defend you if a third party claims your generated output infringes. For meaningful commercial exposure, this is worth real money.

Client contracts. Increasingly, agency and publisher contracts contain explicit AI clauses — sometimes disclosure requirements, sometimes outright prohibition, sometimes a warranty that you own everything you deliver, which you may not be able to give truthfully for purely generated work. Read them, and raise it early rather than at delivery.

Stock and platform rules differ too. Some stock libraries accept AI work with disclosure, some ban it, some require model releases you cannot obtain for a generated face. Print-on-demand services, app stores, game marketplaces and competitions all have their own policies. Check the destination before you make the work.

Most large image models were trained on web-scraped material, including a great deal of work by living artists who neither consented nor were paid. This is the field's central ethical problem, it is the subject of most of the 70-plus active lawsuits, and if you make your living from art it is not somebody else's issue.

Where the litigation actually sits: essentially all of it targets model developers, not the people using the tools. As a working artist you are not the defendant — but the outcomes will shape what tools exist and on what terms, and at least one significant appellate ruling is expected soon.

What you can actually control:

  • Prefer models with cleaner provenance where the work warrants it. Adobe Firefly (licensed and public-domain training data, with indemnification) and ElevenLabs Music (licensed catalogue from the start) are the clearest current examples.
  • Don't prompt living artists by name. It is unreliable, several platforms restrict it, and it is the specific practice that damaged the relationship between this technology and the art community. Describe the mechanics of a style instead — as covered earlier, it works better anyway.
  • Train on your own work, not other people's. Custom style training is offered by several platforms; feeding it your own portfolio produces a model that is yours in every sense.
  • Be honest about what you did. Passing off generated work as hand-made damages you far more than disclosure ever will, and it is increasingly detectable.

On the anxiety. These tools are very good at producing competent images and consistently poor at knowing which image is worth making. Taste, judgement, art direction, knowing what a client actually needs, and knowing when something is finished — none of that is automated, and all of it is what you were being paid for. The artists doing well with these tools are using them to move faster through the parts that were never the interesting bit.

The difference between playing and working is repeatability: being able to quote a job, hit a deadline, and deliver something consistent. A workflow that holds up under a client brief looks roughly like this.

  1. Establish the look before you produce volume. Small, cheap explorations until you have three or four images that define the direction. Get sign-off on those.
  2. Lock your references. Style reference, character reference, palette. Everything afterwards is generated against them.
  3. Bring your own structure in. Sketch the compositions, or shoot them, or block them out. Use guided generation or image-to-image so the layouts are yours. This is what makes the set feel authored rather than assembled — and it is what strengthens your authorship claim.
  4. Generate in batches, then curate hard. Expect to keep a small fraction. The curation is the art direction.
  5. Fix rather than reroll. Inpaint, edit conversationally, composite. Rerolling a nearly-right image is how deadlines get missed.
  6. Upscale and finish in your normal tools. Grade, retouch, typeset, deliver.
  7. Archive the process — prompts, seeds, references, versions — with the job files. You will need it for the revision round, for the next job in the series, and potentially for an authorship question later.

On pricing. Price the outcome, not the hours, and be careful about competing on speed alone — that is a race where the tools get faster every quarter and you don't. What clients are paying for is judgement, consistency, revisions and someone accountable for the result. None of that got cheaper.

The tools change constantly; the fundamentals don't. These are the sources worth returning to rather than the ones that will be stale in a quarter.

Read the official guides — they are better than almost everything else written about prompting, and they are current.

Places to see what's actually possible

  • Hugging Face Spaces — try new open models free in the browser, usually the day they appear
  • Civitai — the open-model community; every image is published with the prompt and settings that made it, which makes it the best free prompting textbook in existence
  • Lexica — searchable prompt archive
  • PromptHero — prompts organised by tool and style

On rights and licensing

If you want to understand the machinery

Everything technical that used to sit in this course now lives where it belongs, with the rest of the theory:

  • Deep Learning › Diffusion Models — how diffusion actually works, the open-weight model landscape, LoRA and fine-tuning, ControlNet, and running models locally with ComfyUI or Automatic1111
  • AI for Everyone — language models, prompting and AI capabilities in general
  • Deep Learning — the full path from neural networks to transformers and diffusion

And the honest closing advice. Pick one tool. Use it for a month on real work with real deadlines instead of trying everything. Keep a prompt journal. Build a reference folder of your own images. Learn to describe light. Everything else in this course is detail on top of those five things.