Converting PNG to JPG in python

10,593

Solution 1

Before demonstrating how to convert an image from .png to .jpg format, I want to point out that you should be consistent on the library that you use. Currently, you're mixing scikit-image with opencv. It's best to choose one library and stick with it instead of reading in an image with scikit and then converting to grayscale with opencv.

To convert a .png to .jpg image using OpenCV, you can use cv2.imwrite. Note with .jpg or .jpeg format, to maintain the highest quality, you must specify the quality value from [0..100] (default value is 95). Simply do this:

import cv2

# Load .png image
image = cv2.imread('image.png')

# Save .jpg image
cv2.imwrite('image.jpg', image, [int(cv2.IMWRITE_JPEG_QUALITY), 100])

Solution 2

The function skimage.io.imsave expects you to give it a filename and an array that you want to save under that filename. For example:

skimage.io.imsave("image.jpg", image)

where image is a numpy array.

You are using it incorrectly here:

image2 = io.imsave("jpgtest.jpg", (76, 59))

you are assigning the output of the imsave function to image2 and I don't think that is what you want to do.


You probably don't need to convert the image to JPG because the skimage library already handles all of this conversion by itself. You usually only load the images with imread (does not matter whether they are PNG or JPG, because they are represented in a numpy array) and then perform all the necessary computations.

Share:
10,593
E K
Author by

E K

Updated on July 28, 2022

Comments

  • E K
    E K almost 2 years

    I'm trying to compare two images, one a .png and the other a .jpg. So I need to convert the .png file to a .jpg to get closer values for SSIM. Below is the code that I've tried, but I'm getting this error:

    AttributeError: 'tuple' object has no attribute 'dtype'

    image2 = imread(thisPath + caption)
    image2 = io.imsave("jpgtest.jpg", (76, 59))
    image2 = cv2.cvtColor(image2, cv2.COLOR_BGR2GRAY)
    image2 = resize(image2, (76, 59))
    imshow("is it a jpg", image2)
    cv2.waitKey()