エントリーの編集
エントリーの編集は全ユーザーに共通の機能です。
必ずガイドラインを一読の上ご利用ください。
エントリーの編集は全ユーザーに共通の機能です。
必ずガイドラインを一読の上ご利用ください。
注目コメント算出アルゴリズムの一部にLINEヤフー株式会社の「建設的コメント順位付けモデルAPI」を使用しています
NAME Imager::Draw - Draw primitives to images SYNOPSIS use Imager; use Imager::Fill; $img = ...; ... NAME Imager::Draw - Draw primitives to images SYNOPSIS use Imager; use Imager::Fill; $img = ...; $blue = Imager::Color->new( 0, 0, 255 ); $fill = Imager::Fill->new(hatch=>'stipple'); $img->line(color=>$blue, x1=>10, x2=>100, y1=>20, y2=>50, aa=>1, endp=>1 ); $img->polyline(points=>[[$x0,$y0], [$x1,$y1], [$x2,$y2]], color=>$blue); $img->polyline(x=>[$x0,$x1,$x2], y=>[$y0,$y1,$y2], aa=>1); $img->box