函数无法返回值

时间:2013-03-19 03:08:56

标签: node.js function return steganography

所以我正在制作一个简单的隐写术工具(加密图像中的消息)并通过Node.js将其作为Web服务公开。我特别喜欢Javascript和Node.js。应用程序首先通过将每个字符更改为8位ASCII编码将文本字符串转换为二进制字符串,从而生成一个大的二进制字符串。然后我加密像素内的消息。偶数像素值表示二进制的0,奇数值表示1。字符串的结尾标记为连续值为100的3个像素(这是暂时的,直到我找到一种更好的方式来标记结束)。我正在使用一个名为'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;

1 个答案:

答案 0 :(得分: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功能也是如此。该函数将在编码完成之前返回。如果你想知道它何时完成,你需要以同样的方式传递回调。