Pyturbojpeg

Latest version: v1.7.7

Safety actively analyzes 723929 Python packages for vulnerabilities to keep your Python projects secure.

Scan your dependencies

Page 3 of 5

1.6.4

Fixed lib paths missing on NetBSD 55

1.6.3

scale_with_quality() returns empty data if decoding the image to be scaled triggers a warning. 53

1.6.2

Use libturbojpeg.so instead of libjpeg.so in FreeBSD. 51

1.6.1

Map luminance level to dct coefficient 49

Here is an example to utilize erikogabrielsson his contribution.

python
from PIL import Image
import numpy as np
import io
from turbojpeg import TurboJPEG

jpeg = TurboJPEG(r'C:\libjpeg-turbo64\bin\turbojpeg.dll')
in_file_path = r'in-1024x1024.jpeg'
in_file = open(in_file_path, 'rb')
in_data = in_file.read()
in_file.close()

Crop the image to a larger size, fill extended area with white (1).
out_data = jpeg.crop_multiple(in_data, [(0, 0, 2048, 2048)], 1)[0]

Write to file for analysis.
out_filepath = r'out.jpeg'
out_file = open(out_filepath, 'wb')
out_file.write(out_data)
out_file.close()

Quick check that the end of the image array is RGB 255, 255, 255
np.asarray(Image.open(io.BytesIO(out_data)))

1.6.0

crop_multiple() has been added to support for multiple crop and fill background 48

1.5.4

Add FreeBSD search path to avoid KeyError.  https://github.com/lilohuang/PyTurboJPEG/pull/47

Page 3 of 5

© 2025 Safety CLI Cybersecurity Inc. All Rights Reserved.