0

所以我正在制作一个简单的隐写工具(加密图像中的消息)并通过 Node.js 将其作为 Web 服务公开。我对 Javascript 和 Node.js 非常陌生,尤其是。该应用程序首先将文本字符串转换为二进制字符串,方法是将每个字符更改为 8 位 ASCII 编码,从而生成一个大的二进制字符串。然后我在像素内加密消息。像素的偶数值代表二进制中的 0,奇数值代表 1。字符串的结尾连续标记为 3 个像素值 100(这是暂时的,直到我找到更好的方法来标记结尾)。我正在使用一个名为“pngjs”的 node.js 库,它可以让我对 png 图像进行像素级访问。

所以我对 decodeMessage 函数有问题。它构建字符串消息,然后打算返回它,但是最后的返回调用导致未定义。

我该如何解决?

在此先感谢您的帮助!

function encodeMessage(image, mes) {

    var message = mes;

    var fs = require('fs'),
    PNG = require('pngjs').PNG;

    fs.createReadStream(image)
    .pipe(new PNG({
        filterType: 4
    }))
    .on('parsed', function() {

        for (var y = 0; y < this.height; y++) {
            for (var x = 0; x < this.width; x++) {
                var idx = (this.width * y + x);// << 2;
                //console.log(idx); 
                if (idx < message.length) {

                    var item = message.charAt(idx);

                    /* if the character in the encoded string is 0 */
                    if (item == 0) {
                        /* if the pixel is odd, we want it to be even */
                        if (this.data[idx] % 2 == 1) {
                        /* if the pixel is 0, add 1 to it */
                        if (this.data[idx] == 0) {
                            this.data[idx] = this.data[idx] + 1;
                        } else {
                            /* else substract 1 */
                            this.data[idx] = this.data[idx] - 1;
                        }
                        }
                    } else {
                        /* if the character in the encoded string is 1 */
                        if (this.data[idx] % 2 == 0) {
                        if (this.data[idx] == 0) {
                            this.data[idx] = this.data[idx] + 1;
                        } else {
                            this.data[idx] = this.data[idx] - 1;
                        }
                        }
                    }

                    //console.log(this.data[idx]);

                } else if (idx === message.length) {

                    /* do something to the first pixel following the end of the string */
                    this.data[idx] = 100;
                    this.data[idx+1] = 100;
                    this.data[idx+2] = 100;
                    //console.log(this.data[idx]);

                } else {

                    /* do something to the remaining pixels */

                }                  
            }
        }
        this.pack().pipe(fs.createWriteStream('encoded_' + image));
    });
}

function decodeMessage(image) {
    var message = "";

    var fs = require('fs'),
    PNG = require('pngjs').PNG;

    fs.createReadStream(image)
    .pipe(new PNG({
        filterType: 4
    }))
    .on('parsed', function() {


        dance:
        for (var y = 0; y < this.height; y++) {
            for (var x = 0; x < this.width; x++) {

                var idx = (this.width * y + x);// << 2;

                if (this.data[idx] == 100 && this.data[idx+1] == 100 && this.data[idx+2] == 100) {
                    break dance;
                } else {

                    if (this.data[idx] % 2 == 0) {
                        message += "0";
                    } else {
                        message += "1";
                    }

                }

            }
        }
        /* the message outputs correctly over here */
        console.log(message);
        //return message;
    });

    /* but the return of the variable here doesn't work */
    return message;
}

exports.encodeMessage = encodeMessage;
exports.decodeMessage = decodeMessage;
4

1 回答 1

1

parsed事件是异步触发的,因此您不能从decodeMessage.

function decodeMessage(image, cb) {

  // Code
  .on('parsed', function() {
    // Code

    console.log(message);
    cb(message);
  });
}

然后,您必须将回调传递给您的decodeMessage函数。

decodeMessage(image, function(decoded){
  // Here is the decoded data.
});

encodeMessage您的函数也是如此。该函数将在编码完成之前返回。如果您想知道何时完成,则需要以相同的方式传递回调。

于 2013-03-19T03:10:52.390 回答