dqxm14187 2017-02-24 20:54
浏览 24
已采纳

jQuery - PHP如何在获取大图像的同时节省带宽?

I have in database JPEG image stored using following i can view the image. But the size of the image is large above 10MB or 20MB. How to tell PHP to compress the image and from jQuery/Javascript decompress it? So that the bandwidth usage get reduced?

$.get( "https://www.example.com/jpeg/render3D4K", { userid: '1' }).done(function( data ) {
  $("#show_picture").attr('poster', data);        
  //<video id="show_picture" >
});
  • 写回答

1条回答 默认 最新

  • drfu80954 2017-04-06 08:11
    关注

    Use NodeJS

    • Run background downloader, which download compressed version and store in local by decompressing
    • from local then render it to the front end
    本回答被题主选为最佳回答 , 对您是否有帮助呢?
    评论

报告相同问题?