671| 1
|
[其他求助] JPG、PDF在固定DPI下的尺寸统计计算求助#python |
发表于 2024-3-10 20:53
50吾爱币
最佳答案1只对纵向适用,2没有考虑误差。仅仅提供思路,如果实际应用,就应该跟严谨。
[mw_shl_code=python,true]from PIL import Image
import PyPDF2
def get_file_size(file_path):
if file_path.lower().endswith('.jpg'):
with Image.open(file_path) as img:
width, height = img.size
elif file_path.lower().endswith('.pdf'):
try:
with open(file_path, 'rb') as ...
| ||
发帖前要善用【论坛搜索】功能,那里可能会有你要找的答案或者已经有人发布过相同内容了,请勿重复发帖。 |
||
RSS订阅|小黑屋|处罚记录|联系我们|吾爱破解 - LCG - LSG ( 京ICP备16042023号 | 京公网安备 11010502030087号 )
GMT+8, 2024-12-15 20:34
Powered by Discuz!
Copyright © 2001-2020, Tencent Cloud.