我是C#的新手。我不知道有什麼問題...請修復錯誤,以便此代碼可以正常工作。我想用C#裁剪圖像。當這個代碼工作時,我會研究它。我想用C#裁剪圖像
using System;
using System.Collections.Generic;
using System.ComponentModel;
using System.Data;
using System.Drawing;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
using System.Windows.Forms;
namespace WindowsFormsApplication1
public static Bitmap cropAtRect(this Bitmap b, Rectangle r)
{
Bitmap nb = new Bitmap(r.Width, r.Height);
Graphics g = Graphics.FromImage(nb);
g.DrawImage(b, -r.X, -r.Y);
return nb;
}
ideone.com說:
prog.cs(13,10): error CS1514: Unexpected symbol `public', expecting `.' or `{'
prog.cs(13,18): error CS1525: Unexpected symbol `Bitmap', expecting `class', `delegate', `enum', `interface',
`partial', or `struct'
Compilation failed: 2 error(s), 0 warnings
你應該leran基本的C#語法。創建類,方法等 – Backs
你的'Form'類 –
請修正錯誤,然後我會研究它的每一點。我已經熟悉類,方法等。co'z我有Javascript的經驗 – user5192276