forked from extern/easydiffusion
Clamp controlnet images to multiples of 8
This commit is contained in:
parent
b97c906128
commit
83a5b5b46f
@ -2245,6 +2245,9 @@ controlImageSelector.addEventListener("change", loadControlnetImageFromFile)
|
|||||||
function controlImageLoad() {
|
function controlImageLoad() {
|
||||||
let w = controlImagePreview.naturalWidth
|
let w = controlImagePreview.naturalWidth
|
||||||
let h = controlImagePreview.naturalHeight
|
let h = controlImagePreview.naturalHeight
|
||||||
|
w = w - (w % 8)
|
||||||
|
h = h - (h % 8)
|
||||||
|
|
||||||
addImageSizeOption(w)
|
addImageSizeOption(w)
|
||||||
addImageSizeOption(h)
|
addImageSizeOption(h)
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user