imencode
imencode(img: np.ndarray, IMGTYP: Union[str, int, IMGTYP] = IMGTYP.JPEG) -> Union[bytes, None]
-
說明:將 NumPy 圖像數組編碼為指定格式的字節串。
-
參數
- img (
np.ndarray
):要編碼的圖像數組。 - IMGTYP (
Union[str, int, IMGTYP]
):圖像類型。支持的類型有IMGTYP.JPEG
和IMGTYP.PNG
。預設為IMGTYP.JPEG
。
- img (
-
傳回值
- bytes:編碼後的圖像字節串。
-
範例
import capybara as cb
img = cb.imread('lena.png')
encoded_bytes = cb.imencode(img, IMGTYP=cb.IMGTYP.PNG)