How to read .EMF type image in Python

105 views Asked by At

I am working on .emf format images. I am unable to open/read them in Python. I know to read other jpeg, png format images. Can you provide a code for that?

Also, when I open this .emf format image then how to read all images from my folder?

from PIL import Image
import numpy as np

img=Image.open("image/test_image.emf")
0

There are 0 answers