28

我正在创建一个“图像生成器”,用户可以在其中上传图像并添加文本和/或在其上绘图。输出的图像是固定尺寸(698x450)。

在客户端,当用户上传他们的图像时,它被设置为 698x450 的 div 的背景,背景大小为:cover。这使它很好地填充了该区域。

最终的组合图像由 PHP 使用 GD 函数生成。我的问题是,如何让图像在 PHP 中像在 CSS 中一样缩放。我希望 PHP 脚本的结果看起来与上面的 CSS 中设置的图像相同。有谁知道使用 background-size:cover 的浏览器如何计算如何适当地缩放图像?我想把它翻译成PHP。

谢谢

4

5 回答 5

58

这是封面计算背后的逻辑。

您有四个基本值:

imgWidth // your original img width
imgHeight

containerWidth // your container  width (here 698px)
containerHeight

从这些值得出两个比率:

imgRatio = (imgHeight / imgWidth)       // original img ratio
containerRatio = (containerHeight / containerWidth)     // container ratio

您想找到两个新值:

finalWidth // the scaled img width
finalHeight

所以 :

if (containerRatio > imgRatio) 
{
    finalHeight = containerHeight
    finalWidth = (containerHeight / imgRatio)
} 
else 
{
    finalWidth = containerWidth 
    finalHeight = (containerWidth / imgRatio)
}

...你有一个背景尺寸:封面。

于 2012-04-23T17:45:15.750 回答
14

我知道这是一个非常古老的问题,但我写的答案实际上更干净,通过使用图像之间的比率而不是每个图像本身的比率使用 max 和 mins:

var originalRatios = {
  width: containerWidth / imageNaturalWidth,
  height: containerHeight / imageNaturalHeight
};

// formula for cover:
var coverRatio = Math.max(originalRatios.width, originalRatios.height); 

// result:
var newImageWidth = imageNaturalWidth * coverRatio;
var newImageHeight = imageNaturalHeight * coverRatio;

我喜欢这种方法,因为它非常系统——也许用词不当——。我的意思是你可以摆脱这些if陈述,让它以一种更“数学公式”的方式工作(输入=输出,如果这有意义的话):

var ratios = {
  cover: function(wRatio, hRatio) {
    return Math.max(wRatio, hRatio);
  },

  contain: function(wRatio, hRatio) {
    return Math.min(wRatio, hRatio);
  },

  // original size
  "auto": function() {
    return 1;
  },

  // stretch
  "100% 100%": function(wRatio, hRatio) {
    return { width:wRatio, height:hRatio };
  }
};

function getImageSize(options) {
  if(!ratios[options.size]) {
    throw new Error(options.size + " not found in ratios");
  }

  var r = ratios[options.size](
    options.container.width / options.image.width,
    options.container.height / options.image.height
  );

  return {
    width: options.image.width * (r.width || r),
    height: options.image.height * (r.height || r)
  };
}

用法

const { width, height } = getImageSize({
  container: {width: 100, height: 100},
  image: {width: 200, height: 50},
  size: 'cover' // 'contain' | 'auto' | '100% 100%'
});

操场

如果您想了解我对系统的含义,我在jsbin 这里创建了一个(它还有一种我认为在此答案中不需要的方法,但对于通常以外的其他方法非常有用)。scale

于 2016-08-24T19:31:36.317 回答
4

感谢 mdi 为我指明了正确的方向,但这似乎不太正确。这是对我有用的解决方案:

    $imgRatio = $imageHeight / $imageWidth;
    $canvasRatio = $canvasHeight / $canvasWidth;

    if ($canvasRatio > $imgRatio) {
        $finalHeight = $canvasHeight;
        $scale = $finalHeight / $imageHeight;
        $finalWidth = round($imageWidth * $scale , 0);
    } else {
        $finalWidth = $canvasWidth;
        $scale = $finalWidth / $imageWidth;
        $finalHeight = round($imageHeight * $scale , 0);
    }
于 2012-04-24T12:10:59.877 回答
3

