av一区二区在线观看_亚洲男人的天堂网站_日韩亚洲视频_在线成人免费_欧美日韩精品免费观看视频_久草视

您的位置:首頁技術文章
文章詳情頁

python怎么在上傳圖片后壓縮圖片大小

瀏覽:110日期:2022-07-16 10:24:39

問題描述

我用的是flask框架,圖片處理用的是pillow。

一般上傳都是在循環files,然后逐個file.save()我希望在save完成后,執行pillow的壓縮邏輯。

但是似乎save是一個I/O操作,存在延遲性,如果直接在file.save()下面直接調用pillow的Image.open,會出錯,因為圖片數據還沒有寫入圖片。

咋辦?

問題解答

回答1:

def save(self, dst, buffer_size=16384):'''Save the file to a destination path or file object. If thedestination is a file object you have to close it yourself after thecall. The buffer size is the number of bytes held in memory duringthe copy process. It defaults to 16KB.For secure file saving also have a look at :func:`secure_filename`.:param dst: a filename or open file object the uploaded file is saved to.:param buffer_size: the size of the buffer. This works the same as the `length` parameter of :func:`shutil.copyfileobj`.'''from shutil import copyfileobjclose_dst = Falseif isinstance(dst, string_types): dst = open(dst, ’wb’) close_dst = Truetry: copyfileobj(self.stream, dst, buffer_size)finally: if close_dst:dst.close()

你看save操作不是異步的吖

更新

copyfileobj是個阻塞操作

https://github.com/pallets/we...

回答2:

其實這類圖片處理,直接使用阿里云的OSS或者七牛等類似的存儲功能更好,直接將圖片上傳到OOS中,然后調用特別的后綴進行指定的圖片處理,未來也訪問OSS上處理后的地址。這樣既可以規避用自己服務器處理圖片的負荷,而且也降低了訪問的壓力,對于降低程序的復雜度也是大有好處的。

回答3:

樓主看看Image.open 的fp參數,也可以A filename (string), pathlib.Path object or a file object PIL.Image.open(fp, mode=’r’)

你直接傳file給Image.open(file)就可以了吧!

PIL.Image.open(fp, mode=’r’)Opens and identifies the given image file.This is a lazy operation; this function identifies the file, but the file remains open and the actual image data is not read from the file until you try to process the data (or call the load() method). See new().Parameters: fp – A filename (string), pathlib.Path object or a file object. The file object must implement read(), seek(), and tell() methods, and be opened in binary mode.mode – The mode. If given, this argument must be “r”.Returns: An Image object.Raises: IOError – If the file cannot be found, or the image cannot be opened and identified.

標簽: Python 編程
相關文章:
主站蜘蛛池模板: 伊人久久综合 | 日韩欧美第一页 | 国产高潮在线 | 亚洲欧美日韩一区二区三区四区 | 亚洲第十页 | 亚洲欧美另类图片 | 亚洲一区二区av | 国产第一福利 | 日韩大片在线观看 | 欧美日韩一区二区三区 | 国产精品黄 | 九九九九精品 | 国产欧美日韩在线 | 一级黄色免费看 | 国产日韩欧美在线 | 九色精品| 国产一区二区不卡 | 国产成人免费 | 久久er99热精品一区二区 | 久久久久久久久久久国产 | 青青草网站 | 色播久久 | 日韩精品在线观看视频 | 国产精品日韩在线 | 日韩在线影院 | 免费毛片在线 | 亚洲一区二区av | 欧美精品三区 | 国产又粗又猛视频免费 | 成人黄色免费 | 特大黑人巨交吊性xxxx视频 | 久久黄色大片 | 亚洲123区| 日韩av专区 | 黑人精品一区二区 | 99久久久 | 亚洲影视一区 | 一级特黄妇女高潮 | 久久99精品久久久久久 | 精品久久久久久久久久久久久久 | 国产在线资源 |