是否有可能在C#中提取JPG文件的量化矩陣?我找到了libjpeg.NET,但我無法弄清楚如何檢索QTs矩陣。請在下面找到我的代碼。如何從C#中的JPEG中提取量化矩陣
using System;
using System.Collections.Generic;
using System.Drawing;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
using BitMiracle.LibJpeg;
namespace ConsoleApp
{
class Program
{
static void Main(string[] args)
{
string file = @"PATH_TO_FILE";
JpegImage img = new JpegImage(file);
Console.Read();
// Ideally, there should be some img.GetQuantizationMatrix() method
}
}
}
thanks @ user3344003。我是處理JPEG流的新手。你可以發佈一些示例代碼嗎? – Nic
如果你回答一些代碼,我會接受它! – Nic