downloads | documentation | faq | getting help | mailing lists | licenses | wiki | reporting bugs | php.net sites | conferences | my php.net

search for in the

png2wbmp> <iptcparse
[edit] Last updated: Fri, 24 Jun 2011

view this page in

jpeg2wbmp

(PHP 4 >= 4.0.5, PHP 5)

jpeg2wbmpتبدیل فایل تصویر JPEG به فایل تصویر WBMP

Description

bool jpeg2wbmp ( string $jpegname , string $wbmpname , int $dest_height , int $dest_width , int $threshold )

تبدیل فایل JPEG به فایل WBMP.

Parameters

jpegname

مسیر فایل JPEG.

wbmpname

مسیر فایل WBMP مقصد.

dest_height

ارتفاع تصویر مقصد.

dest_width

عرض تصویر مقصد.

threshold

مقدار آستانه بین 0 و 8 (مشمول).

Return Values

Returns TRUE on success or FALSE on failure.

Examples

Example #1 مثال jpeg2wbmp()

<?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);
?>

Notes

Note: WBMP support is only available if PHP was compiled against GD-1.8 or later.

Note: JPEG support is only available if PHP was compiled against GD-1.8 or later.

See Also

  • png2wbmp() - تبدیل فایل تصویر PNG به فایل تصویر WBMP



add a note add a note User Contributed Notes jpeg2wbmp - [1 notes]
up
0
barry dot schatz at gmail dot com
4 years ago
Actually this produces black and white images only, as does the jpeg2wbmp function.

 
show source | credits | sitemap | contact | advertising | mirror sites