我已将图像上传到我的数据库中(简单地说它的大小为500 * 700);因此无论我在哪里使用此图像,它的大小应为300 * 300 (我的用户可以上传自己的图像,以便所有不同大小的图像)
答案 0 :(得分:0)
将css类分配给放置图像的div。它可以在您使用图像的任何地方使用。
答案 1 :(得分:0)
如果您尝试更改可以使用的物理图像尺寸 https://github.com/EyalAr/lwip#resize
require('lwip').open('image.jpg', function(err, image){
// check err...
// define a batch of manipulations and save to disk as JPEG:
image.batch()
.resize(300,300,"linear", function(err,img){})
.writeFile('output.jpg', function(err){
// check err...
// done.
});
});
答案 2 :(得分:0)
转到此链接并探索(这可以通过OpenCV lib实现):
http://docs.opencv.org/3.1.0/da/d6e/tutorial_py_geometric_transformations.html#gsc.tab=0