admin管理员组文章数量:1429806
I have a css style which in its background it has an image for example it is like this code
.test {
background-image: url("paper.gif");
background-color: #cccccc;
}
well I also have a javascript code which is used to get average color of an image,
function getAverageRGB(imgEl) {
var blockSize = 5, // only visit every 5 pixels
defaultRGB = {r:0,g:0,b:0}, // for non-supporting envs
canvas = document.createElement('canvas'),
context = canvas.getContext && canvas.getContext('2d'),
data, width, height,
i = -4,
length,
rgb = {r:0,g:0,b:0},
count = 0;
if (!context) {
return defaultRGB;
}
height = canvas.height = imgEl.naturalHeight || imgEl.offsetHeight || imgEl.height;
width = canvas.width = imgEl.naturalWidth || imgEl.offsetWidth || imgEl.width;
context.drawImage(imgEl, 0, 0);
try {
data = context.getImageData(0, 0, width, height);
} catch(e) {
/* security error, img on diff domain */alert('x');
return defaultRGB;
}
length = data.data.length;
while ( (i += blockSize * 4) < length ) {
++count;
rgb.r += data.data[i];
rgb.g += data.data[i+1];
rgb.b += data.data[i+2];
}
// ~~ used to floor values
rgb.r = ~~(rgb.r/count);
rgb.g = ~~(rgb.g/count);
rgb.b = ~~(rgb.b/count);
return rgb;
}
As the above code shows I have to pass an image element into the function, but In fact I do not have any tag and I only have a div which its css has a background image, How can I read the images data? thansk
I have a css style which in its background it has an image for example it is like this code
.test {
background-image: url("paper.gif");
background-color: #cccccc;
}
well I also have a javascript code which is used to get average color of an image,
function getAverageRGB(imgEl) {
var blockSize = 5, // only visit every 5 pixels
defaultRGB = {r:0,g:0,b:0}, // for non-supporting envs
canvas = document.createElement('canvas'),
context = canvas.getContext && canvas.getContext('2d'),
data, width, height,
i = -4,
length,
rgb = {r:0,g:0,b:0},
count = 0;
if (!context) {
return defaultRGB;
}
height = canvas.height = imgEl.naturalHeight || imgEl.offsetHeight || imgEl.height;
width = canvas.width = imgEl.naturalWidth || imgEl.offsetWidth || imgEl.width;
context.drawImage(imgEl, 0, 0);
try {
data = context.getImageData(0, 0, width, height);
} catch(e) {
/* security error, img on diff domain */alert('x');
return defaultRGB;
}
length = data.data.length;
while ( (i += blockSize * 4) < length ) {
++count;
rgb.r += data.data[i];
rgb.g += data.data[i+1];
rgb.b += data.data[i+2];
}
// ~~ used to floor values
rgb.r = ~~(rgb.r/count);
rgb.g = ~~(rgb.g/count);
rgb.b = ~~(rgb.b/count);
return rgb;
}
As the above code shows I have to pass an image element into the function, but In fact I do not have any tag and I only have a div which its css has a background image, How can I read the images data? thansk
Share Improve this question asked Nov 7, 2017 at 18:14 Majid HojatiMajid Hojati 1,7905 gold badges30 silver badges66 bronze badges 7-
Can I assume that
paper.gif
has transparency? – Joseph Marikle Commented Nov 7, 2017 at 18:16 - @yes if it makes it easier, it can also be a png or jpg – Majid Hojati Commented Nov 7, 2017 at 18:17
-
1
Research how to read styles from elements dynamically (getComputedStyle), and then once you got the image URL, create a new
Image
object in JavaScript, assign the URL assrc
, and then work from there in the imageload
handler ... – C3roe Commented Nov 7, 2017 at 18:17 -
Couldn't you just fill the canvas with the background color (in this case it's
#cccccc
) before applyingcontext.drawImage(imgEl, 0, 0);
? – Joseph Marikle Commented Nov 7, 2017 at 18:19 - 1 "but does this method downloads image twice?" - nope, that's what the cache is for ... – C3roe Commented Nov 7, 2017 at 18:21
2 Answers
Reset to default 5You can create a Image element using yours div background-img as source.
img = new Image();
img.src = divTest.style.backgroundImage;
You need to modify the function getAverageRGB to draw the image from the url in the background of the div, then you just pass your div and the modified function will draw the image onto the canvas - see docs below.
This question solves that problem
Drawing an image from a data URL to a canvas
本文标签: htmlGet image Data from a ltdivgt CSS style in javascriptStack Overflow
版权声明:本文标题:html - Get image Data from a <div> CSS style in javascript - Stack Overflow 内容由网友自发贡献,该文观点仅代表作者本人, 转载请联系作者并注明出处:http://www.betaflare.com/web/1745522190a2661673.html, 本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。如发现本站有涉嫌抄袭侵权/违法违规的内容,一经查实,本站将立刻删除。
发表评论