python怎么在上傳圖片后壓縮圖片大小
問(wèn)題描述
我用的是flask框架,圖片處理用的是pillow。
一般上傳都是在循環(huán)files,然后逐個(gè)file.save()我希望在save完成后,執(zhí)行pillow的壓縮邏輯。
但是似乎save是一個(gè)I/O操作,存在延遲性,如果直接在file.save()下面直接調(diào)用pillow的Image.open,會(huì)出錯(cuò),因?yàn)閳D片數(shù)據(jù)還沒(méi)有寫入圖片。
咋辦?
問(wèn)題解答
回答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是個(gè)阻塞操作
https://github.com/pallets/we...
回答2:其實(shí)這類圖片處理,直接使用阿里云的OSS或者七牛等類似的存儲(chǔ)功能更好,直接將圖片上傳到OOS中,然后調(diào)用特別的后綴進(jìn)行指定的圖片處理,未來(lái)也訪問(wèn)OSS上處理后的地址。這樣既可以規(guī)避用自己服務(wù)器處理圖片的負(fù)荷,而且也降低了訪問(wèn)的壓力,對(duì)于降低程序的復(fù)雜度也是大有好處的。
回答3:樓主看看Image.open 的fp參數(shù),也可以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.
相關(guān)文章:
1. android - NavigationView 的側(cè)滑菜單中如何保存新增項(xiàng)(通過(guò)程序添加)2. mysql服務(wù)無(wú)法啟動(dòng)1067錯(cuò)誤,誰(shuí)知道正確的解決方法?3. javascript - 微信公眾號(hào)網(wǎng)頁(yè)使用redux如何管理用戶刷新?4. 提示語(yǔ)法錯(cuò)誤語(yǔ)法錯(cuò)誤: unexpected ’abstract’ (T_ABSTRACT)5. 這段代碼既不提示錯(cuò)誤也看不到結(jié)果,請(qǐng)老師明示錯(cuò)在哪里,謝謝!6. php7.3.4中怎么開(kāi)啟pdo驅(qū)動(dòng)7. 老師 我是一個(gè)沒(méi)有學(xué)過(guò)php語(yǔ)言的準(zhǔn)畢業(yè)生 我希望您能幫我一下8. ueditor上傳服務(wù)器提示后端配置項(xiàng)沒(méi)有正常加載,求助!!!!!9. tp5 不同控制器中的變量調(diào)用問(wèn)題10. php - 第三方支付平臺(tái)在很短時(shí)間內(nèi)多次異步通知,訂單多次確認(rèn)收款
