为什么这个图像的分辨率高于我的?

时间:2017-01-08 16:15:52

标签: javascript html image

我完全很困惑为什么这个网页here的标题图片是高分辨率的,但是当我在我的HTML中创建它时,分辨率会降低。我链接到完全相同的img链接。虽然当我检查代码时,此图片已由template<class T> typename std::enable_if<std::__and_<std::__not_<std::is_arithmetic<T>>::type, // ^^^^^^[1] std::__not_<std::is_same<T, <T, // ^^^[2] std::vector<typename T::value_type, typename T::allocator_type>>::value // ^^^^^^^[3] >>>::value, std::string>::type convertToString(const T& t){ // ^[4] return std::string(t); } // [1] nested ::type not needed and ill-formed without typename keyword // [2] <T, is garbage // [3] nested ::value ill-formed because std::__not_ argument must be a type // [4] too many closing angle brackets 链接,但这是否会影响图像的质量?

如果有人知道这件事,我们将不胜感激。

2 个答案:

答案 0 :(得分:3)

图片的地址是:

  

https://static1.squarespace.com/static/57c0dbb31b631b53bedecc7e/t/57c29deb6a4963efc2c2eced/1472372377741/uxuihero.jpeg

但如果你仔细观察<image>元素的实际?format=2500w属性是

  

https://static1.squarespace.com/static/57c0dbb31b631b53bedecc7e/t/57c29deb6a4963efc2c2eced/1472372377741/uxuihero.jpeg?format=2500w

注意最后的#include<stdio.h> #include<string.h> #include<stdlib.h> int main(void) { char buffer[10]; printf("%d\n", sizeof(buffer)); snprintf(buffer, sizeof(buffer), "%s", "StackOverflow"); printf("%s", buffer); return 0; } - 通常要求服务器提供固定宽度的图像(这样可以节省移动设备上的网络流量)。

将查询参数添加到自己的代码后,您将看到相同的图像。

答案 1 :(得分:1)

此页面上的照片添加了透明度的背景色。它作为摄影philtres。这是代码示例:

    background-color: rgba(0,0,0,.3);