使用时background-size: cover,将其缩放到覆盖整个背景的最小尺寸。

因此,在它比它高的地方更薄,缩放它直到它的宽度与该区域相同。在它比它薄的地方高,缩放它直到它的高度与该区域相同。

当它大于要覆盖的区域时,将其缩小直到适合(如果溢出的高度较少,则缩放到相同的高度,如果溢出的宽度较少,则缩放到相同的宽度)。

于 2012-04-23T17:42:54.067 回答
3

在长时间搜索如何在 div 上缩放和定位背景图像以匹配 html 背景图像同时还支持浏览器调整大小和 div 的临时定位的方法后,我偶然发现了这个 QA,我想出了这个。

定位为匹配 html 背景的 div 的背景图像

:root {
  /* background image size (source) */

  --bgw: 1920;
  --bgh: 1080;

  /* projected background image size and position */

  --bgscale: max(calc(100vh / var(--bgh)), calc(100vw / var(--bgw)));

  --pbgw: calc(var(--bgw) * var(--bgscale)); /* projected width */
  --pbgh: calc(var(--bgh) * var(--bgscale)); /* projected height */

  --bgLeftOverflow: calc((var(--pbgw) - 100vw) / 2); 
  --bgTopOverflow: calc((var(--pbgh) - 100vh) / 2);
}

JS等价物

window.onresize = () => {
  const vw100 = window.innerWidth
  const vh100 = window.innerHeight

  /* background image size (source) */

  const bgw = 1920
  const bgh = 1080

  /* projected background image size and position */

  const bgscale = Math.max(vh100 / bgh, vw100 / bgw)

  const projectedWidth  = bgw * bgscale | 0
  const projectedHeight = bgh * bgscale | 0

  const leftOverflow = (projectedWidth  - vw100) / 2 | 0
  const topOverflow  = (projectedHeight - vh100) / 2 | 0

  console.log(bgscale.toFixed(2), projectedWidth, projectedHeight, leftOverflow, topOverflow)
}

尝试使用此代码段调整窗口大小以查看结果。
最好在全页视图中查看。提示:打开控制台。

window.onresize = () => {
  const vw100 = window.innerWidth
  const vh100 = window.innerHeight
  const bgw = 1920
  const bgh = 1080

  const bgscale = Math.max(vh100 / bgh, vw100 / bgw)

  const projectedWidth = bgw * bgscale | 0
  const projectedHeight = bgh * bgscale | 0

  const leftOverflow = (projectedWidth - vw100) / 2 | 0
  const topOverflow = (projectedHeight - vh100) / 2 | 0

  console.log(bgscale.toFixed(2), projectedWidth, projectedHeight, leftOverflow, topOverflow)
}
:root {
  /* background image size */
  --bgurl: url('https://i.stack.imgur.com/3iy4y.jpg');
  --bgw: 1000;
  --bgh: 600;
  
  --bgscale: max(calc(100vh / var(--bgh)), calc(100vw / var(--bgw)));
  
  --pbgw: calc(var(--bgw) * var(--bgscale));
  --pbgh: calc(var(--bgh) * var(--bgscale));
  
  --bgLeftOverflow: calc((var(--pbgw) - 100vw) / 2);
  --bgTopOverflow: calc((var(--pbgh) - 100vh) / 2);
}

html {
  background: #000 var(--bgurl) no-repeat center center fixed;
  background-size: cover;
  overflow: hidden;
}

#panel {
  --x: 100px;
  --y: 100px;
  --w: 200px;
  --h: 150px;
  
  position: absolute;
  left: var( --x);
  top: var( --y);
  width: var(--w);
  height: var(--h);
  
  background-image: var(--bgurl);
  background-repeat: no-repeat;
  background-position: calc(0px - var(--bgLeftOverflow) - var(--x)) calc(0px - var(--bgTopOverflow) - var(--y));
  background-size: calc(var( --bgscale) * var(--bgw));
  filter: invert(1);
}
<div id="panel"></div>

于 2021-03-16T18:02:25.280 回答