jpeg2wbmp

Diskutiere jpeg2wbmp im PHP Forum im Bereich Programmierung; Convert JPEG image file to WBMP image file Converts a JPEG file into a WBMP file. Rückgabewert: Path to destination WBMP file. Beispiel: //...
  • jpeg2wbmp Beitrag #1
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:

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);
 
Thema:

jpeg2wbmp

Oben Unten