我想显示来自URL的具有一定宽度和高度的图像,即使它具有不同的大小比。 所以我想调整大小(保持比例),然后将图像切割到我想要的大小。
我可以用html img
属性调整大小,我可以用background-image
切割。
我怎样才能两者兼顾呢?< / p >
例子:
这张图片:
< p > < br > 有大小800x600
像素和我想显示像200x100
像素的图像
< p > < br >
使用img
,我可以调整图像200x150px
:
<img
style="width: 200px; height: 150px;"
src="http://i.stack.imgur.com/wPh0S.jpg">
< p > < br >
结果是:
<img style="width: 200px; height: 150px;" src="https://i.stack.imgur.com/wPh0S.jpg">
And with background-image
I can cut the image 200x100
pixels.
<div
style="background-image:
url('https://i.stack.imgur.com/wPh0S.jpg');
width:200px;
height:100px;
background-position:center;"> </div>
< p > < p >
给我:< / p >
<div style="background-image:url('https://i.stack.imgur.com/wPh0S.jpg'); width:200px; height:100px; background-position:center;"> </div>
How can I do both?
Resize the image and then cut it the size I want?