IT数码 购物 网址 头条 软件 日历 阅读 图书馆
TxT小说阅读器
↓语音阅读,小说下载,古典文学↓
图片批量下载器
↓批量下载图片,美女图库↓
图片自动播放器
↓图片自动播放器↓
一键清除垃圾
↓轻轻一点,清除系统垃圾↓
开发: C++知识库 Java知识库 JavaScript Python PHP知识库 人工智能 区块链 大数据 移动开发 嵌入式 开发工具 数据结构与算法 开发测试 游戏开发 网络协议 系统运维
教程: HTML教程 CSS教程 JavaScript教程 Go语言教程 JQuery教程 VUE教程 VUE3教程 Bootstrap教程 SQL数据库教程 C语言教程 C++教程 Java教程 Python教程 Python3教程 C#教程
数码: 电脑 笔记本 显卡 显示器 固态硬盘 硬盘 耳机 手机 iphone vivo oppo 小米 华为 单反 装机 图拉丁
 
   -> Python知识库 -> 图片压缩并上传oss -> 正文阅读

[Python知识库]图片压缩并上传oss

# -*- coding: utf-8 -*-
from io import BytesIO
from PIL import Image
import requests
import math
import json
import oss2
import uuid
import logging
import time
import _thread


logging.basicConfig(level=logging.DEBUG,
                    format='%(asctime)s %(filename)s[line:%(lineno)d] %(levelname)s %(message)s',
                    datefmt='%a, %d %b %Y %H:%M:%S',
                    filename='imagePillow.log',
                    filemode='w')

newPath='/Users/lvdapeng/PycharmProjects/dataProcessing/image_pillow/images/'
bash_path='/Users/lvdapeng/PycharmProjects/dataProcessing/image_pillow/directory/err_fail.json'

auth = oss2.Auth('*******', '************')
# Endpoint以杭州为例,其它Region请按实际情况填写。
bucket = oss2.Bucket(auth, 'http://oss-cn-shanghai.aliyuncs.com', '*****')
bucketname='*******/'
headers = {"content-type": "application/json"}

def get_imageUrl():
    file = open(bash_path, 'r')
    count = 0
    for line in file.readlines():
        json_line = json.loads(line)
        #print(json_line['picName'])
        count += 1
        #line=line.strip("\n")
        if count > 500:
            break
        get_ImageSize(json_line['picName'],json_line)

def get_ImageSize(line,msg):
    try:
        response = requests.get("https:"+line)
        #response = requests.get("https://img.alicdn.com/imgextra/T1T94dFxRhXXXXXXXX_!!0-item_pic.jpg")
        image = Image.open(BytesIO(response.content), 'r')
        print(image.size)
        # print(image.width)  # 长度
        # print(image.height)  # 宽度
        #print(image.format)  # 格式

        if image.width>800 and image.height>800 :
            w, h = 800, 800  # 去掉浮点,防报错
            img = image.resize((w, h), Image.ANTIALIAS)
            uid = str(uuid.uuid1())
            imaName = ''.join(uid.split('-'))
            img.save(newPath+imaName+"."+image.format, optimize=True, quality=85)  # 质量为85效果最好
            # 上传本地文件
            res = bucket.put_object_from_file(bucketname+imaName+"."+image.format, newPath+imaName+"."+image.format)
            logging.info('Thread:(%d) msg:%s Code:%d ImaName:%s s\n' % (_thread.get_ident(), msg, res.status, imaName + "." + image.format))

        elif image.width>800 and image.height<800:
            w, h = math.trunc(800), math.trunc(800/image.width * image.height) #去掉浮点,防报错
            img = image.resize((w, h), Image.ANTIALIAS)
            uid = str(uuid.uuid1())
            imaName = ''.join(uid.split('-'))
            img.save(newPath+imaName+"."+image.format, optimize=True, quality=85)  # 质量为85效果最好
            res = bucket.put_object_from_file(bucketname + imaName + "." + image.format, newPath + imaName + "." + image.format)
            logging.info('Thread:(%d) msg:%s Code:%d ImaName:%s s\n' % (_thread.get_ident(), msg, res.status, imaName + "." + image.format))

        elif image.width<800 and image.height>800:
            w, h = math.trunc(800 / image.height * image.width),math.trunc(800)   # 去掉浮点,防报错
            img = image.resize((w, h), Image.ANTIALIAS)
            uid = str(uuid.uuid1())
            imaName = ''.join(uid.split('-'))
            img.save(newPath+imaName+"."+image.format, optimize=True, quality=85)  # 质量为85效果最好
            res = bucket.put_object_from_file(bucketname + imaName + "." + image.format, newPath + imaName + "." + image.format)
            logging.info('Thread:(%d) msg:%s Code:%d ImaName:%s s\n' % (_thread.get_ident(), msg, res.status, imaName + "." + image.format))
        else:
            #上传网络流
            input = requests.get("https:"+line)
            uid = str(uuid.uuid1())
            imaName = ''.join(uid.split('-'))
            res = bucket.put_object(bucketname+imaName+"."+image.format,input)

            logging.info('Thread:(%d) msg:%s Code:%d ImaName:%s s\n' % (_thread.get_ident(), msg, res.status, imaName + "." + image.format))

    except Exception as e:
        logging.info('Thread:(%d) msg:%s Error:%s\n'
                     % (_thread.get_ident(), msg, e))


if __name__=='__main__':
    get_imageUrl()

  Python知识库 最新文章
Python中String模块
【Python】 14-CVS文件操作
python的panda库读写文件
使用Nordic的nrf52840实现蓝牙DFU过程
【Python学习记录】numpy数组用法整理
Python学习笔记
python字符串和列表
python如何从txt文件中解析出有效的数据
Python编程从入门到实践自学/3.1-3.2
python变量
上一篇文章      下一篇文章      查看所有文章
加:2022-03-06 12:58:23  更:2022-03-06 12:58:53 
 
开发: C++知识库 Java知识库 JavaScript Python PHP知识库 人工智能 区块链 大数据 移动开发 嵌入式 开发工具 数据结构与算法 开发测试 游戏开发 网络协议 系统运维
教程: HTML教程 CSS教程 JavaScript教程 Go语言教程 JQuery教程 VUE教程 VUE3教程 Bootstrap教程 SQL数据库教程 C语言教程 C++教程 Java教程 Python教程 Python3教程 C#教程
数码: 电脑 笔记本 显卡 显示器 固态硬盘 硬盘 耳机 手机 iphone vivo oppo 小米 华为 单反 装机 图拉丁

360图书馆 购物 三丰科技 阅读网 日历 万年历 2024年11日历 -2024/11/15 21:31:49-

图片自动播放器
↓图片自动播放器↓
TxT小说阅读器
↓语音阅读,小说下载,古典文学↓
一键清除垃圾
↓轻轻一点,清除系统垃圾↓
图片批量下载器
↓批量下载图片,美女图库↓
  网站联系: qq:121756557 email:121756557@qq.com  IT数码