我正在尝试制作一个包含字符串的程序,将其转换为base64,然后转换为二进制。然后,它采用二进制并将像素的黑色像素更改为0,将白色像素更改为1。
我已经将像素阵列更改为所需的像素,但是当我调用updatePixels()
时,它实际上并没有更改。
我的目标是拍摄画布并将其导出为图像。
我的草图:
let hw;
let input, button;
let binaryOut;
function setup() {
createCanvas(140,140);
input=createInput();
pixelDensity(1);
button = createButton("get image");
button.mousePressed(txtTo64ToBin)
loadPixels();
}
function txtTo64ToBin(){
str = input.value();
str = btoa(str);
let output = '';
str = str.split("")
for(let i=0;i<str.length;i++){
let base = str[i].charCodeAt(0).toString(2)
while(base.length < 8){
base = "0"+base;
}
output += base;
}
binaryOut = output;
console.log(binaryOut)
updateImage(binaryOut.split(''))
}
function updateImage(binArr){
hw = factors(binArr.length);
hw = hw[hw.length-1];
console.log(hw);
resizeCanvas(...hw,false)
pixels = []
for(let i=0; i<binArr.length; i++){
pixels[i*4] = map(binArr[i],0,1,0,255);
pixels[i*4+1] = map(binArr[i],0,1,0,255);
pixels[i*4+2] = map(binArr[i],0,1,0,255);
pixels[i*4+3] = 255;
}
console.log(pixels)
updatePixels() //here is the updatePixels function call
}
function draw() {
noLoop();
}
function factors(num) {
var half = Math.floor(num / 2),
arr = [],
i, j;
num % 2 === 0 ? (i = 2, j = 1) : (i = 3, j = 2);
for (i; i <= half; i += j) {
if(num % i === 0 && i <= num/i){
arr.push([i,num/i]);
}
}
return arr;
}
我很困惑,任何帮助将不胜感激。
答案 0 :(得分:2)
请尝试break your problem down into smaller steps并在一个较小的示例中找出问题所在。
以下是显示相同问题的示例草图:
let button;
function setup() {
createCanvas(140,140);
button = createButton("test");
button.mousePressed(updateImage);
loadPixels();
}
function updateImage(){
pixels = [];
for(let i=0; i < width * height; i++){
pixels[i*4] = 255;
pixels[i*4+1] = 0;
pixels[i*4+2] = 0;
pixels[i*4+3] = 255;
}
updatePixels();
}
function draw() {
noLoop();
}
当我们单击按钮时,我们可能希望这会将画布变成红色,但事实并非如此。看看这个示例如何更容易玩,因为我们不必考虑您的任何逻辑?
无论如何,问题是由以下行引起的:
pixels = [];
把那一行拿出来,示例程序就可以工作。
我的猜测是这是因为pixels
不是不是标准的JavaScript数组。来自the reference:
Uint8ClampedArray包含显示窗口中所有像素的值。
...
请注意,这不是标准的javascript数组。