WhiteAiZ commited on
Commit
765febc
·
verified ·
1 Parent(s): 0d2f6d3

Upload 17 files

Browse files
extensions/sd-fast-pnginfo/.gitignore ADDED
@@ -0,0 +1,5 @@
 
 
 
 
 
 
1
+ __pycache__/
2
+ *.png
3
+ *.gif
4
+ *.jpg
5
+ javascript/exif-reader.js
extensions/sd-fast-pnginfo/README.md ADDED
@@ -0,0 +1,27 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ # SD Fast PNG Info
2
+ SD Fast PNG Info is an extension for <code>[Stable Diffusion WebUI](https://github.com/AUTOMATIC1111/stable-diffusion-webui)</code><br>
3
+ The extension uses a dynamically loaded <code>[ExifReader](https://github.com/mattiasw/ExifReader)</code> library module to extract image metadata locally.<br>
4
+ Eliminating the need to upload it to a server, resulting in Fast PNG Info.<br>
5
+ This is particularly noticeable when running the webui on online services, such as Google Colab, Kaggle, SageMaker Studio Lab, etc.<br>
6
+
7
+ Support:
8
+ - PNG parameters
9
+ - JPEG and Avif userComment
10
+ - Novel AI parameters with brackets conversion
11
+
12
+ # Changelog
13
+ ### 2024-05-08
14
+ - Fixed handling of multi-byte (non-ASCII) characters in <code>userComment</code>.
15
+
16
+ ### 2024-04-30
17
+ - Displaying the output in HTML.
18
+
19
+ ### 2024-04-29
20
+ - Migrating from [Exifr](https://github.com/MikeKovarik/exifr) to [ExifReader](https://github.com/mattiasw/ExifReader) JavaScript library.<br>
21
+ - Fixed convertNAI function.
22
+
23
+ <h1 align="center">Preview</h1>
24
+ <p align="center">
25
+ <img src="https://github.com/gutris1/sd-fast-pnginfo/assets/132797949/55e70a0b-35e7-40d3-8397-398941f36fd9" width="800">
26
+ <img src="https://github.com/gutris1/sd-fast-pnginfo/assets/132797949/02852cac-6517-42bb-ba4e-d54277bce894">
27
+ </p>
extensions/sd-fast-pnginfo/javascript/fast-pnginfo.js ADDED
@@ -0,0 +1,116 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ function convertNAI(input) {
2
+ const re_attention = /\{|\[|\}|\]|[^\{\}\[\]]+/gmu;
3
+ let text = input.replaceAll("(", "\(").replaceAll(")", "\)").replace(/\\{2,}(\(|\))/gim, '\$1');
4
+ let res = [], curly_brackets = [], square_brackets = [];
5
+ const curly_bracket_multiplier = 1.05, square_bracket_multiplier = 1 / 1.05;
6
+ function multiply_range(start, multiplier) {
7
+ for (let pos = start; pos < res.length; pos++) res[pos][1] = Math.round(res[pos][1] * multiplier * 10000) / 10000;
8
+ }
9
+ for (const match of text.matchAll(re_attention)) {
10
+ let word = match[0];
11
+ if (word == "{") curly_brackets.push(res.length);
12
+ else if (word == "[") square_brackets.push(res.length);
13
+ else if (word == "}" && curly_brackets.length > 0) multiply_range(curly_brackets.pop(), curly_bracket_multiplier);
14
+ else if (word == "]" && square_brackets.length > 0) multiply_range(square_brackets.pop(), square_bracket_multiplier);
15
+ else res.push([word, 1.0]);
16
+ }
17
+ for (const pos of curly_brackets) multiply_range(pos, curly_bracket_multiplier);
18
+ for (const pos of square_brackets) multiply_range(pos, square_bracket_multiplier);
19
+ if (res.length == 0) res = [["", 1.0]];
20
+ let i = 0;
21
+ while (i + 1 < res.length) {
22
+ if (res[i][1] == res[i + 1][1]) {
23
+ res[i][0] += res[i + 1][0];
24
+ res.splice(i + 1, 1);
25
+ } else i++;
26
+ }
27
+
28
+ let result = "";
29
+ for (let i = 0; i < res.length; i++) {
30
+ if (res[i][1] == 1.0) result += res[i][0];
31
+ else result += `(${res[i][0]}:${res[i][1]})`;
32
+ }
33
+ return result;
34
+ }
35
+
36
+ async function fastpnginfo_parse_image() {
37
+ let output = "";
38
+
39
+ let img_el = gradioApp().querySelector("#fastpnginfo_image > div[data-testid='image'] > div > img");
40
+ try {
41
+ let response = await fetch(img_el.src);
42
+ let img_blob = await response.blob();
43
+ let arrayBuffer = await img_blob.arrayBuffer();
44
+
45
+ let tags = ExifReader.load(arrayBuffer);
46
+ if (tags) {
47
+ const box = document.querySelector("#fastpnginfo_html");
48
+
49
+ if (tags.parameters) {
50
+ output = tags.parameters.description;
51
+
52
+ } else if (tags.UserComment && tags.UserComment.value) {
53
+ const ray = tags.UserComment.value;
54
+ const result = [];
55
+ var ar = ray;
56
+ var pos = ar.indexOf(0) + 1;
57
+
58
+ for(var i = pos; i < ar.length; i += 2) {
59
+ var inDEX = ar[i];
60
+ var nEXT = ar[i + 1];
61
+
62
+ if(inDEX === 0 && nEXT === 32) {
63
+ result.push(32);
64
+ continue;
65
+ }
66
+
67
+ let vaLUE = inDEX * 256 + nEXT;
68
+ result.push(vaLUE);
69
+ }
70
+
71
+ const userComment = new TextDecoder("utf-16").decode(new Uint16Array(result));
72
+ output = userComment.trim().replace(/^UNICODE[\x00-\x20]*/, "");
73
+
74
+ } else if (tags["Software"] &&
75
+ tags["Software"].description === "NovelAI" &&
76
+ tags.Comment &&
77
+ tags.Comment.description) {
78
+
79
+ const nai = JSON.parse(tags.Comment.description);
80
+ nai.sampler = "Euler";
81
+
82
+ output = convertNAI(nai["prompt"])
83
+ + "\nNegative prompt: " + convertNAI(nai["uc"])
84
+ + "\nSteps: " + (nai["steps"])
85
+ + ", Sampler: " + (nai["sampler"])
86
+ + ", CFG scale: " + (parseFloat(nai["scale"]).toFixed(1))
87
+ + ", Seed: " + (nai["seed"])
88
+ + ", Size: " + (nai["width"]) + "x" + (nai["height"])
89
+ + ", Clip skip: 2, ENSD: 31337";
90
+
91
+ } else {
92
+ output = null;
93
+ box.style.opacity = "0";
94
+ }
95
+
96
+ if (output) {
97
+ box.style.opacity = "1";
98
+ const txt_output_el = gradioApp().querySelector("#fastpnginfo_geninfo > label > textarea");
99
+ txt_output_el.value = output;
100
+ updateInput(txt_output_el);
101
+ const fastpnginfo_geninfo_html = gradioApp().querySelector("#fastpnginfo_geninfo_html");
102
+ output = fastpnginfo_plaintext_to_html(output)
103
+ fastpnginfo_geninfo_html.classList.add('prose');
104
+ fastpnginfo_geninfo_html.innerHTML = output;
105
+ }
106
+ }
107
+ }finally {
108
+
109
+ }
110
+ }
111
+
112
+ function fastpnginfo_plaintext_to_html(inputs) {
113
+ inputs = inputs.replace(/</g, '&lt;').replace(/>/g, '&gt;');
114
+ inputs = inputs.replace(/\n/g, '<br>');
115
+ return `<div style="padding: 5px;">${inputs}</p></div>`;
116
+ }
extensions/sd-fast-pnginfo/scripts/fast-pnginfo.py ADDED
@@ -0,0 +1,47 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ import modules.generation_parameters_copypaste as parameters_copypaste # noqa: generation_parameters_copypaste is the ailes to infotext_utils
2
+ from modules.ui_components import FormRow, FormColumn
3
+ from modules import script_callbacks, scripts
4
+ from pathlib import Path
5
+ import gradio as gr
6
+
7
+
8
+ def on_ui_tabs():
9
+ with gr.Blocks(analytics_enabled=False) as fast_pnginfo:
10
+
11
+ geninfo = gr.Textbox(elem_id="fastpnginfo_geninfo", visible=False)
12
+
13
+ with FormRow(equal_height=False):
14
+ with FormColumn(variant='panel'):
15
+ image = gr.Image(elem_id="fastpnginfo_image", source="upload", interactive=True, type="pil", show_label=False)
16
+
17
+ with FormRow(variant='compact'):
18
+ buttons = parameters_copypaste.create_buttons(["txt2img", "img2img", "inpaint", "extras"])
19
+
20
+ with gr.Column(variant='panel', scale=2, elem_id="fastpnginfo_html"):
21
+ gr.HTML(elem_id="fastpnginfo_geninfo_html")
22
+
23
+ for tabname, button in buttons.items():
24
+ parameters_copypaste.register_paste_params_button(parameters_copypaste.ParamBinding(
25
+ paste_button=button, tabname=tabname, source_text_component=geninfo, source_image_component=image))
26
+
27
+ image.change(fn=None, _js='fastpnginfo_parse_image')
28
+
29
+ return [(fast_pnginfo, "Fast PNG Info", "fast_pnginfo")]
30
+
31
+
32
+ script_callbacks.on_ui_tabs(on_ui_tabs)
33
+
34
+
35
+ def download_exif_reader():
36
+ exif_reader = Path(scripts.basedir()) / 'javascript' / 'exif-reader.js'
37
+ if not exif_reader.exists():
38
+ from urllib.request import urlopen
39
+ import shutil
40
+ exif_reader.parent.mkdir(parents=True, exist_ok=True)
41
+ print(f"Downloading Fast PNG info requirement: \033[38;5;208mexif-reader.js\033[0m")
42
+ url = "https://raw.githubusercontent.com/mattiasw/ExifReader/main/dist/exif-reader.js"
43
+ with urlopen(url) as response, open(exif_reader, 'wb') as out_file:
44
+ shutil.copyfileobj(response, out_file)
45
+
46
+
47
+ download_exif_reader()
extensions/sd-fast-pnginfo/style.css ADDED
@@ -0,0 +1 @@
 
 
1
+ #fastpnginfo_html {opacity: 0}
extensions/sd-simple-dimension-preset/.gitignore ADDED
@@ -0,0 +1,2 @@
 
 
 
1
+
2
+ __pycache__/
extensions/sd-simple-dimension-preset/LICENSE ADDED
@@ -0,0 +1,21 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ MIT License
2
+
3
+ Copyright (c) 2024 gutris1
4
+
5
+ Permission is hereby granted, free of charge, to any person obtaining a copy
6
+ of this software and associated documentation files (the "Software"), to deal
7
+ in the Software without restriction, including without limitation the rights
8
+ to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
9
+ copies of the Software, and to permit persons to whom the Software is
10
+ furnished to do so, subject to the following conditions:
11
+
12
+ The above copyright notice and this permission notice shall be included in all
13
+ copies or substantial portions of the Software.
14
+
15
+ THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
16
+ IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
17
+ FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
18
+ AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
19
+ LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
20
+ OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
21
+ SOFTWARE.
extensions/sd-simple-dimension-preset/README.md ADDED
@@ -0,0 +1,16 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ # SD Simple Dimension Preset
2
+
3
+ since SDXL, aspect ratios are less relevant due to the weird dimensions used in the models.<br>
4
+ This extension simply inserts those weird width and height values without thinking about what kind of aspect ratio that is.<br>
5
+
6
+ Usage:<br>
7
+ Click any button to insert the corresponding values.<br>
8
+ <p align="left">
9
+ <img src="https://github.com/user-attachments/assets/bea0351b-d5da-4748-bd04-2592432f48e7", width=600px height=auto>
10
+ </p>
11
+ <br>
12
+
13
+ To add more weird values, click the gear icon to go to the Settings.<br>
14
+ <p align="center">
15
+ <img src="https://github.com/user-attachments/assets/c2c9133e-58e2-475a-9e33-28b3a09276ea", width=1000px>
16
+ </p>
extensions/sd-simple-dimension-preset/examples.md ADDED
@@ -0,0 +1,31 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ ## SD Simple Dimension Preset
2
+ <br>
3
+ Click <code>Info</code> to see details.<br>
4
+ Click <code>Save</code> button to save the settings, then go back to the extension.<br>
5
+ <br>
6
+ <details><summary>Info</summary>
7
+ <p>
8
+
9
+ ```
10
+ # square <-- This is a comment
11
+ 1024 x 1024 <-- This is the value
12
+
13
+
14
+ > Portrait <-- This is the label
15
+ 640 x 1536 <-- This is the value
16
+ 768 x 1344
17
+ 832 x 1216
18
+ 896 x 1152
19
+
20
+
21
+ > Landscape <-- This is the label
22
+ 1536 x 640 <-- This is the value
23
+ 1344 x 768
24
+ 1216 x 832
25
+ 1152 x 896
26
+ ```
27
+
28
+ </p>
29
+ </details>
30
+ <br>
31
+ <br>
extensions/sd-simple-dimension-preset/javascript/sd-simple-dimension-preset.js ADDED
@@ -0,0 +1,332 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ async function waitForOpts() {
2
+ for (; ;) {
3
+ if (window.opts && Object.keys(window.opts).length) {
4
+ return window.opts;
5
+ }
6
+ await new Promise(resolve => setTimeout(resolve, 1000));
7
+ }
8
+ }
9
+
10
+ async function LoadSimplePreset(box) {
11
+ var loadedOpts = await waitForOpts();
12
+ var text = loadedOpts.simple_dimension_preset_config
13
+ var lines = text.split('\n');
14
+ var Label = null;
15
+ var BoxContent = '';
16
+ console.log(text);
17
+
18
+ lines.forEach((line) => {
19
+ const textLine = line.trim();
20
+
21
+ if (textLine.startsWith('>')) {
22
+ Label = textLine.replace('>', '').trim();
23
+ const SimpleRLabel = document.createElement('div');
24
+ SimpleRLabel.id = 'Simple-R-Label';
25
+ SimpleRLabel.innerText = `${Label}`;
26
+ BoxContent += SimpleRLabel.outerHTML;
27
+ } else if (textLine.includes('x') && !textLine.startsWith('#')) {
28
+ const [width, height] = textLine.split('x').map(Number);
29
+
30
+ if (!isNaN(width) && !isNaN(height)) {
31
+ const SimpleRButton = document.createElement('button');
32
+ SimpleRButton.id = 'Simple-R-Button';
33
+ SimpleRButton.setAttribute('data-width', width);
34
+ SimpleRButton.setAttribute('data-height', height);
35
+ SimpleRButton.innerText = `${width} x ${height}`;
36
+ BoxContent += SimpleRButton.outerHTML;
37
+ }
38
+ }
39
+ });
40
+
41
+ box.innerHTML = BoxContent;
42
+ addButtonEvents(box);
43
+ }
44
+
45
+ function addButtonEvents(box) {
46
+ box.querySelectorAll('button').forEach((btn) => {
47
+ btn.addEventListener('click', () => {
48
+ const W = btn.getAttribute('data-width');
49
+ const H = btn.getAttribute('data-height');
50
+
51
+ const txt2imgTab = document.getElementById('tab_txt2img');
52
+ const img2imgTab = document.getElementById('tab_img2img');
53
+
54
+ if (txt2imgTab && txt2imgTab.style.display === 'block') {
55
+ const txt2imgW = document.querySelector('#txt2img_width input[type="number"]');
56
+ const txt2imgH = document.querySelector('#txt2img_height input[type="number"]');
57
+
58
+ if (txt2imgW && txt2imgH) {
59
+ txt2imgW.value = W;
60
+ txt2imgH.value = H;
61
+ updateInput(txt2imgW);
62
+ updateInput(txt2imgH);
63
+ }
64
+ } else if (img2imgTab && img2imgTab.style.display === 'block') {
65
+ const img2imgW = document.querySelector('#img2img_width input[type="number"]');
66
+ const img2imgH = document.querySelector('#img2img_height input[type="number"]');
67
+
68
+ if (img2imgW && img2imgH) {
69
+ img2imgW.value = W;
70
+ img2imgH.value = H;
71
+ updateInput(img2imgW);
72
+ updateInput(img2imgH);
73
+ }
74
+ }
75
+ });
76
+ });
77
+ }
78
+
79
+ function UpdateSimpleBox(box, trimmedText) {
80
+ let BoxContent = '';
81
+ const text = trimmedText.split('\n');
82
+
83
+ text.forEach((line) => {
84
+ const Lines = line.trim();
85
+
86
+ if (Lines.startsWith('>')) {
87
+ let Label = Lines.replace('>', '').trim();
88
+ BoxContent += `<div id="Simple-R-Label">${Label}</div>`;
89
+ } else if (Lines.includes('x') && !Lines.startsWith('#')) {
90
+ const [width, height] = Lines.split('x').map(Number);
91
+
92
+ if (!isNaN(width) && !isNaN(height)) {
93
+ BoxContent += `
94
+ <button
95
+ id="Simple-R-Button"
96
+ data-width="${width}"
97
+ data-height="${height}">
98
+ ${width} x ${height}
99
+ </button>
100
+ `;
101
+ }
102
+ }
103
+ });
104
+
105
+ box.innerHTML = BoxContent;
106
+ addButtonEvents(box);
107
+ }
108
+
109
+ function SimpleSaveButton(box) {
110
+ const column = gradioApp().querySelector('#column_settings_simple-dimension-preset');
111
+ const config = gradioApp().querySelector('#setting_simple_dimension_preset_config');
112
+
113
+ if (column && config) {
114
+ const SaveDiv = document.createElement('div');
115
+ SaveDiv.id = 'setting_simple_dimension_preset_save';
116
+
117
+ const SaveButton = document.createElement('button');
118
+ SaveButton.id = 'setting_simple_dimension_preset_save_button';
119
+ SaveButton.className = 'lg primary gradio-button svelte-cmf5ev';
120
+ SaveButton.textContent = 'Save';
121
+ SaveButton.title = 'Save Simple Preset';
122
+
123
+ SaveDiv.appendChild(SaveButton);
124
+ column.insertBefore(SaveDiv, config.nextSibling);
125
+
126
+ SaveButton.addEventListener('click', async () => {
127
+ const cmContent = config.querySelector('.cm-content');
128
+ if (cmContent) {
129
+ const lines = Array.from(cmContent.children);
130
+ let plainText = '';
131
+
132
+ lines.forEach((line) => {
133
+ if (line.classList.contains('cm-line')) {
134
+ plainText += line.textContent + '\n';
135
+ } else if (line.tagName.toLowerCase() === 'br') {
136
+ plainText += '\n';
137
+ }
138
+ });
139
+
140
+ async function waitForOpts() {
141
+ for (; ;) {
142
+ if (window.opts && Object.keys(window.opts).length) {
143
+ return window.opts;
144
+ }
145
+ await new Promise(resolve => setTimeout(resolve, 100));
146
+ }
147
+ }
148
+
149
+ let loadedOpts = await waitForOpts();
150
+ let text = loadedOpts.simple_dimension_preset_config;
151
+ let trimmedText = plainText.trim();
152
+ let textarea = document.querySelector('#simple_dimension_preset_holder > label > textarea');
153
+ let submitButton = document.querySelector('#tab_settings #settings_submit');
154
+
155
+ if (textarea && text) {
156
+ textarea.value = trimmedText;
157
+ updateInput(textarea);
158
+ text = trimmedText;
159
+ console.log(text);
160
+ UpdateSimpleBox(box, trimmedText);
161
+ submitButton.click();
162
+ }
163
+ }
164
+ });
165
+ }
166
+ }
167
+
168
+ function SimpleRBoxPosition(btn, box, set) {
169
+ const btnRect = btn.getBoundingClientRect();
170
+ const viewport = window.innerWidth;
171
+ const mainButton = 190;
172
+ const spacing = viewport - (btnRect.left + btnRect.width);
173
+
174
+ box.style.left = '';
175
+ box.style.right = '';
176
+ set.style.left = '';
177
+ set.style.right = '';
178
+
179
+ if (spacing < mainButton + 10) {
180
+ box.style.right = '1%';
181
+ set.style.right = '0rem';
182
+ setTimeout(() => {
183
+ set.style.right = '4.2rem';
184
+ }, 10);
185
+ } else {
186
+ box.style.left = '1%';
187
+ set.style.left = '0rem';
188
+ setTimeout(() => {
189
+ set.style.left = '4.2rem';
190
+ }, 10);
191
+ }
192
+ }
193
+
194
+ function SimpleREvent(btn, box, set) {
195
+ btn.addEventListener('click', () => {
196
+ const SimpleRBox = box.style.display === 'none' ? 'block' : 'none';
197
+ const SimpleSettingButton = box.style.display === 'none' ? 'block' : 'none';
198
+ box.style.display = SimpleRBox;
199
+ set.style.display = SimpleSettingButton;
200
+ set.style.left = '0';
201
+ set.style.right = '0';
202
+
203
+ if (SimpleRBox === 'block') {
204
+ btn.style.boxShadow = '0 0 0 1.5px var(--button-secondary-text-color-hover)';
205
+ btn.querySelector('svg').style.fill = 'var(--button-secondary-text-color-hover)';
206
+ SimpleRBoxPosition(btn, box, set);
207
+ } else {
208
+ btn.style.boxShadow = 'none';
209
+ btn.querySelector('svg').style.fill = '';
210
+ }
211
+ });
212
+
213
+ set.addEventListener('click', () => {
214
+ MoveToSettings();
215
+ });
216
+ }
217
+
218
+ function MoveToSettings() {
219
+ const settingSimple = Array.from(document.querySelectorAll('#tab_settings #settings .tab-nav button'))
220
+ .find(button => button.textContent.trim() === 'Simple Dimension Preset');
221
+ const settingsTab = Array.from(document.querySelectorAll('#tabs .tab-nav button'))
222
+ .find(button => button.textContent.trim() === 'Settings');
223
+
224
+ if (settingSimple) {
225
+ settingSimple.click(); settingsTab.click();
226
+ }
227
+ }
228
+
229
+ onUiLoaded(function () {
230
+ let rows;
231
+ let isThatForge = gradioApp().querySelector('.gradio-container-4-40-0') !== null;
232
+
233
+ if (isThatForge) {
234
+ rows = gradioApp().querySelectorAll("#txt2img_dimensions_row, #img2img_dimensions_row");
235
+ } else {
236
+ rows = gradioApp().querySelectorAll("#txt2img_dimensions_row .form, #img2img_dimensions_row .form");
237
+ }
238
+
239
+ const switchBtns = gradioApp().querySelectorAll("#txt2img_res_switch_btn, #img2img_res_switch_btn");
240
+
241
+ const SimpleRdiv = document.createElement('div');
242
+ SimpleRdiv.id = 'Simple-R';
243
+
244
+ const SimpleRButton = switchBtns[0].cloneNode(true);
245
+ SimpleRButton.id = 'Simple-R-Main-Button';
246
+ SimpleRButton.title = 'Simple Dimension Preset';
247
+ SimpleRButton.innerHTML = `
248
+ <svg xmlns="http://www.w3.org/2000/svg" x="0px" y="0px"
249
+ width="40" height="40" viewBox="0 0 24 18" fill="transparent">
250
+ <path fill=""
251
+ d="M9 5a1 1 0 1 0 0 2 1 1 0 0 0 0-2z M6.17 5a3.001 3.001 0 0 1 5.66 0
252
+ H19a1 1 0 1 1 0 2h-7.17a3.001 3.001 0 0 1-5.66 0H5a1 1 0 0 1 0-2h1.17z
253
+ M15 11a1 1 0 1 0 0 2 1 1 0 0 0 0-2zm -2.83 0a3.001 3.001 0 0 1 5.66 0
254
+ H19a1 1 0 1 1 0 2h-1.17a3.001 3.001 0 0 1-5.66 0H5a1 1 0 1 1 0-2h7.17z">
255
+ </path>
256
+ </svg>
257
+ `;
258
+
259
+ const SimpleRBox = document.createElement('div');
260
+ SimpleRBox.id = 'Simple-R-Box';
261
+ SimpleRBox.classList.add('prose');
262
+ SimpleRBox.style.display = 'none';
263
+
264
+ const SimpleSettingButton = switchBtns[0].cloneNode(true);
265
+ SimpleSettingButton.id = 'Simple-Setting-Button';
266
+ SimpleSettingButton.title = 'Go To Settings';
267
+ SimpleSettingButton.style.display = 'none';
268
+ SimpleSettingButton.innerHTML = `
269
+ <svg xmlns="http://www.w3.org/2000/svg" x="0px" y="0px"
270
+ width="35px" height="35px" viewBox="0 0 32 32">
271
+ <path
272
+ d="M27.758,10.366 l-1-1.732 c-0.552-0.957-1.775-1.284-2.732-0.732
273
+ L23.5,8.206 C21.5,9.36,19,7.917,19,5.608 V5 c0-1.105-0.895-2-2-2 h-2
274
+ c-1.105,0-2,0.895-2,2 v0.608 c0,2.309-2.5,3.753-4.5,2.598 L7.974,7.902
275
+ C7.017,7.35,5.794,7.677,5.242,8.634 l-1,1.732 c-0.552,0.957-0.225,2.18,0.732,2.732
276
+ L5.5,13.402 c2,1.155,2,4.041,0,5.196 l-0.526,0.304 c-0.957,0.552-1.284,1.775-0.732,2.732
277
+ l1,1.732 c0.552,0.957,1.775,1.284,2.732,0.732 L8.5,23.794 c2-1.155,4.5,0.289,4.5,2.598
278
+ V27 c0,1.105,0.895,2,2,2 h2 c1.105,0,2-0.895,2-2 v-0.608 c0-2.309,2.5-3.753,4.5-2.598
279
+ l0.526,0.304 c0.957,0.552,2.18,0.225,2.732-0.732 l1-1.732 c0.552-0.957,0.225-2.18-0.732-2.732
280
+ L26.5,18.598 c-2-1.155-2-4.041,0-5.196 l0.526-0.304 C27.983,12.546,28.311,11.323,27.758,10.366 z
281
+ M16,20 a4,4 0 1,1 0,-8 a4,4 0 1,1 0,8 z"
282
+ fill="transparent" stroke="" stroke-width="2"
283
+ />
284
+ </svg>
285
+ `;
286
+
287
+ SimpleRdiv.appendChild(SimpleRButton);
288
+ SimpleRdiv.appendChild(SimpleRBox);
289
+ SimpleRdiv.appendChild(SimpleSettingButton);
290
+
291
+ rows.forEach((row, index) => {
292
+ const clone = index === 0 ? SimpleRdiv : SimpleRdiv.cloneNode(true);
293
+ row.insertBefore(clone, switchBtns[index]);
294
+
295
+ const btn = clone.querySelector('#Simple-R-Main-Button');
296
+ const box = clone.querySelector('#Simple-R-Box');
297
+ const set = clone.querySelector('#Simple-Setting-Button');
298
+
299
+ LoadSimplePreset(box);
300
+ SimpleREvent(btn, box, set);
301
+ });
302
+
303
+ window.addEventListener('resize', () => {
304
+ document.querySelectorAll('#Simple-R-Box').forEach((box, index) => {
305
+ if (box.style.display === 'block') {
306
+ const btn = box.parentElement.querySelector('#Simple-R-Main-Button');
307
+ const set = box.parentElement.querySelector('#Simple-Setting-Button');
308
+ SimpleRBoxPosition(btn, box, set);
309
+ }
310
+ });
311
+ });
312
+
313
+ function ClickOutsideEL(e) {
314
+ document.querySelectorAll('#Simple-R-Box').forEach(box => {
315
+ const btn = box.parentElement.querySelector('#Simple-R-Main-Button');
316
+ const set = box.parentElement.querySelector('#Simple-Setting-Button');
317
+ if (box.style.display === 'block' && !box.contains(e.target) && !btn.contains(e.target) && !set.contains(e.target)) {
318
+ box.style.display = 'none';
319
+ btn.style.boxShadow = 'none';
320
+ set.style.display = 'none';
321
+ set.style.left = '0';
322
+ set.style.right = '0';
323
+ btn.querySelector('svg').style.fill = '';
324
+ }
325
+ });
326
+ }
327
+
328
+ SimpleSaveButton(SimpleRBox);
329
+
330
+ document.addEventListener('mousedown', ClickOutsideEL);
331
+ document.addEventListener('touchstart', ClickOutsideEL, { passive: true });
332
+ });
extensions/sd-simple-dimension-preset/scripts/sd_simple_dimension_preset.py ADDED
@@ -0,0 +1,45 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ from modules import shared, scripts
2
+ from pathlib import Path
3
+ import gradio as gr
4
+
5
+ sdp_root = Path(scripts.basedir())
6
+ default_path = sdp_root / 'simple-preset.txt'
7
+ default_presets = default_path.read_text(encoding='utf-8')
8
+ example_md = (sdp_root / 'examples.md').read_text(encoding='utf-8')
9
+
10
+ class OptionMarkdown(shared.OptionInfo):
11
+ def __init__(self, text):
12
+ super().__init__(str(text).strip(), label='', component=lambda **kwargs: gr.Markdown(**kwargs))
13
+ self.do_not_save = True
14
+
15
+ shared.options_templates.update(shared.options_section(('simple-dimension-preset', 'Simple Dimension Preset'), {
16
+ "simple_dimension_preset_doc": OptionMarkdown(example_md),
17
+ "simple_dimension_preset_config": shared.OptionInfo(default_presets, 'simple dimension preset', gr.Code),
18
+ }))
19
+
20
+ class Script(scripts.Script):
21
+ def title(self):
22
+ return "Simple Dimension Preset"
23
+
24
+ def show(self, is_img2img):
25
+ return scripts.AlwaysVisible
26
+
27
+ def ui(self, is_img2img):
28
+ testBox = gr.Textbox(
29
+ visible=False,
30
+ lines=10,
31
+ show_label=False,
32
+ elem_id="simple_dimension_preset_holder"
33
+ )
34
+
35
+ testBox.change(
36
+ fn=self.saving_preset,
37
+ inputs=[testBox],
38
+ outputs=[]
39
+ )
40
+
41
+ def saving_preset(self, inputs):
42
+ with default_path.open("w", encoding="utf-8") as file:
43
+ file.write(inputs)
44
+
45
+ shared.options_templates['simple_dimension_preset_config'].value = inputs
extensions/sd-simple-dimension-preset/simple-preset.txt ADDED
@@ -0,0 +1,16 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ # square
2
+ 1024 x 1024
3
+
4
+
5
+ > Portrait
6
+ 640 x 1536
7
+ 768 x 1344
8
+ 832 x 1216
9
+ 896 x 1152
10
+
11
+
12
+ > Landscape
13
+ 1536 x 640
14
+ 1344 x 768
15
+ 1216 x 832
16
+ 1152 x 896
extensions/sd-simple-dimension-preset/style.css ADDED
@@ -0,0 +1,151 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ #Simple-R {
2
+ overflow: visible;
3
+ position: relative;
4
+ }
5
+
6
+ #Simple-R-Main-Button {
7
+ padding: 0;
8
+ box-shadow: none;
9
+ }
10
+
11
+ #Simple-R-Main-Button svg {
12
+ fill: var(--button-secondary-text-color);
13
+ transition: 0.4s ease;
14
+ }
15
+
16
+ #Simple-R-Main-Button svg:hover {
17
+ fill: var(--button-secondary-text-color-hover);
18
+ }
19
+
20
+ #Simple-Setting-Button {
21
+ top: 0;
22
+ padding: 0;
23
+ position: absolute;
24
+ z-index: 9999;
25
+ box-shadow: 0 0 0 1.5px var(--button-secondary-text-color);
26
+ transition: 0.4s ease;
27
+ }
28
+
29
+ #Simple-Setting-Button:hover {
30
+ box-shadow: 0 0 0 1.5px var(--button-secondary-text-color-hover);
31
+ }
32
+
33
+ #Simple-Setting-Button svg {
34
+ transition: 0.4s ease;
35
+ stroke: var(--button-secondary-text-color);
36
+ }
37
+
38
+ #Simple-Setting-Button svg:hover {
39
+ stroke: var(--button-secondary-text-color-hover);
40
+ }
41
+
42
+ #Simple-R-Box {
43
+ margin-top: 2px;
44
+ position: absolute;
45
+ width: 10.5rem;
46
+ z-index: 9999;
47
+ box-shadow: 0 0 0 1.5px var(--button-secondary-text-color);
48
+ border-radius: 0.5rem;
49
+ padding-top: 5px;
50
+ padding-bottom: 4px;
51
+ background: var(--body-background-fill);
52
+ text-align: center;
53
+ transition: 0.4s ease;
54
+ }
55
+
56
+ #Simple-R-Box:hover {
57
+ box-shadow: 0 0 0 1.5px var(--button-secondary-text-color-hover);
58
+ }
59
+
60
+ #Simple-R-Label {
61
+ margin-top: 10px;
62
+ text-align: center;
63
+ pointer-events: none;
64
+ }
65
+
66
+ #Simple-R-Button {
67
+ margin: 2px;
68
+ padding-right: 3px;
69
+ padding-left: 3px;
70
+ box-shadow: 0 0 0 1.5px transparent;
71
+ background: var(--input-background-fill);
72
+ border-radius: 0.25rem;
73
+ cursor: pointer;
74
+ transition: 0.4s ease;
75
+ }
76
+
77
+ #Simple-R-Button:hover {
78
+ box-shadow: 0 0 0 1.5px var(--button-secondary-text-color-hover);
79
+ background: transparent;
80
+ }
81
+
82
+ #setting_simple_dimension_preset_doc details {
83
+ padding-left: 1.5px;
84
+ }
85
+
86
+ #setting_simple_dimension_preset_doc details .code_wrap {
87
+ box-shadow: 0 0 0 1.5px var(--body-text-color);
88
+ filter: brightness(0.7);
89
+ border-radius: 10px;
90
+ border: 0.1px solid transparent;
91
+ transition: 0.4s ease;
92
+ }
93
+
94
+ #setting_simple_dimension_preset_doc details .code_wrap:hover {
95
+ filter: brightness(1);
96
+ }
97
+
98
+ #setting_simple_dimension_preset_doc details pre {
99
+ padding-top: 0;
100
+ background: transparent;
101
+ padding-bottom: 0;
102
+ }
103
+
104
+ #setting_simple_dimension_preset_config {
105
+ border-color: transparent;
106
+ margin-top: 1px;
107
+ }
108
+
109
+ #setting_simple_dimension_preset_config .codemirror-wrapper {
110
+ padding: 1.5px;
111
+ }
112
+
113
+ #setting_simple_dimension_preset_config .cm-editor {
114
+ border-radius: 10px;
115
+ box-shadow: 0 0 0 1.5px var(--body-text-color-subdued);
116
+ filter: brightness(0.7);
117
+ transition: 0.4s ease;
118
+ }
119
+
120
+ #setting_simple_dimension_preset_config .cm-editor:hover {
121
+ filter: brightness(1);
122
+ }
123
+
124
+ #setting_simple_dimension_preset_config .cm-editor.cm-focused {
125
+ box-shadow: 0 0 0 1.5px var(--color-accent);
126
+ filter: brightness(1);
127
+ }
128
+
129
+ #setting_simple_dimension_preset_config div[data-testid="block-label"] {
130
+ display: none;
131
+ }
132
+
133
+ #setting_simple_dimension_preset_config .cm-gutter.cm-foldGutter {
134
+ margin-right: -5px;
135
+ }
136
+
137
+ #setting_simple_dimension_preset_config .cm-gutter.cm-lineNumbers {
138
+ margin-left: 3px;
139
+ }
140
+
141
+ #setting_simple_dimension_preset_save {
142
+ position: relative;
143
+ top: 10px;
144
+ }
145
+
146
+ #setting_simple_dimension_preset_save_button {
147
+ border-radius: var(--button-large-radius);
148
+ width: 150px;
149
+ font-size: 20px;
150
+ line-height: 1;
151
+ }
extensions/stable-diffusion-webui-zoomimage/LICENSE ADDED
@@ -0,0 +1,661 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ GNU AFFERO GENERAL PUBLIC LICENSE
2
+ Version 3, 19 November 2007
3
+
4
+ Copyright (C) 2007 Free Software Foundation, Inc. <https://fsf.org/>
5
+ Everyone is permitted to copy and distribute verbatim copies
6
+ of this license document, but changing it is not allowed.
7
+
8
+ Preamble
9
+
10
+ The GNU Affero General Public License is a free, copyleft license for
11
+ software and other kinds of works, specifically designed to ensure
12
+ cooperation with the community in the case of network server software.
13
+
14
+ The licenses for most software and other practical works are designed
15
+ to take away your freedom to share and change the works. By contrast,
16
+ our General Public Licenses are intended to guarantee your freedom to
17
+ share and change all versions of a program--to make sure it remains free
18
+ software for all its users.
19
+
20
+ When we speak of free software, we are referring to freedom, not
21
+ price. Our General Public Licenses are designed to make sure that you
22
+ have the freedom to distribute copies of free software (and charge for
23
+ them if you wish), that you receive source code or can get it if you
24
+ want it, that you can change the software or use pieces of it in new
25
+ free programs, and that you know you can do these things.
26
+
27
+ Developers that use our General Public Licenses protect your rights
28
+ with two steps: (1) assert copyright on the software, and (2) offer
29
+ you this License which gives you legal permission to copy, distribute
30
+ and/or modify the software.
31
+
32
+ A secondary benefit of defending all users' freedom is that
33
+ improvements made in alternate versions of the program, if they
34
+ receive widespread use, become available for other developers to
35
+ incorporate. Many developers of free software are heartened and
36
+ encouraged by the resulting cooperation. However, in the case of
37
+ software used on network servers, this result may fail to come about.
38
+ The GNU General Public License permits making a modified version and
39
+ letting the public access it on a server without ever releasing its
40
+ source code to the public.
41
+
42
+ The GNU Affero General Public License is designed specifically to
43
+ ensure that, in such cases, the modified source code becomes available
44
+ to the community. It requires the operator of a network server to
45
+ provide the source code of the modified version running there to the
46
+ users of that server. Therefore, public use of a modified version, on
47
+ a publicly accessible server, gives the public access to the source
48
+ code of the modified version.
49
+
50
+ An older license, called the Affero General Public License and
51
+ published by Affero, was designed to accomplish similar goals. This is
52
+ a different license, not a version of the Affero GPL, but Affero has
53
+ released a new version of the Affero GPL which permits relicensing under
54
+ this license.
55
+
56
+ The precise terms and conditions for copying, distribution and
57
+ modification follow.
58
+
59
+ TERMS AND CONDITIONS
60
+
61
+ 0. Definitions.
62
+
63
+ "This License" refers to version 3 of the GNU Affero General Public License.
64
+
65
+ "Copyright" also means copyright-like laws that apply to other kinds of
66
+ works, such as semiconductor masks.
67
+
68
+ "The Program" refers to any copyrightable work licensed under this
69
+ License. Each licensee is addressed as "you". "Licensees" and
70
+ "recipients" may be individuals or organizations.
71
+
72
+ To "modify" a work means to copy from or adapt all or part of the work
73
+ in a fashion requiring copyright permission, other than the making of an
74
+ exact copy. The resulting work is called a "modified version" of the
75
+ earlier work or a work "based on" the earlier work.
76
+
77
+ A "covered work" means either the unmodified Program or a work based
78
+ on the Program.
79
+
80
+ To "propagate" a work means to do anything with it that, without
81
+ permission, would make you directly or secondarily liable for
82
+ infringement under applicable copyright law, except executing it on a
83
+ computer or modifying a private copy. Propagation includes copying,
84
+ distribution (with or without modification), making available to the
85
+ public, and in some countries other activities as well.
86
+
87
+ To "convey" a work means any kind of propagation that enables other
88
+ parties to make or receive copies. Mere interaction with a user through
89
+ a computer network, with no transfer of a copy, is not conveying.
90
+
91
+ An interactive user interface displays "Appropriate Legal Notices"
92
+ to the extent that it includes a convenient and prominently visible
93
+ feature that (1) displays an appropriate copyright notice, and (2)
94
+ tells the user that there is no warranty for the work (except to the
95
+ extent that warranties are provided), that licensees may convey the
96
+ work under this License, and how to view a copy of this License. If
97
+ the interface presents a list of user commands or options, such as a
98
+ menu, a prominent item in the list meets this criterion.
99
+
100
+ 1. Source Code.
101
+
102
+ The "source code" for a work means the preferred form of the work
103
+ for making modifications to it. "Object code" means any non-source
104
+ form of a work.
105
+
106
+ A "Standard Interface" means an interface that either is an official
107
+ standard defined by a recognized standards body, or, in the case of
108
+ interfaces specified for a particular programming language, one that
109
+ is widely used among developers working in that language.
110
+
111
+ The "System Libraries" of an executable work include anything, other
112
+ than the work as a whole, that (a) is included in the normal form of
113
+ packaging a Major Component, but which is not part of that Major
114
+ Component, and (b) serves only to enable use of the work with that
115
+ Major Component, or to implement a Standard Interface for which an
116
+ implementation is available to the public in source code form. A
117
+ "Major Component", in this context, means a major essential component
118
+ (kernel, window system, and so on) of the specific operating system
119
+ (if any) on which the executable work runs, or a compiler used to
120
+ produce the work, or an object code interpreter used to run it.
121
+
122
+ The "Corresponding Source" for a work in object code form means all
123
+ the source code needed to generate, install, and (for an executable
124
+ work) run the object code and to modify the work, including scripts to
125
+ control those activities. However, it does not include the work's
126
+ System Libraries, or general-purpose tools or generally available free
127
+ programs which are used unmodified in performing those activities but
128
+ which are not part of the work. For example, Corresponding Source
129
+ includes interface definition files associated with source files for
130
+ the work, and the source code for shared libraries and dynamically
131
+ linked subprograms that the work is specifically designed to require,
132
+ such as by intimate data communication or control flow between those
133
+ subprograms and other parts of the work.
134
+
135
+ The Corresponding Source need not include anything that users
136
+ can regenerate automatically from other parts of the Corresponding
137
+ Source.
138
+
139
+ The Corresponding Source for a work in source code form is that
140
+ same work.
141
+
142
+ 2. Basic Permissions.
143
+
144
+ All rights granted under this License are granted for the term of
145
+ copyright on the Program, and are irrevocable provided the stated
146
+ conditions are met. This License explicitly affirms your unlimited
147
+ permission to run the unmodified Program. The output from running a
148
+ covered work is covered by this License only if the output, given its
149
+ content, constitutes a covered work. This License acknowledges your
150
+ rights of fair use or other equivalent, as provided by copyright law.
151
+
152
+ You may make, run and propagate covered works that you do not
153
+ convey, without conditions so long as your license otherwise remains
154
+ in force. You may convey covered works to others for the sole purpose
155
+ of having them make modifications exclusively for you, or provide you
156
+ with facilities for running those works, provided that you comply with
157
+ the terms of this License in conveying all material for which you do
158
+ not control copyright. Those thus making or running the covered works
159
+ for you must do so exclusively on your behalf, under your direction
160
+ and control, on terms that prohibit them from making any copies of
161
+ your copyrighted material outside their relationship with you.
162
+
163
+ Conveying under any other circumstances is permitted solely under
164
+ the conditions stated below. Sublicensing is not allowed; section 10
165
+ makes it unnecessary.
166
+
167
+ 3. Protecting Users' Legal Rights From Anti-Circumvention Law.
168
+
169
+ No covered work shall be deemed part of an effective technological
170
+ measure under any applicable law fulfilling obligations under article
171
+ 11 of the WIPO copyright treaty adopted on 20 December 1996, or
172
+ similar laws prohibiting or restricting circumvention of such
173
+ measures.
174
+
175
+ When you convey a covered work, you waive any legal power to forbid
176
+ circumvention of technological measures to the extent such circumvention
177
+ is effected by exercising rights under this License with respect to
178
+ the covered work, and you disclaim any intention to limit operation or
179
+ modification of the work as a means of enforcing, against the work's
180
+ users, your or third parties' legal rights to forbid circumvention of
181
+ technological measures.
182
+
183
+ 4. Conveying Verbatim Copies.
184
+
185
+ You may convey verbatim copies of the Program's source code as you
186
+ receive it, in any medium, provided that you conspicuously and
187
+ appropriately publish on each copy an appropriate copyright notice;
188
+ keep intact all notices stating that this License and any
189
+ non-permissive terms added in accord with section 7 apply to the code;
190
+ keep intact all notices of the absence of any warranty; and give all
191
+ recipients a copy of this License along with the Program.
192
+
193
+ You may charge any price or no price for each copy that you convey,
194
+ and you may offer support or warranty protection for a fee.
195
+
196
+ 5. Conveying Modified Source Versions.
197
+
198
+ You may convey a work based on the Program, or the modifications to
199
+ produce it from the Program, in the form of source code under the
200
+ terms of section 4, provided that you also meet all of these conditions:
201
+
202
+ a) The work must carry prominent notices stating that you modified
203
+ it, and giving a relevant date.
204
+
205
+ b) The work must carry prominent notices stating that it is
206
+ released under this License and any conditions added under section
207
+ 7. This requirement modifies the requirement in section 4 to
208
+ "keep intact all notices".
209
+
210
+ c) You must license the entire work, as a whole, under this
211
+ License to anyone who comes into possession of a copy. This
212
+ License will therefore apply, along with any applicable section 7
213
+ additional terms, to the whole of the work, and all its parts,
214
+ regardless of how they are packaged. This License gives no
215
+ permission to license the work in any other way, but it does not
216
+ invalidate such permission if you have separately received it.
217
+
218
+ d) If the work has interactive user interfaces, each must display
219
+ Appropriate Legal Notices; however, if the Program has interactive
220
+ interfaces that do not display Appropriate Legal Notices, your
221
+ work need not make them do so.
222
+
223
+ A compilation of a covered work with other separate and independent
224
+ works, which are not by their nature extensions of the covered work,
225
+ and which are not combined with it such as to form a larger program,
226
+ in or on a volume of a storage or distribution medium, is called an
227
+ "aggregate" if the compilation and its resulting copyright are not
228
+ used to limit the access or legal rights of the compilation's users
229
+ beyond what the individual works permit. Inclusion of a covered work
230
+ in an aggregate does not cause this License to apply to the other
231
+ parts of the aggregate.
232
+
233
+ 6. Conveying Non-Source Forms.
234
+
235
+ You may convey a covered work in object code form under the terms
236
+ of sections 4 and 5, provided that you also convey the
237
+ machine-readable Corresponding Source under the terms of this License,
238
+ in one of these ways:
239
+
240
+ a) Convey the object code in, or embodied in, a physical product
241
+ (including a physical distribution medium), accompanied by the
242
+ Corresponding Source fixed on a durable physical medium
243
+ customarily used for software interchange.
244
+
245
+ b) Convey the object code in, or embodied in, a physical product
246
+ (including a physical distribution medium), accompanied by a
247
+ written offer, valid for at least three years and valid for as
248
+ long as you offer spare parts or customer support for that product
249
+ model, to give anyone who possesses the object code either (1) a
250
+ copy of the Corresponding Source for all the software in the
251
+ product that is covered by this License, on a durable physical
252
+ medium customarily used for software interchange, for a price no
253
+ more than your reasonable cost of physically performing this
254
+ conveying of source, or (2) access to copy the
255
+ Corresponding Source from a network server at no charge.
256
+
257
+ c) Convey individual copies of the object code with a copy of the
258
+ written offer to provide the Corresponding Source. This
259
+ alternative is allowed only occasionally and noncommercially, and
260
+ only if you received the object code with such an offer, in accord
261
+ with subsection 6b.
262
+
263
+ d) Convey the object code by offering access from a designated
264
+ place (gratis or for a charge), and offer equivalent access to the
265
+ Corresponding Source in the same way through the same place at no
266
+ further charge. You need not require recipients to copy the
267
+ Corresponding Source along with the object code. If the place to
268
+ copy the object code is a network server, the Corresponding Source
269
+ may be on a different server (operated by you or a third party)
270
+ that supports equivalent copying facilities, provided you maintain
271
+ clear directions next to the object code saying where to find the
272
+ Corresponding Source. Regardless of what server hosts the
273
+ Corresponding Source, you remain obligated to ensure that it is
274
+ available for as long as needed to satisfy these requirements.
275
+
276
+ e) Convey the object code using peer-to-peer transmission, provided
277
+ you inform other peers where the object code and Corresponding
278
+ Source of the work are being offered to the general public at no
279
+ charge under subsection 6d.
280
+
281
+ A separable portion of the object code, whose source code is excluded
282
+ from the Corresponding Source as a System Library, need not be
283
+ included in conveying the object code work.
284
+
285
+ A "User Product" is either (1) a "consumer product", which means any
286
+ tangible personal property which is normally used for personal, family,
287
+ or household purposes, or (2) anything designed or sold for incorporation
288
+ into a dwelling. In determining whether a product is a consumer product,
289
+ doubtful cases shall be resolved in favor of coverage. For a particular
290
+ product received by a particular user, "normally used" refers to a
291
+ typical or common use of that class of product, regardless of the status
292
+ of the particular user or of the way in which the particular user
293
+ actually uses, or expects or is expected to use, the product. A product
294
+ is a consumer product regardless of whether the product has substantial
295
+ commercial, industrial or non-consumer uses, unless such uses represent
296
+ the only significant mode of use of the product.
297
+
298
+ "Installation Information" for a User Product means any methods,
299
+ procedures, authorization keys, or other information required to install
300
+ and execute modified versions of a covered work in that User Product from
301
+ a modified version of its Corresponding Source. The information must
302
+ suffice to ensure that the continued functioning of the modified object
303
+ code is in no case prevented or interfered with solely because
304
+ modification has been made.
305
+
306
+ If you convey an object code work under this section in, or with, or
307
+ specifically for use in, a User Product, and the conveying occurs as
308
+ part of a transaction in which the right of possession and use of the
309
+ User Product is transferred to the recipient in perpetuity or for a
310
+ fixed term (regardless of how the transaction is characterized), the
311
+ Corresponding Source conveyed under this section must be accompanied
312
+ by the Installation Information. But this requirement does not apply
313
+ if neither you nor any third party retains the ability to install
314
+ modified object code on the User Product (for example, the work has
315
+ been installed in ROM).
316
+
317
+ The requirement to provide Installation Information does not include a
318
+ requirement to continue to provide support service, warranty, or updates
319
+ for a work that has been modified or installed by the recipient, or for
320
+ the User Product in which it has been modified or installed. Access to a
321
+ network may be denied when the modification itself materially and
322
+ adversely affects the operation of the network or violates the rules and
323
+ protocols for communication across the network.
324
+
325
+ Corresponding Source conveyed, and Installation Information provided,
326
+ in accord with this section must be in a format that is publicly
327
+ documented (and with an implementation available to the public in
328
+ source code form), and must require no special password or key for
329
+ unpacking, reading or copying.
330
+
331
+ 7. Additional Terms.
332
+
333
+ "Additional permissions" are terms that supplement the terms of this
334
+ License by making exceptions from one or more of its conditions.
335
+ Additional permissions that are applicable to the entire Program shall
336
+ be treated as though they were included in this License, to the extent
337
+ that they are valid under applicable law. If additional permissions
338
+ apply only to part of the Program, that part may be used separately
339
+ under those permissions, but the entire Program remains governed by
340
+ this License without regard to the additional permissions.
341
+
342
+ When you convey a copy of a covered work, you may at your option
343
+ remove any additional permissions from that copy, or from any part of
344
+ it. (Additional permissions may be written to require their own
345
+ removal in certain cases when you modify the work.) You may place
346
+ additional permissions on material, added by you to a covered work,
347
+ for which you have or can give appropriate copyright permission.
348
+
349
+ Notwithstanding any other provision of this License, for material you
350
+ add to a covered work, you may (if authorized by the copyright holders of
351
+ that material) supplement the terms of this License with terms:
352
+
353
+ a) Disclaiming warranty or limiting liability differently from the
354
+ terms of sections 15 and 16 of this License; or
355
+
356
+ b) Requiring preservation of specified reasonable legal notices or
357
+ author attributions in that material or in the Appropriate Legal
358
+ Notices displayed by works containing it; or
359
+
360
+ c) Prohibiting misrepresentation of the origin of that material, or
361
+ requiring that modified versions of such material be marked in
362
+ reasonable ways as different from the original version; or
363
+
364
+ d) Limiting the use for publicity purposes of names of licensors or
365
+ authors of the material; or
366
+
367
+ e) Declining to grant rights under trademark law for use of some
368
+ trade names, trademarks, or service marks; or
369
+
370
+ f) Requiring indemnification of licensors and authors of that
371
+ material by anyone who conveys the material (or modified versions of
372
+ it) with contractual assumptions of liability to the recipient, for
373
+ any liability that these contractual assumptions directly impose on
374
+ those licensors and authors.
375
+
376
+ All other non-permissive additional terms are considered "further
377
+ restrictions" within the meaning of section 10. If the Program as you
378
+ received it, or any part of it, contains a notice stating that it is
379
+ governed by this License along with a term that is a further
380
+ restriction, you may remove that term. If a license document contains
381
+ a further restriction but permits relicensing or conveying under this
382
+ License, you may add to a covered work material governed by the terms
383
+ of that license document, provided that the further restriction does
384
+ not survive such relicensing or conveying.
385
+
386
+ If you add terms to a covered work in accord with this section, you
387
+ must place, in the relevant source files, a statement of the
388
+ additional terms that apply to those files, or a notice indicating
389
+ where to find the applicable terms.
390
+
391
+ Additional terms, permissive or non-permissive, may be stated in the
392
+ form of a separately written license, or stated as exceptions;
393
+ the above requirements apply either way.
394
+
395
+ 8. Termination.
396
+
397
+ You may not propagate or modify a covered work except as expressly
398
+ provided under this License. Any attempt otherwise to propagate or
399
+ modify it is void, and will automatically terminate your rights under
400
+ this License (including any patent licenses granted under the third
401
+ paragraph of section 11).
402
+
403
+ However, if you cease all violation of this License, then your
404
+ license from a particular copyright holder is reinstated (a)
405
+ provisionally, unless and until the copyright holder explicitly and
406
+ finally terminates your license, and (b) permanently, if the copyright
407
+ holder fails to notify you of the violation by some reasonable means
408
+ prior to 60 days after the cessation.
409
+
410
+ Moreover, your license from a particular copyright holder is
411
+ reinstated permanently if the copyright holder notifies you of the
412
+ violation by some reasonable means, this is the first time you have
413
+ received notice of violation of this License (for any work) from that
414
+ copyright holder, and you cure the violation prior to 30 days after
415
+ your receipt of the notice.
416
+
417
+ Termination of your rights under this section does not terminate the
418
+ licenses of parties who have received copies or rights from you under
419
+ this License. If your rights have been terminated and not permanently
420
+ reinstated, you do not qualify to receive new licenses for the same
421
+ material under section 10.
422
+
423
+ 9. Acceptance Not Required for Having Copies.
424
+
425
+ You are not required to accept this License in order to receive or
426
+ run a copy of the Program. Ancillary propagation of a covered work
427
+ occurring solely as a consequence of using peer-to-peer transmission
428
+ to receive a copy likewise does not require acceptance. However,
429
+ nothing other than this License grants you permission to propagate or
430
+ modify any covered work. These actions infringe copyright if you do
431
+ not accept this License. Therefore, by modifying or propagating a
432
+ covered work, you indicate your acceptance of this License to do so.
433
+
434
+ 10. Automatic Licensing of Downstream Recipients.
435
+
436
+ Each time you convey a covered work, the recipient automatically
437
+ receives a license from the original licensors, to run, modify and
438
+ propagate that work, subject to this License. You are not responsible
439
+ for enforcing compliance by third parties with this License.
440
+
441
+ An "entity transaction" is a transaction transferring control of an
442
+ organization, or substantially all assets of one, or subdividing an
443
+ organization, or merging organizations. If propagation of a covered
444
+ work results from an entity transaction, each party to that
445
+ transaction who receives a copy of the work also receives whatever
446
+ licenses to the work the party's predecessor in interest had or could
447
+ give under the previous paragraph, plus a right to possession of the
448
+ Corresponding Source of the work from the predecessor in interest, if
449
+ the predecessor has it or can get it with reasonable efforts.
450
+
451
+ You may not impose any further restrictions on the exercise of the
452
+ rights granted or affirmed under this License. For example, you may
453
+ not impose a license fee, royalty, or other charge for exercise of
454
+ rights granted under this License, and you may not initiate litigation
455
+ (including a cross-claim or counterclaim in a lawsuit) alleging that
456
+ any patent claim is infringed by making, using, selling, offering for
457
+ sale, or importing the Program or any portion of it.
458
+
459
+ 11. Patents.
460
+
461
+ A "contributor" is a copyright holder who authorizes use under this
462
+ License of the Program or a work on which the Program is based. The
463
+ work thus licensed is called the contributor's "contributor version".
464
+
465
+ A contributor's "essential patent claims" are all patent claims
466
+ owned or controlled by the contributor, whether already acquired or
467
+ hereafter acquired, that would be infringed by some manner, permitted
468
+ by this License, of making, using, or selling its contributor version,
469
+ but do not include claims that would be infringed only as a
470
+ consequence of further modification of the contributor version. For
471
+ purposes of this definition, "control" includes the right to grant
472
+ patent sublicenses in a manner consistent with the requirements of
473
+ this License.
474
+
475
+ Each contributor grants you a non-exclusive, worldwide, royalty-free
476
+ patent license under the contributor's essential patent claims, to
477
+ make, use, sell, offer for sale, import and otherwise run, modify and
478
+ propagate the contents of its contributor version.
479
+
480
+ In the following three paragraphs, a "patent license" is any express
481
+ agreement or commitment, however denominated, not to enforce a patent
482
+ (such as an express permission to practice a patent or covenant not to
483
+ sue for patent infringement). To "grant" such a patent license to a
484
+ party means to make such an agreement or commitment not to enforce a
485
+ patent against the party.
486
+
487
+ If you convey a covered work, knowingly relying on a patent license,
488
+ and the Corresponding Source of the work is not available for anyone
489
+ to copy, free of charge and under the terms of this License, through a
490
+ publicly available network server or other readily accessible means,
491
+ then you must either (1) cause the Corresponding Source to be so
492
+ available, or (2) arrange to deprive yourself of the benefit of the
493
+ patent license for this particular work, or (3) arrange, in a manner
494
+ consistent with the requirements of this License, to extend the patent
495
+ license to downstream recipients. "Knowingly relying" means you have
496
+ actual knowledge that, but for the patent license, your conveying the
497
+ covered work in a country, or your recipient's use of the covered work
498
+ in a country, would infringe one or more identifiable patents in that
499
+ country that you have reason to believe are valid.
500
+
501
+ If, pursuant to or in connection with a single transaction or
502
+ arrangement, you convey, or propagate by procuring conveyance of, a
503
+ covered work, and grant a patent license to some of the parties
504
+ receiving the covered work authorizing them to use, propagate, modify
505
+ or convey a specific copy of the covered work, then the patent license
506
+ you grant is automatically extended to all recipients of the covered
507
+ work and works based on it.
508
+
509
+ A patent license is "discriminatory" if it does not include within
510
+ the scope of its coverage, prohibits the exercise of, or is
511
+ conditioned on the non-exercise of one or more of the rights that are
512
+ specifically granted under this License. You may not convey a covered
513
+ work if you are a party to an arrangement with a third party that is
514
+ in the business of distributing software, under which you make payment
515
+ to the third party based on the extent of your activity of conveying
516
+ the work, and under which the third party grants, to any of the
517
+ parties who would receive the covered work from you, a discriminatory
518
+ patent license (a) in connection with copies of the covered work
519
+ conveyed by you (or copies made from those copies), or (b) primarily
520
+ for and in connection with specific products or compilations that
521
+ contain the covered work, unless you entered into that arrangement,
522
+ or that patent license was granted, prior to 28 March 2007.
523
+
524
+ Nothing in this License shall be construed as excluding or limiting
525
+ any implied license or other defenses to infringement that may
526
+ otherwise be available to you under applicable patent law.
527
+
528
+ 12. No Surrender of Others' Freedom.
529
+
530
+ If conditions are imposed on you (whether by court order, agreement or
531
+ otherwise) that contradict the conditions of this License, they do not
532
+ excuse you from the conditions of this License. If you cannot convey a
533
+ covered work so as to satisfy simultaneously your obligations under this
534
+ License and any other pertinent obligations, then as a consequence you may
535
+ not convey it at all. For example, if you agree to terms that obligate you
536
+ to collect a royalty for further conveying from those to whom you convey
537
+ the Program, the only way you could satisfy both those terms and this
538
+ License would be to refrain entirely from conveying the Program.
539
+
540
+ 13. Remote Network Interaction; Use with the GNU General Public License.
541
+
542
+ Notwithstanding any other provision of this License, if you modify the
543
+ Program, your modified version must prominently offer all users
544
+ interacting with it remotely through a computer network (if your version
545
+ supports such interaction) an opportunity to receive the Corresponding
546
+ Source of your version by providing access to the Corresponding Source
547
+ from a network server at no charge, through some standard or customary
548
+ means of facilitating copying of software. This Corresponding Source
549
+ shall include the Corresponding Source for any work covered by version 3
550
+ of the GNU General Public License that is incorporated pursuant to the
551
+ following paragraph.
552
+
553
+ Notwithstanding any other provision of this License, you have
554
+ permission to link or combine any covered work with a work licensed
555
+ under version 3 of the GNU General Public License into a single
556
+ combined work, and to convey the resulting work. The terms of this
557
+ License will continue to apply to the part which is the covered work,
558
+ but the work with which it is combined will remain governed by version
559
+ 3 of the GNU General Public License.
560
+
561
+ 14. Revised Versions of this License.
562
+
563
+ The Free Software Foundation may publish revised and/or new versions of
564
+ the GNU Affero General Public License from time to time. Such new versions
565
+ will be similar in spirit to the present version, but may differ in detail to
566
+ address new problems or concerns.
567
+
568
+ Each version is given a distinguishing version number. If the
569
+ Program specifies that a certain numbered version of the GNU Affero General
570
+ Public License "or any later version" applies to it, you have the
571
+ option of following the terms and conditions either of that numbered
572
+ version or of any later version published by the Free Software
573
+ Foundation. If the Program does not specify a version number of the
574
+ GNU Affero General Public License, you may choose any version ever published
575
+ by the Free Software Foundation.
576
+
577
+ If the Program specifies that a proxy can decide which future
578
+ versions of the GNU Affero General Public License can be used, that proxy's
579
+ public statement of acceptance of a version permanently authorizes you
580
+ to choose that version for the Program.
581
+
582
+ Later license versions may give you additional or different
583
+ permissions. However, no additional obligations are imposed on any
584
+ author or copyright holder as a result of your choosing to follow a
585
+ later version.
586
+
587
+ 15. Disclaimer of Warranty.
588
+
589
+ THERE IS NO WARRANTY FOR THE PROGRAM, TO THE EXTENT PERMITTED BY
590
+ APPLICABLE LAW. EXCEPT WHEN OTHERWISE STATED IN WRITING THE COPYRIGHT
591
+ HOLDERS AND/OR OTHER PARTIES PROVIDE THE PROGRAM "AS IS" WITHOUT WARRANTY
592
+ OF ANY KIND, EITHER EXPRESSED OR IMPLIED, INCLUDING, BUT NOT LIMITED TO,
593
+ THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR
594
+ PURPOSE. THE ENTIRE RISK AS TO THE QUALITY AND PERFORMANCE OF THE PROGRAM
595
+ IS WITH YOU. SHOULD THE PROGRAM PROVE DEFECTIVE, YOU ASSUME THE COST OF
596
+ ALL NECESSARY SERVICING, REPAIR OR CORRECTION.
597
+
598
+ 16. Limitation of Liability.
599
+
600
+ IN NO EVENT UNLESS REQUIRED BY APPLICABLE LAW OR AGREED TO IN WRITING
601
+ WILL ANY COPYRIGHT HOLDER, OR ANY OTHER PARTY WHO MODIFIES AND/OR CONVEYS
602
+ THE PROGRAM AS PERMITTED ABOVE, BE LIABLE TO YOU FOR DAMAGES, INCLUDING ANY
603
+ GENERAL, SPECIAL, INCIDENTAL OR CONSEQUENTIAL DAMAGES ARISING OUT OF THE
604
+ USE OR INABILITY TO USE THE PROGRAM (INCLUDING BUT NOT LIMITED TO LOSS OF
605
+ DATA OR DATA BEING RENDERED INACCURATE OR LOSSES SUSTAINED BY YOU OR THIRD
606
+ PARTIES OR A FAILURE OF THE PROGRAM TO OPERATE WITH ANY OTHER PROGRAMS),
607
+ EVEN IF SUCH HOLDER OR OTHER PARTY HAS BEEN ADVISED OF THE POSSIBILITY OF
608
+ SUCH DAMAGES.
609
+
610
+ 17. Interpretation of Sections 15 and 16.
611
+
612
+ If the disclaimer of warranty and limitation of liability provided
613
+ above cannot be given local legal effect according to their terms,
614
+ reviewing courts shall apply local law that most closely approximates
615
+ an absolute waiver of all civil liability in connection with the
616
+ Program, unless a warranty or assumption of liability accompanies a
617
+ copy of the Program in return for a fee.
618
+
619
+ END OF TERMS AND CONDITIONS
620
+
621
+ How to Apply These Terms to Your New Programs
622
+
623
+ If you develop a new program, and you want it to be of the greatest
624
+ possible use to the public, the best way to achieve this is to make it
625
+ free software which everyone can redistribute and change under these terms.
626
+
627
+ To do so, attach the following notices to the program. It is safest
628
+ to attach them to the start of each source file to most effectively
629
+ state the exclusion of warranty; and each file should have at least
630
+ the "copyright" line and a pointer to where the full notice is found.
631
+
632
+ <one line to give the program's name and a brief idea of what it does.>
633
+ Copyright (C) <year> <name of author>
634
+
635
+ This program is free software: you can redistribute it and/or modify
636
+ it under the terms of the GNU Affero General Public License as published
637
+ by the Free Software Foundation, either version 3 of the License, or
638
+ (at your option) any later version.
639
+
640
+ This program is distributed in the hope that it will be useful,
641
+ but WITHOUT ANY WARRANTY; without even the implied warranty of
642
+ MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
643
+ GNU Affero General Public License for more details.
644
+
645
+ You should have received a copy of the GNU Affero General Public License
646
+ along with this program. If not, see <https://www.gnu.org/licenses/>.
647
+
648
+ Also add information on how to contact you by electronic and paper mail.
649
+
650
+ If your software can interact with users remotely through a computer
651
+ network, you should also make sure that it provides a way for users to
652
+ get its source. For example, if your program is a web application, its
653
+ interface could display a "Source" link that leads users to an archive
654
+ of the code. There are many ways you could offer source, and different
655
+ solutions will be better for different programs; see section 13 for the
656
+ specific requirements.
657
+
658
+ You should also get your employer (if you work as a programmer) or school,
659
+ if any, to sign a "copyright disclaimer" for the program, if necessary.
660
+ For more information on this, and how to apply and follow the GNU AGPL, see
661
+ <https://www.gnu.org/licenses/>.
extensions/stable-diffusion-webui-zoomimage/javascript/zoomimage.js ADDED
@@ -0,0 +1,249 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ onUiLoaded(function () {
2
+ let imageContainer = document.getElementById("lightboxModal");
3
+ imageContainer.style.width = "100%";
4
+ imageContainer.style.height = "100%";
5
+ imageContainer.style.overflow = "hidden";
6
+ function disableClose(e) {
7
+ e.stopPropagation();
8
+ }
9
+ let modalControls = imageContainer.getElementsByClassName("modalControls")[0];
10
+ if (modalControls) {
11
+ modalControls.style.position = "relative";
12
+ modalControls.style.zIndex = 1;
13
+ }
14
+ let img = imageContainer.querySelector("img");
15
+ img.style.width = "auto";
16
+ img.style.maxWidth = "100%";
17
+ img.style.height = "auto";
18
+ img.style.maxHeight = "100%";
19
+ let scale = 1;
20
+ let lastX = 0;
21
+ let lastY = 0;
22
+ let lastLen = 1;
23
+ let offsetX = 0;
24
+ let offsetY = 0;
25
+ let isDragging = false;
26
+ let touchStore = {};
27
+ let moveFunTimer = setTimeout(() => {}, 0);
28
+ let moveFunLastExecTime = Date.now();
29
+ let event = {
30
+ wheel: function (event) {
31
+ event.stopPropagation();
32
+ event.preventDefault();
33
+ img.style.transition = "transform 0.3s ease";
34
+ let delta = Math.max(-1, Math.min(1, event.wheelDelta || -event.detail));
35
+ let zoomStep = 0.1;
36
+ let zoom = 1 + delta * zoomStep;
37
+ let lastScale = scale;
38
+ scale *= zoom;
39
+ scale = Math.max(0.1, scale);
40
+ // 图片中心坐标
41
+ let centerX = imageContainer.offsetWidth / 2;
42
+ let centerY = imageContainer.offsetHeight / 2;
43
+ // 图片中心坐标
44
+ let imgCenterX = offsetX + centerX;
45
+ let imgCenterY = offsetY + centerY;
46
+ // 缩放后坐标偏移 = 缩放后图片中心坐标 - 页面中心坐标
47
+ // 缩放后图片中心坐标 = 缩放中心坐标 - 缩放后距离
48
+ // 缩放后距离 = (缩放前距离 / 之前的缩放比) *之后的缩放比
49
+ // 缩放前距离 = 缩放中心坐标 - 之前的图片中心坐标
50
+ // 之前的图片中心坐标 = 页面中心坐标 + 坐标偏移
51
+ offsetX =
52
+ event.clientX -
53
+ ((event.clientX - imgCenterX) / lastScale) * scale -
54
+ centerX;
55
+ offsetY =
56
+ event.clientY -
57
+ ((event.clientY - imgCenterY) / lastScale) * scale -
58
+ centerY;
59
+ img.style.transform =
60
+ "translate(" + offsetX + "px, " + offsetY + "px) scale(" + scale + ")";
61
+ },
62
+ mousedown: function (event) {
63
+ event.stopPropagation();
64
+ isDragging = true;
65
+ lastX = event.clientX - offsetX;
66
+ lastY = event.clientY - offsetY;
67
+ img.style.cursor = "grabbing";
68
+ },
69
+ mousemove: function (event) {
70
+ if (isDragging) {
71
+ img.style.transition = "";
72
+ event.stopPropagation();
73
+ event.preventDefault();
74
+ img.onclick = disableClose;
75
+ let deltaX = event.clientX - lastX;
76
+ let deltaY = event.clientY - lastY;
77
+ offsetX = deltaX;
78
+ offsetY = deltaY;
79
+ img.style.transform =
80
+ "translate(" + deltaX + "px, " + deltaY + "px) scale(" + scale + ")";
81
+ }
82
+ },
83
+ mouseup: function (event) {
84
+ event.stopPropagation();
85
+ isDragging = false;
86
+ img.style.cursor = "grab";
87
+ },
88
+ mouseleave: function (event) {
89
+ event.stopPropagation();
90
+ isDragging = false;
91
+ img.style.cursor = "grab";
92
+ },
93
+ reset() {
94
+ scale = 1;
95
+ lastX = 0;
96
+ lastY = 0;
97
+ last2X = 0;
98
+ last2Y = 0;
99
+ offsetX = 0;
100
+ offsetY = 0;
101
+ touchStore = {};
102
+ img.style.transform = "none";
103
+ img.onclick = undefined;
104
+ },
105
+ touchcancel: function (event) {
106
+ event.stopPropagation();
107
+ event.preventDefault();
108
+ img.onclick = undefined;
109
+ img.style.transition = "";
110
+ // 获取手势缩放比例
111
+ let newScale = scale * event.scale;
112
+ // 设置img标签的样式,实现缩放效果
113
+ img.style.transform =
114
+ "translate(" + offsetX + "px, " + offsetY + "px) scale(" + scale + ")";
115
+ },
116
+ touchend: function (event) {
117
+ // 更新缩放比例
118
+ event.stopPropagation();
119
+ img.onclick = undefined;
120
+ if (!event.targetTouches.length) {
121
+ touchStore.tpuchScale = false;
122
+ }
123
+ },
124
+ touchstart: function (event) {
125
+ event.stopPropagation();
126
+ if (!touchStore.tpuchScale) {
127
+ lastX = event.targetTouches[0].clientX - offsetX;
128
+ lastY = event.targetTouches[0].clientY - offsetY;
129
+ }
130
+ if (event.targetTouches[1]) {
131
+ touchStore.tpuchScale = true;
132
+ touchStore.last1X = event.targetTouches[0].clientX;
133
+ touchStore.last1Y = event.targetTouches[0].clientY;
134
+ touchStore.last2X = event.targetTouches[1].clientX;
135
+ touchStore.last2Y = event.targetTouches[1].clientY;
136
+ touchStore.scale = scale;
137
+ lastLen = Math.sqrt(
138
+ Math.pow(touchStore.last2X - touchStore.last1X, 2) +
139
+ Math.pow(touchStore.last2Y - touchStore.last1Y, 2)
140
+ );
141
+ }
142
+ },
143
+ touchmove: function (event) {
144
+ event.stopPropagation();
145
+ event.preventDefault();
146
+ img.onclick = disableClose;
147
+ if (event.targetTouches[1]) {
148
+ touchStore.delta1X = event.targetTouches[0].clientX;
149
+ touchStore.delta1Y = event.targetTouches[0].clientY;
150
+ touchStore.delta2X = event.targetTouches[1].clientX;
151
+ touchStore.delta2Y = event.targetTouches[1].clientY;
152
+ let centerX = imageContainer.offsetWidth / 2;
153
+ let centerY = imageContainer.offsetHeight / 2;
154
+ let deltaLen = Math.sqrt(
155
+ Math.pow(touchStore.delta2X - touchStore.delta1X, 2) +
156
+ Math.pow(touchStore.delta2Y - touchStore.delta1Y, 2)
157
+ );
158
+ let zoom = deltaLen / lastLen;
159
+ let lastScale = scale;
160
+ scale = touchStore.scale * zoom;
161
+ scale = Math.max(0.1, scale);
162
+ // 当前缩放中心坐标
163
+ let deltaCenterX =
164
+ touchStore.delta1X + (touchStore.delta2X - touchStore.delta1X) / 2;
165
+ let deltaCenterY =
166
+ touchStore.delta1Y + (touchStore.delta2Y - touchStore.delta1Y) / 2;
167
+ // 图片中心坐标
168
+ let imgCenterX = offsetX + centerX;
169
+ let imgCenterY = offsetY + centerY;
170
+ // 计算缩放后的图片中心偏移
171
+ offsetX =
172
+ deltaCenterX -
173
+ ((deltaCenterX - imgCenterX) / lastScale) * scale -
174
+ centerX;
175
+ offsetY =
176
+ deltaCenterY -
177
+ ((deltaCenterY - imgCenterY) / lastScale) * scale -
178
+ centerY;
179
+ function moveFun() {
180
+ if (Date.now() - moveFunLastExecTime < 5) return;
181
+ img.style.transition = "transform 0.3s ease";
182
+ img.style.transform =
183
+ "translate(" +
184
+ offsetX +
185
+ "px, " +
186
+ offsetY +
187
+ "px) scale(" +
188
+ scale +
189
+ ")";
190
+ }
191
+ if (Date.now() - moveFunLastExecTime >= 50) {
192
+ moveFun();
193
+ moveFunLastExecTime = Date.now();
194
+ } else {
195
+ clearTimeout(moveFunTimer);
196
+ moveFunTimer = setTimeout(() => {
197
+ moveFun();
198
+ }, 50);
199
+ }
200
+ } else if (!touchStore.tpuchScale) {
201
+ img.style.transition = "";
202
+ offsetX = event.targetTouches[0].clientX - lastX;
203
+ offsetY = event.targetTouches[0].clientY - lastY;
204
+ img.style.transform =
205
+ "translate(" +
206
+ offsetX +
207
+ "px, " +
208
+ offsetY +
209
+ "px) scale(" +
210
+ scale +
211
+ ")";
212
+ }
213
+ },
214
+ };
215
+
216
+ function reloadZoomEvent(new_event) {
217
+ if (!new_event) return;
218
+ imageContainer.removeEventListener("click", event.reset);
219
+ imageContainer.removeEventListener("wheel", event.wheel);
220
+ img.removeEventListener("mousedown", event.mousedown);
221
+ img.removeEventListener("mousemove", event.mousemove);
222
+ img.removeEventListener("mouseup", event.mouseup);
223
+ img.removeEventListener("mouseleave", event.mouseleave);
224
+ // 移动端
225
+ imageContainer.removeEventListener("touchend", event.touchend);
226
+ imageContainer.removeEventListener("touchstart", event.touchstart);
227
+ imageContainer.removeEventListener("touchmove", event.touchmove);
228
+ event = new_event;
229
+
230
+ imageContainer.addEventListener("click", event.reset);
231
+ imageContainer.addEventListener("wheel", event.wheel);
232
+ img.addEventListener("mousedown", event.mousedown);
233
+ img.addEventListener("mousemove", event.mousemove);
234
+ img.addEventListener("mouseup", event.mouseup);
235
+ img.addEventListener("mouseleave", event.mouseleave);
236
+ img.ondrag =
237
+ img.ondragend =
238
+ img.ondragstart =
239
+ function (e) {
240
+ e.stopPropagation();
241
+ e.preventDefault();
242
+ };
243
+ // 移动端
244
+ imageContainer.addEventListener("touchend", event.touchend);
245
+ imageContainer.addEventListener("touchstart", event.touchstart);
246
+ imageContainer.addEventListener("touchmove", event.touchmove);
247
+ }
248
+ reloadZoomEvent(event);
249
+ });
extensions/stable-diffusion-webui-zoomimage/readme.en.md ADDED
@@ -0,0 +1,8 @@
 
 
 
 
 
 
 
 
 
1
+ # [stable-diffusion-webui-zoomimage](https://github.com/viyiviyi/stable-diffusion-webui-zoomimage.git)
2
+
3
+ ---
4
+ [中文](readme.md) | english
5
+
6
+ An extension of [stable-diffusion-webui](https://github.com/AUTOMATIC1111/stable-diffusion-webui)
7
+
8
+ Added mouse zoom drag and gesture zoom drag functions to the pop-up layer of image viewing.
extensions/stable-diffusion-webui-zoomimage/readme.md ADDED
@@ -0,0 +1,9 @@
 
 
 
 
 
 
 
 
 
 
1
+ # stable-diffusion-webui-zoomimage
2
+
3
+ ---
4
+ 中文 | [english](readme.en.md)
5
+
6
+ 一个[stable-diffusion-webui](https://github.com/AUTOMATIC1111/stable-diffusion-webui)插件
7
+
8
+ 给图片查看的弹出层增加了鼠标缩放拖动和手势缩放拖动的功能
9
+