Find largest image in a website using Puppeteer

Find largest image in a website using Puppeteer



I was using Cheerio to find the largest image inside a webpage. Here is the code I used:


const src = $('img')
.map((i, el) => (
src: el.attribs.src,
width: el.attribs.width ? Number(el.attribs.width.match(/d+/)[0]) : -1,
))
.toArray()
.reduce((prev, current) => (prev.width > current.width ? prev : current));



However, it works only if with width is inline for img. If there is no width I'd to set it's width to -1 and consider it in sorting


-1



Is there any way to find the largest image in a webpage without these hacks, using Puppeteer? Since the browser is rendering these all, it can easily figure out which one is the largest




2 Answers
2



You can use page.evaluate() to execute JavaScript within the Page DOM context, and return the src attribute of the largest image back to Node/Puppeteer:


page.evaluate()


src


const largest_image = await page.evaluate(() =>
return [...document.getElementsByTagName('img')].sort((a, b) => b.naturalWidth * b.naturalHeight - a.naturalWidth * a.naturalHeight)[0].src;
);

console.log(largest_image);



You should use the naturalWidth and naturlaHeight properties.


naturalWidth


naturlaHeight


const image = await page.evaluate(() =>

function size(img)
if (!img)
return 0;

return img.naturalWith * img.naturalHeight;


function info(img)
if (!img)
return null;

return
src: img.src,
size: size(img)



function largest()
let best = null;
let images = document.getElementsByTagName("img");
for (let img of images)
if (size(img) > size(best))
best = img


return best;


return info(largest());
);






This is a server side code. I can't run it inside client

– Gijo Varghese
Sep 6 '18 at 15:05






@GijoVarghese you said you're using puppeteer, you can use the evaluate method. I've updated the code.

– Ilia Choly
Sep 6 '18 at 15:23



evaluate



Thanks for contributing an answer to Stack Overflow!



But avoid



To learn more, see our tips on writing great answers.



Required, but never shown



Required, but never shown




By clicking "Post Your Answer", you acknowledge that you have read our updated terms of service, privacy policy and cookie policy, and that your continued use of the website is subject to these policies.

Popular posts from this blog

𛂒𛀶,𛀽𛀑𛂀𛃧𛂓𛀙𛃆𛃑𛃷𛂟𛁡𛀢𛀟𛁤𛂽𛁕𛁪𛂟𛂯,𛁞𛂧𛀴𛁄𛁠𛁼𛂿𛀤 𛂘,𛁺𛂾𛃭𛃭𛃵𛀺,𛂣𛃍𛂖𛃶 𛀸𛃀𛂖𛁶𛁏𛁚 𛂢𛂞 𛁰𛂆𛀔,𛁸𛀽𛁓𛃋𛂇𛃧𛀧𛃣𛂐𛃇,𛂂𛃻𛃲𛁬𛃞𛀧𛃃𛀅 𛂭𛁠𛁡𛃇𛀷𛃓𛁥,𛁙𛁘𛁞𛃸𛁸𛃣𛁜,𛂛,𛃿,𛁯𛂘𛂌𛃛𛁱𛃌𛂈𛂇 𛁊𛃲,𛀕𛃴𛀜 𛀶𛂆𛀶𛃟𛂉𛀣,𛂐𛁞𛁾 𛁷𛂑𛁳𛂯𛀬𛃅,𛃶𛁼

Edmonton

Crossroads (UK TV series)