ArtificialGuyBR

Home / Blog / Fixing things

Pixel Art Redmond LoRA for Qwen-Image: Retro Game Assets

Generate authentic 8-bit and 16-bit pixel art with Qwen-Image using the Pixel Art Redmond LoRA. Trigger words, ComfyUI workflow, and examples.

2 sources cited Fixing things

Pixel Art Redmond LoRA for Qwen-Image

TL;DR

What This Model Does

Pixel Art Redmond is a Low-Rank Adaptation (LoRA) for Qwen-Image (Qwen/Qwen-Image-2512) that steers the base model toward pixel art aesthetics. Unlike the earlier SD 1.5 version (PixelArt.Redmond 1.5V on Civitai), this variant targets the newer Qwen-Image architecture.

The LoRA excels at:

Fantasy RPG pixel art scene with isometric buildings and characters

Trigger Words & Usage

Instance prompt: Pixel Art, PixArFK

Include both tokens in your prompt to activate the style. The HF model card lists this as the trained instance prompt.

  1. Load Qwen-Image checkpoint
  2. Add LoraLoader node → select PIXELART-REDMOND-QWENIMAGE
  3. Set strength 0.7–1.0 (start at 0.8)
  4. Prompt: Pixel Art, PixArFK, <your subject>

A1111 / WebUI

Diffusers (Python)

from diffusers import AutoPipelineForText2Image
import torch

pipe = AutoPipelineForText2Image.from_pretrained(
    "Qwen/Qwen-Image-2512",
    torch_dtype=torch.bfloat16
).to("cuda")
pipe.load_lora_weights("artificialguybr/PIXELART-REDMOND-QWENIMAGE")

prompt = "Pixel Art, PixArFK, fantasy village isometric, 16-bit style"
image = pipe(prompt).images[0]

Cute pixel art animals in forest setting

Parameter | Value

|---|---

LoRA strength | 0.7–1.0 Sampler | Euler a / DPM++ 2M Karras Steps | 20–30 CFG | 4–7 Resolution | 1024×1024 (native) The model card suggests ComfyUI for best results. For A1111, the Civitai SD 1.5 version notes "Pixel Art Extension" and downscaling by 4× or 8× for pixel-perfect results — the same principle may apply here.

Training & License

Examples

Sci-fi spaceship/robot in pixel art style

Common Errors and Fixes

Error | Cause | Fix | Source

|---|---|---|---

Style not activating | Missing trigger words | Add Pixel Art, PixArFK to prompt | HF model card Blurry pixels | LoRA strength too low | Increase to 0.8–1.0 | Community feedback Wrong aesthetic | Base model mismatch | Use Qwen-Image-2512, not SDXL/FLUX | HF tags

FAQ

Q: Is this the same as PixelArt.Redmond on Civitai? A: No — Civitai model 205955 is the SD 1.5 version (Liberte base). This is the Qwen-Image variant.

Q: Can I use it commercially? A: Yes, Apache 2.0 permits commercial use.

Q: Does it work with FLUX or SDXL? A: No — it's trained specifically for Qwen-Image architecture.

Q: What resolution works best? A: 1024×1024 (native Qwen-Image). Downscale 4×–8× for pixel-perfect retro output.

Sources