我有一个MVC应用程序,我需要缩小图像的大小。为此,我还将位深度减小到最大值。 8位。我已经在Controller中获得了所有代码,但现在我想从服务器到客户端获取它。 如何在JavaScript或其他一些客户端解决方案中减少图像的位深度?
一些伪代码:
function ScaleImage(image) {
var ration = GetSize(image);
if (image.bitdepth > 8) {
ReduceBitDepth(image)
}
...
}