3
php01 OP @artandlol 他的图片都可以放很大,然后慢慢变得更加清晰,甚至能够看清楚纸张纹路,缩放比例最高到 100,然后等一会就会变得很清晰,你能教我找到最终的最清晰的原图地址吗
|
4
php01 OP @artandlol https://www.google.com/culturalinstitute/beta/asset/lot-and-his-daughters-reverse/wwFqKA-OQi03wg?hl=zh-CN 例如这张,每放大一次就会变得更清晰。怎么找到最清晰的图压?
|
5
artandlol 2017-11-27 11:01:10 +08:00 1
|
6
Pinwheel 2017-11-27 11:16:42 +08:00 1
@php01 这一张图缩略图地址是 http://lh3.ggpht.com/NpZ4ve9FtSSNz7BdpIWu8jaOUM4SLUDiLawc1Ybn_og0hKTdMj0BN-WPups
让它稍微清晰一点可以在后面加上=s1200,也就是 http://lh3.ggpht.com/NpZ4ve9FtSSNz7BdpIWu8jaOUM4SLUDiLawc1Ybn_og0hKTdMj0BN-WPups=s1200 对于这张图,它最清晰的版本是由多张图片拼接而成的,也就是楼上说的那种加了 blob 的链接 |
7
anmaz 2017-11-27 11:25:35 +08:00 via Android 1
拼接的,还是调分辨率截屏直接上手比较好
|
8
demov2 2017-11-27 11:34:06 +08:00 1
|
11
artandlol 2017-11-27 13:34:39 +08:00 1
js 简单版,拿好,可以结合 casperjs 使用
========== Array.prototype.uniquestr = function(){ var res = []; var json = {}; for(var i = 0; i < this.length; i++){ if(!json[this[i]]){ res.push(this[i]); json[this[i]] = 1; } } return res; } var reg = /\w+.(googleusercontent.com|ggpht.com)\/(\w|[-])+/g; var html = document.documentElement.innerHTML; var para = "=s1200"; var htmlele = html.match(reg); function unique(a) {return Array.from(new Set(a));} var uniqele = unique(htmlele); var newuniqele = uniqele.uniquestr(); for(var i = 0;i < newuniqele.length; i++) { console.log(newuniqele[i]+para+"\n"); } |
13
artandlol 2017-11-29 08:17:18 +08:00 1
|