You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
|
from PIL import Image
|
|
|
|
|
|
img = Image.open('首营资料.jpg').convert("RGBA")
|
|
|
|
pdi = img.info.get('dpi')[0]
|
|
img_width, img_heigth = img.size
|
|
|
|
a4_width = 210
|
|
stamp_width = 44
|
|
|
|
x = stamp_width/a4_width * img_width
|
|
print(x)
|