私はimagemagick/rmagickライブラリから画像を作成する必要があります。どうすればいいですか? phpのようにGDライブラリで以下のようにしました。入力でイメージをレールに作成するには? (from imagecreate()from php)
<?php
header ("Content-type: image/png");
$handle = ImageCreate (130, 50) or die ("Cannot Create image");
$bg_color = ImageColorAllocate ($handle, 255, 0, 0);
ImagePng ($handle);
?>
、私は画像の色、that..anyアイデアのようなエリアタグの画像座標を与えていますか?
こんにちは、私は、与えられた座標と同様の折れ線グラフを持つ画像を持つ必要があります..答えてくれてありがとう。 –