feat: ComfyUI 改走 10.60.74.221,测试页上传图超阈值自动降采样
将 worker 默认 ComfyUI 地址改为远端 10.60.74.221:8188;前端测试页在像素超过 1536000 时等比缩小到 786432 以内。 Co-authored-by: Cursor <cursoragent@cursor.com>
This commit is contained in:
@@ -49,6 +49,7 @@
|
||||
.lightbox img { max-width: 95%; max-height: 95%; }
|
||||
.hidden { display: none; }
|
||||
</style>
|
||||
<script src="/static/img_downscale.js"></script>
|
||||
</head>
|
||||
<body>
|
||||
<div class="container">
|
||||
@@ -243,8 +244,9 @@ function renderResult(d) {
|
||||
}
|
||||
|
||||
async function submitTest() {
|
||||
const file = $('imageFile').files[0];
|
||||
let file = $('imageFile').files[0];
|
||||
if (!file) { setStatus('请先选择图片', 'error'); return; }
|
||||
file = await window.downscaleImageFile(file);
|
||||
// 页面隐藏但仍提交的固定默认值
|
||||
const HIDDEN = {
|
||||
seg_model: 'segformer',
|
||||
|
||||
Reference in New Issue
Block a user