f8g

2007-11-14から1日間の記事一覧

モザイク

画像を分割して、そのブロックごとに色の平均出して描画するやつ。 class System::Drawing::Bitmap def mosaic(width, height) newImage = Drawing::Bitmap.new(self.width, self.height) column_size = (1*right - left) / width row_size = (1*down - top)…