Skip to content

11627685/easyJBIG2

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

12 Commits
 
 
 
 
 
 
 
 
 
 

Repository files navigation

easyJBIG2show

an easy JBIG2 file web show
csdn地址

一、背景

最近无意中接触到了一个二维码图片,该图片格式是jb2格式。翻阅资料发现JBIG标准最初在1993年发布,在当时被广泛应用于传真机和文档扫描仪等设备中。JBIG采用了一种自适应二进制编码算法,能够有效地压缩包含大量文本和线条等的二值图像。
随着技术的进步和需求的增加,JBIG2标准于2000年发布,对于从传真到高分辨率彩色扫描文档等各种类型的图像进行无损压缩提供了更好的性能和灵活性。JBIG2引入了更先进的编码技术,如上下文自适应算法和模板匹配,能够进一步减小文件大小,提高压缩率。 JBIG2标准的发布促使了许多设备和应用程序的支持。它被广泛用于电子归档、数字图书馆、OCR(光学字符识别)和文档管理等领域,以实现高效的文档扫描和存储。 总的来说,JBIG2作为一种专门针对二值图像的无损压缩技术,为高质量的文档图像处理提供了重要的工具和方法,并在数字化文档管理和传输中发挥了重要的作用。
由于web端的图片不能对jb2文件格式正确展示,由此想到需要转换。

二、前人经验

网络资源很少,这也是为什么在这里分享的原因。虽然很少,但还是找了些蛛丝马迹,指向了mozilla/pdf.js。
在这里我把需要使用的所有js都整合到eaysjbig2.js文件内主要包括了:
(1) "../shared/util.js" 文件内的 shadow;
(2)"./core_utils.js" 文件内的log2, readInt8, readUint16, readUint32;
(3)"./arithmetic_decoder.js";
(4)jbig2.js

三、html中使用

在index.html中,尝试打开一个jb2文件格式并把他展示到canvas上。

 <!DOCTYPE html>
<html>
<head>
    <title>打开本地文件</title>
    <script>
        function handleFileSelect(event) {
            var files = event.target.files; // 获取选择的文件数组
            var file = files[0]; // 获取第一个文件
            var reader = new FileReader();
            reader.onload = function (e) {
                var arrayBuffer = e.target.result;
                // 创建一个Uint8Array来存储文件内容
                var uintArray = new Uint8Array(arrayBuffer);
                var jbig2 = new Jbig2Image();
                var data = jbig2.parse(uintArray);
                var canvas = document.createElement('canvas');
                canvas.width = jbig2.width;
                canvas.height = jbig2.height;
                var ctx = canvas.getContext('2d');
                
                var imageData = ctx.getImageData(0, 0, canvas.width, canvas.height);
                var data1 = imageData.data;
                for (var i = 0,d=0; i < data1.length; i += 4,d++) {
                    let sdata = data[d]
                    if (sdata == 255) {
                        // 修改像素的颜色或透明度等
                        data1[i] = 255; // 红色通道(0-255)
                        data1[i + 1] = 255;   // 绿色通道(0-255)
                        data1[i + 2] = 255;   // 蓝色通道(0-255)
                    } else {  // 修改像素的颜色或透明度等
                        data1[i] = 0; // 红色通道(0-255)
                        data1[i + 1] = 0;   // 绿色通道(0-255)
                        data1[i + 2] = 0;   // 蓝色通道(0-255)
                    }
                    data1[i + 3] = 255; // Alpha 通道(0-255)
                }
                ctx.putImageData(imageData, 0, 0);
                document.body.appendChild(canvas);
            }
            reader.readAsArrayBuffer(file);
        }
    </script>
</head>
<body>
    <input type="file" onchange="handleFileSelect(event)">
</body>
<script src="jbig2.js"></script>
</html>

当然你可以把处理的文件直接存为BMP图片格式文件,利用image元素来进行展示,伪代码如下:

<script>
      ctx.putImageData(imageData, 0, 0);

      const dataURL = canvas.toDataURL("image/png");

      // 创建Image对象
      var img = new Image();

      // 为Image对象设置src为blob URL
      img.src =dataURL;
</script>

四、vue中使用

   npm i jb2
<template>
<div class="hello">
 <h1>{{ msg }}</h1>
 <input type="file" @change="handleFileSelect">
 <img v-bind:src="imageSrc" />
</div>
</template>

<script>
import { jb2Image } from "jb2"

export default {
name: 'HelloWorld',
data() {
 return {
   msg: 'Welcome to Your Vue.js App',
   imageSrc: ''
 }
},
methods: {
 handleFileSelect(event) {
   var files = event.target.files; // 获取选择的文件数组
   var file = files[0]; // 获取第一个文件
   var jb2 =  jb2Image(file,'png');
   jb2.then((image) => {
     this.imageSrc = image.src;
   });

 }
}
}
</script>

<!-- Add "scoped" attribute to limit CSS to this component only -->
<style scoped>
h1,
h2 {
font-weight: normal;
}

ul {
list-style-type: none;
padding: 0;
}

li {
display: inline-block;
margin: 0 10px;
}

a {
color: #42b983;
}</style>

五、结果展示

image image

About

an easy JBIG2 file web show

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published