File size: 4,810 Bytes
f4a1519
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
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
---
license: other
license_name: bespoke-lora-trained-license
license_link: https://multimodal.art/civitai-licenses?allowNoCredit=True&allowCommercialUse=Image&allowDerivatives=True&allowDifferentLicense=True
tags:
- text-to-image
- stable-diffusion
- lora
- diffusers
- template:sd-lora
- migrated
- drawing
- style
- ink drawing
- pen and ink drawing
- fineliner

base_model: black-forest-labs/FLUX.1-dev
instance_prompt: ink drawing
widget:
- text: 'ink drawing, dark and gritty pen and ink realism with detailed linework, a haunting drawing of the ghost of wizard whitebead, His face is a skeletal undead skull, with hollow eye sockets glowing a faint, eerie light. His long, flowing white beard drifts as if caught in an unseen breeze. The wizard is dressed in ancient, tattered robes,  background is dark, misty, with swirling shadows, emphasizing the spectral and otherworldly nature of the ghostly figure.
'
  
  output:
    url: >-
      26937835.jpeg
- text: 'ink drawing, Phoenix bird guitarist kicking pebbles down the road in Office building, black and white drawing with stipple shading
'
  
  output:
    url: >-
      26939710.jpeg
- text: 'ink drawing, Pen and Ink Realism with detailed linework, 90s retro anime portrait of a beetlejuice woman, standing in a graveyard on a moonlit night, wearing a beetlejuice inpired dress and beetlejuice makeup
'
  
  output:
    url: >-
      26935357.jpeg
- text: 'ink drawing, a toy rocket ship, rocket launch, exhaust streaming out the bottom of the rocket, flames, hot gases and smoke'
  
  output:
    url: >-
      26938069.jpeg
- text: 'black and white ink drawing of a scene from the animated movie Grave of the Fireflies, stippple and hatch technique'
  
  output:
    url: >-
      26938189.jpeg
- text: 'ink drawing, giant pooh dressed as an intimidating samurai wearing manchira and kabuto, black and white drawing with stipple shading'
  
  output:
    url: >-
      26939212.jpeg
- text: 'ink drawing, Pen and Ink Realism with detailed linework, portrait of a woman dressed as chewbacca, dark room background,'
  
  output:
    url: >-
      26939485.jpeg
- text: ' '
  
  output:
    url: >-
      26939619.jpeg
- text: 'ink drawing, Pen and Ink Realism with detailed linework, 90s retro anime portrait of a beetlejuice woman, standing in a graveyard on a moonlit night, wearing a beetlejuice inpired dress and beetlejuice makeup'
  
  output:
    url: >-
      26937965.jpeg
- text: 'ink drawing with stipple shading, portrait of a afghan woman in her 30s'
  
  output:
    url: >-
      26940386.jpeg
- text: 'watercolor and ink drawing, manatee soldier in the battle of stalingrad'
  
  output:
    url: >-
      26942319.jpeg
- text: ' '
  
  output:
    url: >-
      26942547.jpeg
- text: 'ink drawing, floating in empty space, reflections on the astronaut''s helmet visor, close-up, pen and ink realism with detailed linework with stipple and hatching'
  
  output:
    url: >-
      26946111.jpeg

---

# Wizard's Pen and Ink 

<Gallery />



([CivitAI](https://civitai.com/models/))

## Model description

<p>Ink drawing style with stipple shading and hatching.</p><p>Trigger: <code>Ink drawing</code><span style="color:rgb(193, 194, 197)"> </span><br />Helpful <span style="color:rgb(193, 194, 197)">keyword:</span> <code>pen and ink realism,</code> <code>detailed linework,</code> <code>stipple shading,</code><span style="color:rgb(193, 194, 197)"> </span> <code>crosshatching,</code> <code>black and white ink drawing,</code> <code>detailed linework,</code> </p><p>Has a small tendency to be a bit horny because of the training images (blame Robert Crumb and Apollonia Saintclair).</p>

## Trigger words
You should use `ink drawing`, `pen and ink realism`, `stipple shading` to trigger the image generation.
    

## Download model

Weights for this model are available in Safetensors format.

[Download](/WizWhite/wizard-s-pen-and-ink/tree/main) them in the Files & versions tab.

## Use it with the [🧨 diffusers library](https://github.com/huggingface/diffusers)

```py
from diffusers import AutoPipelineForText2Image
import torch

device = "cuda" if torch.cuda.is_available() else "cpu"

pipeline = AutoPipelineForText2Image.from_pretrained('black-forest-labs/FLUX.1-dev', torch_dtype=torch.bfloat16).to(device)
pipeline.load_lora_weights('WizWhite/wizard-s-pen-and-ink', weight_name='Wiz-PenAndInkDrawings.safetensors')
image = pipeline('ink drawing, floating in empty space, reflections on the astronaut's helmet visor, close-up, pen and ink realism with detailed linework with stipple and hatching').images[0]
```

For more details, including weighting, merging and fusing LoRAs, check the [documentation on loading LoRAs in diffusers](https://huggingface.co/docs/diffusers/main/en/using-diffusers/loading_adapters)