PHPのimagecreatefromwbmp()関数を使用してWBMPファイルまたはURLから新しい画像を作成するにはどうすればよいですか?
PHPでは、 imagecreatefromwbmp() は、WBMPファイルまたはURLから新しいイメージを作成するために使用される組み込み関数です。 imagecreatefromwbmp() 指定されたファイル名から取得した画像を表す画像識別子を返します。 imagecreatefromwbmp()を使用できます WBMPファイルから画像を読み込んだ後に画像を編集したいときはいつでも。 imagewbmp()関数を使用すると、画像をWBMPに変換できます。
構文
resource imagecreatefromwbmp(string $filename)
パラメータ
imagecreatefromwbmp() $ filenameという1つのパラメータのみを取ります 。画像の名前を保持します。
戻り値
imagecreatefromwbmp() 成功すると画像リソース識別子を返し、falseではエラーを返します。
例1
<?php // Loading the WBMP image from the local drive folder $img = imagecreatefromwbmp'C:\xampp\htdocs\pic.wbmp'); // View the loaded image in the browser imagewbmp($img); imagedestroy($img); ?>
出力
Note − The above PHP code will load the content into the browser in the unsupported form text as browsers don't support WBMP.
例2
<?php // Load a WBMP image from the local drive folder //We can convert the image to WBMP using the online converter //or using the imagewbmp() function $img = imagecreatefromwbmp('C:\xampp\htdocs\Images\img30.wbmp'); // Save the GIF image into the given local drive folder path. imagejpeg($img,'C:\xampp\htdocs\pic.gif'); imagedestroy($img); ?>
imagecreatefromwbmp()を使用する前の元の入力画像
imagecreatefromwbmp()を使用した後に画像を出力する
注 −WBMPはワイヤレスビットマップファイル形式です。これは、モバイルコンピューティングデバイス用に最適化されたWAPグラフィック形式です。 WBMP形式の画像はビット形式で保存されます。つまり、画像のすべてのピクセルが1ビットとして保存されます。 WBMPファイルを開くには、ワイヤレスビットマップファイル形式のソフトウェアが必要です。
-
PHPのimagecreatefrompng()関数を使用してPNGファイルまたはURLから新しい画像を作成するにはどうすればよいですか?
PHPでは、 imagecreatefrompng() PNGファイルまたはURLから新しい画像を作成するために使用される組み込み関数です。 imagecreatefrompng() 指定されたファイル名から取得した画像を表す画像識別子を返します。 構文 resource imagecreatefrompng(string $filename) パラメータ imagecreatefrompng() $filenameという1つのパラメーターのみを取ります。このパラメータは、画像の名前またはPNG画像へのパスを保持します。 戻り値 imagecreatefrompng()は、成功すると画
-
PHPのimagecreatefromjpeg()関数を使用してJPEGファイルから新しい画像を作成するにはどうすればよいですか?
imagecreatefromjpeg() は、JPEGファイルから新しい画像を作成するために使用されるPHPの組み込み関数です。指定されたファイル名から取得した画像を表す画像識別子を返します。 構文 resource imagecreatefromjpeg(string $filename) パラメータ imagecreatefromjpeg() $ filenameという1つのパラメータのみを使用します 、画像の名前またはJPEG画像へのパスを保持します。 戻り値 imagecreatefromjpeg() 成功すると画像リソース識別子を返し、falseではエラーを返します。 例