1. ホーム
  2. vb.net

[解決済み] VB.NETで画像のリサイズをする

2022-02-18 07:56:31

質問

vb.netを使って、画像のサイズを変更する簡単なVBユーティリティを作りたいと思っています。実際に画像を操作するためにどのようなVBクラスを使用すればよいのかわからず困っています。ImageクラスとBitmapクラスは動作しません。

何かアイデア、ヒント、ヒント、チュートリアルのリンクがあれば、とてもありがたいです。

ありがとうございます。

解決方法は?

こんな記事もあります の詳細については、こちらをご覧ください。

Private Sub btnScale_Click(ByVal sender As System.Object, _
    ByVal e As System.EventArgs) Handles btnScale.Click
    ' Get the scale factor.
    Dim scale_factor As Single = Single.Parse(txtScale.Text)

    ' Get the source bitmap.
    Dim bm_source As New Bitmap(picSource.Image)

    ' Make a bitmap for the result.
    Dim bm_dest As New Bitmap( _
        CInt(bm_source.Width * scale_factor), _
        CInt(bm_source.Height * scale_factor))

    ' Make a Graphics object for the result Bitmap.
    Dim gr_dest As Graphics = Graphics.FromImage(bm_dest)

    ' Copy the source image into the destination bitmap.
    gr_dest.DrawImage(bm_source, 0, 0, _
        bm_dest.Width + 1, _
        bm_dest.Height + 1)

    ' Display the result.
    picDest.Image = bm_dest
End Sub

[編集]をクリックします。
もう一回 同じような行程で