2022-01-01から1年間の記事一覧

【C#】PictureBoxの画像を左右反転するボタンを追加する【ペイントアプリ】

左右反転 using System; using System.Drawing; using System.Windows.Forms; namespace ImageEditing { public partial class frmPaintTool : Form { // 変数 // ビットマップ画像 Bitmap _newBitMap; // マウスクリック中のフラグ bool _mouseDrug; // 前…

【C#】PictureBoxの画像を色反転するボタンを追加する【ペイントアプリ】

色反転 using System; using System.Drawing; using System.Windows.Forms; namespace ImageEditing { public partial class frmPaintTool : Form { // 変数 // ビットマップ画像 Bitmap _newBitMap; // マウスクリック中のフラグ bool _mouseDrug; // 前の…