資源簡介
最后通過ffmpeg轉換,比較耗時,不過可以參考
代碼片段和文件信息
using?System;
using?System.Collections.Generic;
using?System.Linq;
using?System.Text;
using?System.Threading.Tasks;
using?System.Drawing;
using?System.Drawing.Imaging;
using?System.Runtime.InteropServices;
using?System.IO;
namespace?Peeper?{
static?class?Extensions?{
/*public?static?byte[]?ToByteArray(this?Image?Img?ImageFormat?Fmt)?{
using?(MemoryStream?MS?=?new?MemoryStream())?{
Img.Save(MS?Fmt);
return?MS.ToArray();
}
}*/
public?static?byte[]?ToByteArray(this?Bitmap?Img?PixelFormat?PFmt?=?PixelFormat.Format24bppRgb)?{
BitmapData?BmpData?=?Img.LockBits(new?Rectangle(Point.Empty?Img.Size)?ImageLockMode.ReadOnly?PFmt);
int?Len?=?BmpData.Stride?*?BmpData.Height;
byte[]?Bytes?=?new?byte[Len];
Marshal.Copy(BmpData.Scan0?Bytes?0?Len);
Img.UnlockBits(BmpData);
return?Bytes;
}
public?static?Point?Add(this?Point?A?Point?B)?{
return?new?Point(A.X?+?B.X?A.Y?+?B.Y);
}
public?static?Point?Subtract(this?Point?A?Point?B)?{
return?new?Point(A.X?-?B.X?A.Y?-?B.Y);
}
}
}
?屬性????????????大小?????日期????時間???名稱
-----------?---------??----------?-----??----
?????目錄???????????0??2016-09-08?15:23??Peeper-master\
?????文件????????2906??2015-12-06?12:03??Peeper-master\.gitignore
?????目錄???????????0??2016-09-08?15:23??Peeper-master\.vs\
?????目錄???????????0??2016-09-08?15:23??Peeper-master\.vs\Peeper\
?????目錄???????????0??2016-09-08?15:23??Peeper-master\.vs\Peeper\v14\
?????文件???????77312??2016-09-13?10:21??Peeper-master\.vs\Peeper\v14\.suo
?????目錄???????????0??2016-09-08?15:23??Peeper-master\3rdParty\
?????目錄???????????0??2016-09-08?15:23??Peeper-master\3rdParty\CodeContracts\
?????文件???????61440??2015-12-06?12:03??Peeper-master\3rdParty\CodeContracts\SharpAvi.Contracts.dll
?????文件??????120532??2015-12-06?12:03??Peeper-master\3rdParty\SharpAvi.xm
?????文件???????77824??2015-12-06?12:03??Peeper-master\3rdParty\SharpAvi.dll
?????文件????????1211??2015-12-06?12:03??Peeper-master\LICENSE
?????目錄???????????0??2016-09-08?15:23??Peeper-master\Peeper\
?????文件?????????182??2015-12-06?12:03??Peeper-master\Peeper\App.config
?????文件????????1044??2015-12-06?12:03??Peeper-master\Peeper\Extensions.cs
?????文件????????4048??2016-09-05?10:01??Peeper-master\Peeper\Peeper.csproj
?????文件????????2865??2016-09-05?17:37??Peeper-master\Peeper\PeeperForm.Designer.cs
?????文件????????7119??2016-09-06?13:20??Peeper-master\Peeper\PeeperForm.cs
?????文件????????5817??2016-09-05?17:37??Peeper-master\Peeper\PeeperForm.resx
?????文件?????????693??2016-09-05?10:53??Peeper-master\Peeper\Program.cs
?????目錄???????????0??2016-09-08?15:23??Peeper-master\Peeper\Properties\
?????文件????????1388??2015-12-06?12:03??Peeper-master\Peeper\Properties\AssemblyInfo.cs
?????文件????????2403??2015-12-06?12:03??Peeper-master\Peeper\Properties\Resources.Designer.cs
?????文件????????5496??2015-12-06?12:03??Peeper-master\Peeper\Properties\Resources.resx
?????文件?????????979??2015-12-06?12:03??Peeper-master\Peeper\Properties\Settings.Designer.cs
?????文件?????????242??2015-12-06?12:03??Peeper-master\Peeper\Properties\Settings.settings
?????目錄???????????0??2016-09-08?15:23??Peeper-master\Peeper\obj\
?????目錄???????????0??2016-09-08?15:23??Peeper-master\Peeper\obj\Debug\
?????文件???????35345??2016-09-05?09:47??Peeper-master\Peeper\obj\Debug\DesignTimeResolveAssemblyReferences.cache
?????文件????????7000??2016-09-13?10:20??Peeper-master\Peeper\obj\Debug\DesignTimeResolveAssemblyReferencesInput.cache
?????文件?????????180??2016-09-05?17:37??Peeper-master\Peeper\obj\Debug\Peeper.PeeperForm.resources
............此處省略23個文件信息
- 上一篇:超贊的200個經典C#WinForm
- 下一篇:ASP.NET電影網站(畢業設計)
評論
共有 條評論