P
PHP
Well-known member
- Beiträge
- 997
- Punkte Reaktionen
- 0
Convert JPEG image file to WBMP image file
Converts a JPEG file into a WBMP file.
Rückgabewert:
Path to destination WBMP file.
Beispiel:
Converts a JPEG file into a WBMP file.
Rückgabewert:
Path to destination WBMP file.
Beispiel:
PHP:
// Path to the target jpeg
$path = './test.jpg';
// Get the image sizes
$image = getimagesize($path);
// Convert image
jpeg2wbmp($path, './test.wbmp', $image[1], $image[0], 5);