ソースを参照

ofd 增加支持jp2、tiff图片渲染处理;优化双层OFD文本渲染效果;优化文本复制功能;提升OFD解析兼容性.

gaoxiongzaq 1 年間 前
コミット
c39a205cea

+ 1 - 0
server/src/main/resources/static/ofd/index.html

@@ -13,6 +13,7 @@
   <script src="js/jszip-utils-0.1.0.min.js"></script>
     <script src="js/Typr.js"></script>
   <script src="js/Typr.U.js"></script>
+   <script src="js/openjpeg.js"></script>
   <script src="js/cnofd.umd.min.js"></script>
 </head>
 

+ 30 - 0
server/src/main/resources/static/ofd/js/cnofd-view.js

@@ -53,6 +53,36 @@ window.onresize = function() {
     } ();
 };
 
+ //监听整个页面的 copy 事件
+document.addEventListener('copy',function(event){
+    let clipboardData = event.clipboardData || window.clipboardData;
+    if(!clipboardData) return;
+    
+    let text = window.getSelection().toString();
+    
+    if(text){
+        var copytext = text.replace(/\n|\r/g, "");     //去除换行符
+        
+        if (window.clipboardData) {     // Internet Explorer
+            window.clipboardData.setData ("Text", copytext);
+        } else {
+            var newdiv = document.createElement('div');
+            newdiv.style.position='absolute';
+            newdiv.style.left='-99999px';
+            
+            var body_element = document.getElementsByTagName('body')[0]; 
+            body_element.appendChild(newdiv);
+            newdiv.innerHTML = copytext;
+            
+            window.getSelection().selectAllChildren(newdiv);
+            
+            window.setTimeout(function() {            
+                body_element.removeChild(newdiv);            
+            },0);
+        }
+    }
+});
+
 // 手机端,隐藏缩放比例选择框,打开文件和打印按钮
 if (this.isMobile()) {
     if (document.getElementById("zoomSelect")) document.getElementById("zoomSelect").style.display = "none";

ファイルの差分が大きいため隠しています
+ 7657 - 3716
server/src/main/resources/static/ofd/js/cnofd.umd.min.js


ファイルの差分が大きいため隠しています
+ 432 - 0
server/src/main/resources/static/ofd/js/openjpeg.js