@kq_npm/client3d_webgl_vue 4.3.9 → 4.4.1
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/clientPrint/index.js +3 -3
- package/index.js +521 -14
- package/package.json +1 -1
- package/scenetohdimage/index.js +518 -11
- package/scenetohdimage/style/scenetohdimage.css +1 -1
- package/sceneview/index.js +521 -14
- package/sceneview/style/index.js +1 -1
- package/style.css +1 -1
package/scenetohdimage/index.js
CHANGED
|
@@ -25,10 +25,104 @@ return /******/ (function() { // webpackBootstrap
|
|
|
25
25
|
* 场景高清出图
|
|
26
26
|
**/
|
|
27
27
|
class SceneToHDImageViewModel {
|
|
28
|
-
|
|
28
|
+
// 输出图片区域
|
|
29
|
+
// 缩放比
|
|
30
|
+
constructor(viewer, options) {
|
|
29
31
|
(0,_Users_zpc_Documents_KQGEOSpace_KQGISClientForVue_node_modules_babel_runtime_helpers_esm_defineProperty_js__WEBPACK_IMPORTED_MODULE_0__/* ["default"] */ .Z)(this, "_viewer", null);
|
|
30
32
|
|
|
33
|
+
(0,_Users_zpc_Documents_KQGEOSpace_KQGISClientForVue_node_modules_babel_runtime_helpers_esm_defineProperty_js__WEBPACK_IMPORTED_MODULE_0__/* ["default"] */ .Z)(this, "_options", null);
|
|
34
|
+
|
|
35
|
+
(0,_Users_zpc_Documents_KQGEOSpace_KQGISClientForVue_node_modules_babel_runtime_helpers_esm_defineProperty_js__WEBPACK_IMPORTED_MODULE_0__/* ["default"] */ .Z)(this, "_canvasToImage", null);
|
|
36
|
+
|
|
37
|
+
(0,_Users_zpc_Documents_KQGEOSpace_KQGISClientForVue_node_modules_babel_runtime_helpers_esm_defineProperty_js__WEBPACK_IMPORTED_MODULE_0__/* ["default"] */ .Z)(this, "_exportPictureRegion", null);
|
|
38
|
+
|
|
39
|
+
(0,_Users_zpc_Documents_KQGEOSpace_KQGISClientForVue_node_modules_babel_runtime_helpers_esm_defineProperty_js__WEBPACK_IMPORTED_MODULE_0__/* ["default"] */ .Z)(this, "_pantographRatio", null);
|
|
40
|
+
|
|
31
41
|
this._viewer = viewer;
|
|
42
|
+
this._options = options;
|
|
43
|
+
this._viewer.enabledFXAA = true; // this._exportPictureRegion = document.createElement("div");
|
|
44
|
+
// this._exportPictureRegion.class = "export-picture-region";
|
|
45
|
+
// this._exportPictureRegion.id = "exportPictureRegion";
|
|
46
|
+
// this._tbSlider = document.createElement("div");
|
|
47
|
+
// this._tbSlider.class = "shutter-slider";
|
|
48
|
+
// this._tbSlider.id = "tbSlider";
|
|
49
|
+
// this._viewer.container.appendChild(this._lrSlider);
|
|
50
|
+
// this._viewer.container.appendChild(this._tbSlider);
|
|
51
|
+
|
|
52
|
+
console.log(this._viewer._container.id); //声明场景出图类
|
|
53
|
+
|
|
54
|
+
this._canvasToImage = new Cesium.Kq3dCanvasToImage(this._viewer._container.id, {
|
|
55
|
+
viewer: this._viewer,
|
|
56
|
+
canvas: this._viewer.scene.canvas
|
|
57
|
+
});
|
|
58
|
+
}
|
|
59
|
+
|
|
60
|
+
resizeExportRegionSize() {} // 出图
|
|
61
|
+
|
|
62
|
+
|
|
63
|
+
sceneToImages() {
|
|
64
|
+
var width = Number(this._options.width),
|
|
65
|
+
height = Number(this._options.height),
|
|
66
|
+
resolutionWidth = Number(this._options.resolutionWidth),
|
|
67
|
+
resolutionHeight = Number(this._options.resolutionHeight); //设置宽、高、图片类型
|
|
68
|
+
|
|
69
|
+
var options = {
|
|
70
|
+
width: width,
|
|
71
|
+
//图片宽度
|
|
72
|
+
height: height,
|
|
73
|
+
//图片高度
|
|
74
|
+
type: this._options.type //图片类型
|
|
75
|
+
|
|
76
|
+
};
|
|
77
|
+
|
|
78
|
+
if (width == resolutionWidth && height == resolutionHeight) {
|
|
79
|
+
this._canvasToImage.saveAsimages(this._viewer.scene.canvas, options);
|
|
80
|
+
} else {
|
|
81
|
+
this._viewer.render();
|
|
82
|
+
|
|
83
|
+
var ctx = this._viewer.scene.canvas.getContext("2d");
|
|
84
|
+
|
|
85
|
+
var startX = (resolutionWidth - width) / 2,
|
|
86
|
+
startY = (resolutionHeight - height) / 2;
|
|
87
|
+
var canvas = document.createElement('canvas');
|
|
88
|
+
canvas.width = width;
|
|
89
|
+
canvas.height = height;
|
|
90
|
+
var newCtx = canvas.getContext("2d");
|
|
91
|
+
newCtx.drawImage(this._viewer.canvas, startX, startY, width, height, 0, 0, width, height);
|
|
92
|
+
|
|
93
|
+
this._canvasToImage.saveAsimages(canvas, options);
|
|
94
|
+
}
|
|
95
|
+
}
|
|
96
|
+
|
|
97
|
+
scaleCesiumContainer() {
|
|
98
|
+
var bWidth = $('body').width(),
|
|
99
|
+
bHeight = $('body').height();
|
|
100
|
+
var width = Number(this._options.resolutionWidth),
|
|
101
|
+
height = Number(this._options.resolutionHeight);
|
|
102
|
+
var wRatio = bWidth / width,
|
|
103
|
+
hRatio = bHeight / height; // if (wRatio < 1 || hRatio < 1) {
|
|
104
|
+
|
|
105
|
+
var scale = Math.min(wRatio, hRatio);
|
|
106
|
+
$('#cesiumContainer').css('width', width + 'px').css('height', height + 'px').css('transform', `translate(-50%,-50%) scale(${scale > 1 ? 1 : scale})`);
|
|
107
|
+
this._options.scale = scale > 1 ? 1 : scale;
|
|
108
|
+
} //将值转换成4的倍数
|
|
109
|
+
|
|
110
|
+
|
|
111
|
+
convertValueTo4Times(value) {
|
|
112
|
+
if (Math.abs(value % 4) > 0.000001) {
|
|
113
|
+
if (Math.abs(value % 4) > 1.5) {
|
|
114
|
+
value = 4 * (parseInt(value / 4) + 1);
|
|
115
|
+
} else {
|
|
116
|
+
value = 4 * parseInt(value / 4);
|
|
117
|
+
}
|
|
118
|
+
}
|
|
119
|
+
|
|
120
|
+
return value || 4;
|
|
121
|
+
} // 参数切换
|
|
122
|
+
|
|
123
|
+
|
|
124
|
+
paramsChanged(key, val) {
|
|
125
|
+
this._options[key] = val;
|
|
32
126
|
} // 销毁
|
|
33
127
|
|
|
34
128
|
|
|
@@ -200,6 +294,9 @@ var vue_i18n_cjs_js_ = __webpack_require__(7080);
|
|
|
200
294
|
const _hoisted_1 = {
|
|
201
295
|
class: "kq3d-scene-to-hd-image-box"
|
|
202
296
|
};
|
|
297
|
+
const _hoisted_2 = {
|
|
298
|
+
class: "kq3d-scene-to-hd-image-footer"
|
|
299
|
+
};
|
|
203
300
|
|
|
204
301
|
|
|
205
302
|
|
|
@@ -260,12 +357,41 @@ const __default__ = {
|
|
|
260
357
|
} = (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.getCurrentInstance)();
|
|
261
358
|
let currentLang = (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.ref)("");
|
|
262
359
|
let language = (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.ref)({});
|
|
263
|
-
let collapseValue = (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.ref)("
|
|
360
|
+
let collapseValue = (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.ref)("screenParameter"); // 获取组件传参
|
|
264
361
|
// 分析类
|
|
265
362
|
|
|
266
363
|
let viewModel = null; // 参数
|
|
267
364
|
|
|
268
|
-
let formItem = (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.reactive)({
|
|
365
|
+
let formItem = (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.reactive)({
|
|
366
|
+
screenWidth: props.settingParams && props.settingParams.screenWidth || 100,
|
|
367
|
+
// 屏幕宽度
|
|
368
|
+
minScreenWidth: props.settingParams && props.settingParams.minScreenWidth || 0,
|
|
369
|
+
// 屏幕宽度最小值
|
|
370
|
+
maxScreenWidth: props.settingParams && props.settingParams.maxScreenWidth || 1920,
|
|
371
|
+
// 屏幕宽度最大值
|
|
372
|
+
screenHeight: props.settingParams && props.settingParams.screenHeight || 100,
|
|
373
|
+
// 屏幕宽度
|
|
374
|
+
minScreenHeight: props.settingParams && props.settingParams.minScreenHeight || 0,
|
|
375
|
+
// 屏幕宽度最小值
|
|
376
|
+
maxScreenHeight: props.settingParams && props.settingParams.maxScreenHeight || 900,
|
|
377
|
+
// 屏幕宽度最大值
|
|
378
|
+
displayArea: props.settingParams && props.settingParams.displayArea || true,
|
|
379
|
+
// 是否显示区域
|
|
380
|
+
imgWidth: props.settingParams && props.settingParams.imgWidth || 100,
|
|
381
|
+
// 图片宽度
|
|
382
|
+
minImgWidth: props.settingParams && props.settingParams.minImgWidth || 0,
|
|
383
|
+
// 图片宽度最小值
|
|
384
|
+
maxImgWidth: props.settingParams && props.settingParams.maxImgWidth || 1920,
|
|
385
|
+
// 图片宽度最大值
|
|
386
|
+
imgHeight: props.settingParams && props.settingParams.imgHeight || 100,
|
|
387
|
+
// 图片高度
|
|
388
|
+
minImgHeight: props.settingParams && props.settingParams.minImgHeight || 0,
|
|
389
|
+
// 图片高度最小值
|
|
390
|
+
maxImgHeight: props.settingParams && props.settingParams.maxImgHeight || 900,
|
|
391
|
+
// 图片高度最大值
|
|
392
|
+
imgFormat: props.settingParams && props.settingParams.imgFormat || "jpg" // 图片类型
|
|
393
|
+
|
|
394
|
+
}); // 组件容器Ref
|
|
269
395
|
|
|
270
396
|
let boxRef = (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.ref)(null); // 生成组件默认header
|
|
271
397
|
|
|
@@ -307,23 +433,48 @@ const __default__ = {
|
|
|
307
433
|
// 生成headerTemp
|
|
308
434
|
headerTemp.value = (0,util_.createHeaderTemp)(boxRef.value, (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.toRefs)(props), headerTempRef, headerTempTitle);
|
|
309
435
|
}
|
|
310
|
-
}; //
|
|
436
|
+
}; // 高清出图
|
|
437
|
+
|
|
311
438
|
|
|
439
|
+
function toHDImageHander() {
|
|
440
|
+
viewModel && viewModel.sceneToImages();
|
|
441
|
+
} // 参数改变
|
|
312
442
|
|
|
313
|
-
|
|
443
|
+
|
|
444
|
+
function paramsChanged(key) {
|
|
445
|
+
viewModel && viewModel.paramsChanged(key, formItem[key]);
|
|
446
|
+
} // 销毁
|
|
314
447
|
|
|
315
448
|
|
|
316
449
|
(0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.onBeforeUnmount)(() => {
|
|
317
450
|
viewModel && viewModel.destroy();
|
|
318
451
|
});
|
|
319
|
-
expose({
|
|
320
|
-
paramsChanged
|
|
321
|
-
});
|
|
452
|
+
expose({});
|
|
322
453
|
return (_ctx, _cache) => {
|
|
454
|
+
const _component_kq_slider = (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.resolveComponent)("kq-slider");
|
|
455
|
+
|
|
456
|
+
const _component_kq_col = (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.resolveComponent)("kq-col");
|
|
457
|
+
|
|
458
|
+
const _component_kq_input_number = (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.resolveComponent)("kq-input-number");
|
|
459
|
+
|
|
460
|
+
const _component_kq_row = (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.resolveComponent)("kq-row");
|
|
461
|
+
|
|
462
|
+
const _component_kq_form_item = (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.resolveComponent)("kq-form-item");
|
|
463
|
+
|
|
464
|
+
const _component_kq_switch = (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.resolveComponent)("kq-switch");
|
|
465
|
+
|
|
466
|
+
const _component_kq_form = (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.resolveComponent)("kq-form");
|
|
467
|
+
|
|
323
468
|
const _component_kq_collapse_item = (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.resolveComponent)("kq-collapse-item");
|
|
324
469
|
|
|
470
|
+
const _component_kq_option = (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.resolveComponent)("kq-option");
|
|
471
|
+
|
|
472
|
+
const _component_kq_select = (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.resolveComponent)("kq-select");
|
|
473
|
+
|
|
325
474
|
const _component_kq_collapse = (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.resolveComponent)("kq-collapse");
|
|
326
475
|
|
|
476
|
+
const _component_kq_button = (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.resolveComponent)("kq-button");
|
|
477
|
+
|
|
327
478
|
return (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.openBlock)(), (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.createElementBlock)("section", {
|
|
328
479
|
class: (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.normalizeClass)(["kq3d-scene-to-hd-image", {
|
|
329
480
|
'kq-box-shadow': __props.showShadow
|
|
@@ -342,8 +493,351 @@ const __default__ = {
|
|
|
342
493
|
default: (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.withCtx)(() => [(0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.createVNode)(_component_kq_collapse_item, {
|
|
343
494
|
class: "scene-content",
|
|
344
495
|
title: (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.unref)(language).screenParameter,
|
|
345
|
-
name: "
|
|
346
|
-
},
|
|
496
|
+
name: "screenParameter"
|
|
497
|
+
}, {
|
|
498
|
+
default: (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.withCtx)(() => [(0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.createVNode)(_component_kq_form, {
|
|
499
|
+
"label-width": "100px",
|
|
500
|
+
"label-position": "left"
|
|
501
|
+
}, {
|
|
502
|
+
default: (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.withCtx)(() => [(0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.createVNode)(_component_kq_row, null, {
|
|
503
|
+
default: (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.withCtx)(() => [(0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.createVNode)(_component_kq_form_item, {
|
|
504
|
+
label: (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.unref)(language).screenWidth
|
|
505
|
+
}, {
|
|
506
|
+
default: (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.withCtx)(() => [(0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.createVNode)(_component_kq_row, {
|
|
507
|
+
style: {
|
|
508
|
+
"display": "flex"
|
|
509
|
+
}
|
|
510
|
+
}, {
|
|
511
|
+
default: (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.withCtx)(() => [(0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.createVNode)(_component_kq_col, {
|
|
512
|
+
span: 16
|
|
513
|
+
}, {
|
|
514
|
+
default: (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.withCtx)(() => [(0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.createVNode)(_component_kq_slider, {
|
|
515
|
+
modelValue: (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.unref)(formItem).screenWidth,
|
|
516
|
+
"onUpdate:modelValue": _cache[0] || (_cache[0] = $event => (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.unref)(formItem).screenWidth = $event),
|
|
517
|
+
step: 1,
|
|
518
|
+
min: (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.unref)(formItem).minScreenWidth,
|
|
519
|
+
max: (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.unref)(formItem).maxScreenHeight,
|
|
520
|
+
onInput: _cache[1] || (_cache[1] = $event => paramsChanged('screenWidth'))
|
|
521
|
+
}, null, 8
|
|
522
|
+
/* PROPS */
|
|
523
|
+
, ["modelValue", "min", "max"])]),
|
|
524
|
+
_: 1
|
|
525
|
+
/* STABLE */
|
|
526
|
+
|
|
527
|
+
}), (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.createVNode)(_component_kq_col, {
|
|
528
|
+
span: 8
|
|
529
|
+
}, {
|
|
530
|
+
default: (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.withCtx)(() => [(0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.createVNode)(_component_kq_input_number, {
|
|
531
|
+
modelValue: (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.unref)(formItem).screenWidth,
|
|
532
|
+
"onUpdate:modelValue": _cache[2] || (_cache[2] = $event => (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.unref)(formItem).screenWidth = $event),
|
|
533
|
+
min: (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.unref)(formItem).minScreenWidth,
|
|
534
|
+
max: (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.unref)(formItem).maxScreenWidth,
|
|
535
|
+
step: 1,
|
|
536
|
+
"controls-position": "right",
|
|
537
|
+
onInput: _cache[3] || (_cache[3] = $event => paramsChanged('screenWidth'))
|
|
538
|
+
}, null, 8
|
|
539
|
+
/* PROPS */
|
|
540
|
+
, ["modelValue", "min", "max"])]),
|
|
541
|
+
_: 1
|
|
542
|
+
/* STABLE */
|
|
543
|
+
|
|
544
|
+
})]),
|
|
545
|
+
_: 1
|
|
546
|
+
/* STABLE */
|
|
547
|
+
|
|
548
|
+
})]),
|
|
549
|
+
_: 1
|
|
550
|
+
/* STABLE */
|
|
551
|
+
|
|
552
|
+
}, 8
|
|
553
|
+
/* PROPS */
|
|
554
|
+
, ["label"])]),
|
|
555
|
+
_: 1
|
|
556
|
+
/* STABLE */
|
|
557
|
+
|
|
558
|
+
}), (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.createVNode)(_component_kq_row, null, {
|
|
559
|
+
default: (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.withCtx)(() => [(0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.createVNode)(_component_kq_form_item, {
|
|
560
|
+
label: (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.unref)(language).screenHeight
|
|
561
|
+
}, {
|
|
562
|
+
default: (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.withCtx)(() => [(0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.createVNode)(_component_kq_row, {
|
|
563
|
+
style: {
|
|
564
|
+
"display": "flex"
|
|
565
|
+
}
|
|
566
|
+
}, {
|
|
567
|
+
default: (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.withCtx)(() => [(0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.createVNode)(_component_kq_col, {
|
|
568
|
+
span: 16
|
|
569
|
+
}, {
|
|
570
|
+
default: (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.withCtx)(() => [(0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.createVNode)(_component_kq_slider, {
|
|
571
|
+
modelValue: (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.unref)(formItem).screenHeight,
|
|
572
|
+
"onUpdate:modelValue": _cache[4] || (_cache[4] = $event => (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.unref)(formItem).screenHeight = $event),
|
|
573
|
+
step: 1,
|
|
574
|
+
min: (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.unref)(formItem).minScreenHeight,
|
|
575
|
+
max: (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.unref)(formItem).maxScreenHeight,
|
|
576
|
+
onInput: _cache[5] || (_cache[5] = $event => paramsChanged('screenHeight'))
|
|
577
|
+
}, null, 8
|
|
578
|
+
/* PROPS */
|
|
579
|
+
, ["modelValue", "min", "max"])]),
|
|
580
|
+
_: 1
|
|
581
|
+
/* STABLE */
|
|
582
|
+
|
|
583
|
+
}), (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.createVNode)(_component_kq_col, {
|
|
584
|
+
span: 8
|
|
585
|
+
}, {
|
|
586
|
+
default: (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.withCtx)(() => [(0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.createVNode)(_component_kq_input_number, {
|
|
587
|
+
modelValue: (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.unref)(formItem).screenHeight,
|
|
588
|
+
"onUpdate:modelValue": _cache[6] || (_cache[6] = $event => (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.unref)(formItem).screenHeight = $event),
|
|
589
|
+
min: (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.unref)(formItem).minScreenHeight,
|
|
590
|
+
max: (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.unref)(formItem).maxScreenHeight,
|
|
591
|
+
step: 1,
|
|
592
|
+
"controls-position": "right",
|
|
593
|
+
onInput: _cache[7] || (_cache[7] = $event => paramsChanged('screenHeight'))
|
|
594
|
+
}, null, 8
|
|
595
|
+
/* PROPS */
|
|
596
|
+
, ["modelValue", "min", "max"])]),
|
|
597
|
+
_: 1
|
|
598
|
+
/* STABLE */
|
|
599
|
+
|
|
600
|
+
})]),
|
|
601
|
+
_: 1
|
|
602
|
+
/* STABLE */
|
|
603
|
+
|
|
604
|
+
})]),
|
|
605
|
+
_: 1
|
|
606
|
+
/* STABLE */
|
|
607
|
+
|
|
608
|
+
}, 8
|
|
609
|
+
/* PROPS */
|
|
610
|
+
, ["label"])]),
|
|
611
|
+
_: 1
|
|
612
|
+
/* STABLE */
|
|
613
|
+
|
|
614
|
+
}), (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.createVNode)(_component_kq_row, null, {
|
|
615
|
+
default: (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.withCtx)(() => [(0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.createVNode)(_component_kq_form_item, {
|
|
616
|
+
label: (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.unref)(language).displayArea
|
|
617
|
+
}, {
|
|
618
|
+
default: (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.withCtx)(() => [(0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.createVNode)(_component_kq_row, {
|
|
619
|
+
style: {
|
|
620
|
+
"text-align": "left"
|
|
621
|
+
}
|
|
622
|
+
}, {
|
|
623
|
+
default: (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.withCtx)(() => [(0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.createVNode)(_component_kq_col, {
|
|
624
|
+
span: 24,
|
|
625
|
+
style: {}
|
|
626
|
+
}, {
|
|
627
|
+
default: (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.withCtx)(() => [(0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.createVNode)(_component_kq_switch, {
|
|
628
|
+
modelValue: (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.unref)(formItem).displayArea,
|
|
629
|
+
"onUpdate:modelValue": _cache[8] || (_cache[8] = $event => (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.unref)(formItem).displayArea = $event),
|
|
630
|
+
"controls-position": "left",
|
|
631
|
+
onChange: _cache[9] || (_cache[9] = $event => paramsChanged('displayArea'))
|
|
632
|
+
}, null, 8
|
|
633
|
+
/* PROPS */
|
|
634
|
+
, ["modelValue"])]),
|
|
635
|
+
_: 1
|
|
636
|
+
/* STABLE */
|
|
637
|
+
|
|
638
|
+
})]),
|
|
639
|
+
_: 1
|
|
640
|
+
/* STABLE */
|
|
641
|
+
|
|
642
|
+
})]),
|
|
643
|
+
_: 1
|
|
644
|
+
/* STABLE */
|
|
645
|
+
|
|
646
|
+
}, 8
|
|
647
|
+
/* PROPS */
|
|
648
|
+
, ["label"])]),
|
|
649
|
+
_: 1
|
|
650
|
+
/* STABLE */
|
|
651
|
+
|
|
652
|
+
})]),
|
|
653
|
+
_: 1
|
|
654
|
+
/* STABLE */
|
|
655
|
+
|
|
656
|
+
})]),
|
|
657
|
+
_: 1
|
|
658
|
+
/* STABLE */
|
|
659
|
+
|
|
660
|
+
}, 8
|
|
661
|
+
/* PROPS */
|
|
662
|
+
, ["title"]), (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.createVNode)(_component_kq_collapse_item, {
|
|
663
|
+
class: "kq3d-scene-to-hd-image-collapse-item",
|
|
664
|
+
title: (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.unref)(language).pictureSpecification,
|
|
665
|
+
name: "pictureSpecification"
|
|
666
|
+
}, {
|
|
667
|
+
default: (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.withCtx)(() => [(0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.createVNode)(_component_kq_form, {
|
|
668
|
+
"label-width": "100px",
|
|
669
|
+
"label-position": "left"
|
|
670
|
+
}, {
|
|
671
|
+
default: (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.withCtx)(() => [(0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.createVNode)(_component_kq_row, null, {
|
|
672
|
+
default: (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.withCtx)(() => [(0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.createVNode)(_component_kq_form_item, {
|
|
673
|
+
label: (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.unref)(language).imgFormat
|
|
674
|
+
}, {
|
|
675
|
+
default: (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.withCtx)(() => [(0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.createVNode)(_component_kq_row, {
|
|
676
|
+
style: {
|
|
677
|
+
"display": "flex"
|
|
678
|
+
}
|
|
679
|
+
}, {
|
|
680
|
+
default: (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.withCtx)(() => [(0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.createVNode)(_component_kq_select, {
|
|
681
|
+
modelValue: (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.unref)(formItem).imgFormat,
|
|
682
|
+
"onUpdate:modelValue": _cache[10] || (_cache[10] = $event => (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.unref)(formItem).imgFormat = $event),
|
|
683
|
+
onChange: _cache[11] || (_cache[11] = $event => paramsChanged('imgFormat')),
|
|
684
|
+
style: {
|
|
685
|
+
"width": "100%"
|
|
686
|
+
}
|
|
687
|
+
}, {
|
|
688
|
+
default: (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.withCtx)(() => [(0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.createVNode)(_component_kq_option, {
|
|
689
|
+
label: "JPG",
|
|
690
|
+
value: "jpg"
|
|
691
|
+
}), (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.createVNode)(_component_kq_option, {
|
|
692
|
+
label: "PNG",
|
|
693
|
+
value: "png"
|
|
694
|
+
}), (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.createVNode)(_component_kq_option, {
|
|
695
|
+
label: "BMP",
|
|
696
|
+
value: "bmp"
|
|
697
|
+
}), (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.createVNode)(_component_kq_option, {
|
|
698
|
+
label: "JPEG",
|
|
699
|
+
value: "jpeg"
|
|
700
|
+
})]),
|
|
701
|
+
_: 1
|
|
702
|
+
/* STABLE */
|
|
703
|
+
|
|
704
|
+
}, 8
|
|
705
|
+
/* PROPS */
|
|
706
|
+
, ["modelValue"])]),
|
|
707
|
+
_: 1
|
|
708
|
+
/* STABLE */
|
|
709
|
+
|
|
710
|
+
})]),
|
|
711
|
+
_: 1
|
|
712
|
+
/* STABLE */
|
|
713
|
+
|
|
714
|
+
}, 8
|
|
715
|
+
/* PROPS */
|
|
716
|
+
, ["label"])]),
|
|
717
|
+
_: 1
|
|
718
|
+
/* STABLE */
|
|
719
|
+
|
|
720
|
+
}), (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.createVNode)(_component_kq_row, null, {
|
|
721
|
+
default: (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.withCtx)(() => [(0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.createVNode)(_component_kq_form_item, {
|
|
722
|
+
label: (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.unref)(language).imgWidth + '(px)'
|
|
723
|
+
}, {
|
|
724
|
+
default: (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.withCtx)(() => [(0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.createVNode)(_component_kq_row, {
|
|
725
|
+
style: {
|
|
726
|
+
"display": "flex"
|
|
727
|
+
}
|
|
728
|
+
}, {
|
|
729
|
+
default: (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.withCtx)(() => [(0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.createVNode)(_component_kq_col, {
|
|
730
|
+
span: 16
|
|
731
|
+
}, {
|
|
732
|
+
default: (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.withCtx)(() => [(0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.createVNode)(_component_kq_slider, {
|
|
733
|
+
modelValue: (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.unref)(formItem).imgWidth,
|
|
734
|
+
"onUpdate:modelValue": _cache[12] || (_cache[12] = $event => (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.unref)(formItem).imgWidth = $event),
|
|
735
|
+
step: 1,
|
|
736
|
+
min: (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.unref)(formItem).minImgWidth,
|
|
737
|
+
max: (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.unref)(formItem).maxImgWidth,
|
|
738
|
+
onInput: _cache[13] || (_cache[13] = $event => paramsChanged('imgWidth'))
|
|
739
|
+
}, null, 8
|
|
740
|
+
/* PROPS */
|
|
741
|
+
, ["modelValue", "min", "max"])]),
|
|
742
|
+
_: 1
|
|
743
|
+
/* STABLE */
|
|
744
|
+
|
|
745
|
+
}), (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.createVNode)(_component_kq_col, {
|
|
746
|
+
span: 8
|
|
747
|
+
}, {
|
|
748
|
+
default: (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.withCtx)(() => [(0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.createVNode)(_component_kq_input_number, {
|
|
749
|
+
modelValue: (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.unref)(formItem).imgWidth,
|
|
750
|
+
"onUpdate:modelValue": _cache[14] || (_cache[14] = $event => (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.unref)(formItem).imgWidth = $event),
|
|
751
|
+
min: (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.unref)(formItem).minImgWidth,
|
|
752
|
+
max: (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.unref)(formItem).maxImgWidth,
|
|
753
|
+
step: 1,
|
|
754
|
+
"controls-position": "right",
|
|
755
|
+
onInput: _cache[15] || (_cache[15] = $event => paramsChanged('imgWidth'))
|
|
756
|
+
}, null, 8
|
|
757
|
+
/* PROPS */
|
|
758
|
+
, ["modelValue", "min", "max"])]),
|
|
759
|
+
_: 1
|
|
760
|
+
/* STABLE */
|
|
761
|
+
|
|
762
|
+
})]),
|
|
763
|
+
_: 1
|
|
764
|
+
/* STABLE */
|
|
765
|
+
|
|
766
|
+
})]),
|
|
767
|
+
_: 1
|
|
768
|
+
/* STABLE */
|
|
769
|
+
|
|
770
|
+
}, 8
|
|
771
|
+
/* PROPS */
|
|
772
|
+
, ["label"])]),
|
|
773
|
+
_: 1
|
|
774
|
+
/* STABLE */
|
|
775
|
+
|
|
776
|
+
}), (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.createVNode)(_component_kq_row, null, {
|
|
777
|
+
default: (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.withCtx)(() => [(0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.createVNode)(_component_kq_form_item, {
|
|
778
|
+
label: (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.unref)(language).imgHeight + '(px)'
|
|
779
|
+
}, {
|
|
780
|
+
default: (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.withCtx)(() => [(0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.createVNode)(_component_kq_row, {
|
|
781
|
+
style: {
|
|
782
|
+
"display": "flex"
|
|
783
|
+
}
|
|
784
|
+
}, {
|
|
785
|
+
default: (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.withCtx)(() => [(0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.createVNode)(_component_kq_col, {
|
|
786
|
+
span: 16
|
|
787
|
+
}, {
|
|
788
|
+
default: (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.withCtx)(() => [(0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.createVNode)(_component_kq_slider, {
|
|
789
|
+
modelValue: (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.unref)(formItem).imgHeight,
|
|
790
|
+
"onUpdate:modelValue": _cache[16] || (_cache[16] = $event => (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.unref)(formItem).imgHeight = $event),
|
|
791
|
+
step: 1,
|
|
792
|
+
min: (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.unref)(formItem).minImgHeight,
|
|
793
|
+
max: (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.unref)(formItem).maxImgHeight,
|
|
794
|
+
onInput: _cache[17] || (_cache[17] = $event => paramsChanged('imgHeight'))
|
|
795
|
+
}, null, 8
|
|
796
|
+
/* PROPS */
|
|
797
|
+
, ["modelValue", "min", "max"])]),
|
|
798
|
+
_: 1
|
|
799
|
+
/* STABLE */
|
|
800
|
+
|
|
801
|
+
}), (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.createVNode)(_component_kq_col, {
|
|
802
|
+
span: 8
|
|
803
|
+
}, {
|
|
804
|
+
default: (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.withCtx)(() => [(0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.createVNode)(_component_kq_input_number, {
|
|
805
|
+
modelValue: (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.unref)(formItem).imgHeight,
|
|
806
|
+
"onUpdate:modelValue": _cache[18] || (_cache[18] = $event => (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.unref)(formItem).imgHeight = $event),
|
|
807
|
+
min: (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.unref)(formItem).minImgHeight,
|
|
808
|
+
max: (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.unref)(formItem).maxImgHeight,
|
|
809
|
+
step: 1,
|
|
810
|
+
"controls-position": "right",
|
|
811
|
+
onInput: _cache[19] || (_cache[19] = $event => paramsChanged('imgHeight'))
|
|
812
|
+
}, null, 8
|
|
813
|
+
/* PROPS */
|
|
814
|
+
, ["modelValue", "min", "max"])]),
|
|
815
|
+
_: 1
|
|
816
|
+
/* STABLE */
|
|
817
|
+
|
|
818
|
+
})]),
|
|
819
|
+
_: 1
|
|
820
|
+
/* STABLE */
|
|
821
|
+
|
|
822
|
+
})]),
|
|
823
|
+
_: 1
|
|
824
|
+
/* STABLE */
|
|
825
|
+
|
|
826
|
+
}, 8
|
|
827
|
+
/* PROPS */
|
|
828
|
+
, ["label"])]),
|
|
829
|
+
_: 1
|
|
830
|
+
/* STABLE */
|
|
831
|
+
|
|
832
|
+
})]),
|
|
833
|
+
_: 1
|
|
834
|
+
/* STABLE */
|
|
835
|
+
|
|
836
|
+
})]),
|
|
837
|
+
_: 1
|
|
838
|
+
/* STABLE */
|
|
839
|
+
|
|
840
|
+
}, 8
|
|
347
841
|
/* PROPS */
|
|
348
842
|
, ["title"])]),
|
|
349
843
|
_: 1
|
|
@@ -351,7 +845,20 @@ const __default__ = {
|
|
|
351
845
|
|
|
352
846
|
}, 8
|
|
353
847
|
/* PROPS */
|
|
354
|
-
, ["model-value"])
|
|
848
|
+
, ["model-value"]), (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.createElementVNode)("div", _hoisted_2, [(0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.createVNode)(_component_kq_button, {
|
|
849
|
+
onClick: _cache[20] || (_cache[20] = (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.withModifiers)($event => toHDImageHander(), ["stop"])),
|
|
850
|
+
title: (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.unref)(language).sceneToHDImageTips,
|
|
851
|
+
type: "primary"
|
|
852
|
+
}, {
|
|
853
|
+
default: (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.withCtx)(() => [(0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.createTextVNode)((0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.toDisplayString)((0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.unref)(language).sceneToHDImageTips), 1
|
|
854
|
+
/* TEXT */
|
|
855
|
+
)]),
|
|
856
|
+
_: 1
|
|
857
|
+
/* STABLE */
|
|
858
|
+
|
|
859
|
+
}, 8
|
|
860
|
+
/* PROPS */
|
|
861
|
+
, ["title"])])])], 2
|
|
355
862
|
/* CLASS */
|
|
356
863
|
);
|
|
357
864
|
};
|
|
@@ -1 +1 @@
|
|
|
1
|
-
.kq3d-scene-to-hd-image{z-index:999;border-radius:var(--kq-border-radius-base);padding:16px;
|
|
1
|
+
.kq3d-scene-to-hd-image{z-index:999;border-radius:var(--kq-border-radius-base);padding:16px;pointer-events:auto;cursor:default;background-color:var(--kq-bg-color)}.kq3d-scene-to-hd-image .kq3d-scene-to-hd-image-box{width:360px}.kq3d-scene-to-hd-image .kq3d-scene-to-hd-image-collapse-item{margin-top:16px}.kq3d-scene-to-hd-image .kq3d-scene-to-hd-image-tip{color:var(--kq-text-color-regular);font-size:var(--kq-font-size-base)}.kq3d-scene-to-hd-image .kq3d-scene-to-hd-image-tip p{margin-top:0;margin-bottom:16px}.kq3d-scene-to-hd-image .kq3d-scene-to-hd-image-span{margin:0 20px}.kq3d-scene-to-hd-image .kq-select{width:100%}.kq3d-scene-to-hd-image .kq-collapse{border:unset}.kq3d-scene-to-hd-image .kq-collapse .kq-collapse-item__header{border:unset;height:38px;background-color:var(--kq-fill-color-light);font-weight:700;padding:0 16px;font-size:16px}.kq3d-scene-to-hd-image .kq-collapse .kq-collapse-item__arrow{margin:0 0 0 auto}.kq3d-scene-to-hd-image .kq-collapse .kq-collapse-item__wrap .kq-collapse-item__content{padding-bottom:unset;border:unset;padding-top:10px}.kq3d-scene-to-hd-image .kq-form-item{margin-bottom:8px}.kq3d-scene-to-hd-image .kq-form-item__content{text-align:end;display:block}.kq3d-scene-to-hd-image .kq-row{display:block}.kq3d-scene-to-hd-image .kq-slider{width:95%;padding-left:7px}.kq3d-scene-to-hd-image .kq-slider .kq-slider__button{width:14px;height:14px}.kq3d-scene-to-hd-image .kq-input-number.is-controls-right{width:65px}.kq3d-scene-to-hd-image .kq-input-number.is-controls-right .kq-input-number__decrease,.kq3d-scene-to-hd-image .kq-input-number.is-controls-right .kq-input-number__increase{width:20px}.kq3d-scene-to-hd-image .kq-col-8 .kq-input-number .kq-input__wrapper,.kq3d-scene-to-hd-image .kq-input-number.is-controls-right .kq-input__wrapper{padding-left:0;padding-right:20px}.kq3d-scene-to-hd-image .kq-color-picker,.kq3d-scene-to-hd-image .kq-color-picker .kq-color-picker__mask,.kq3d-scene-to-hd-image .kq-color-picker .kq-color-picker__trigger{width:100%}.kq3d-scene-to-hd-image .kq3d-scene-to-hd-image-line{width:80%;margin:14px 8px;height:2px;overflow:hidden;background:#c0c4cc;border-radius:4px}.kq3d-scene-to-hd-image .kq3d-scene-to-hd-image-legend{height:24px}.kq3d-scene-to-hd-image .kq3d-scene-to-hd-image-footer{text-align:right;padding:16px 0 0}
|