我正在尝试使用Canon EDSDKv0309W读取CR2文件。我没有找到此SDK版本的示例,因此我查看了旧版本中的几个示例,并在下面创建了代码。但是我总是在EDSDK.EdsGetImage(..)行中得到EDS_ERR_NOT_SUPPORTED。
在.Net4.6.1下使用32Bit编译,我可以从EOS500D和M100拍摄的图像中读取正确的高度和高度。但是我没有得到图像。所以我的假设是我从EdsCreateMemoryStream得到了一个错误的指针。但是我看不出有什么问题以及如何调试。 任何帮助将不胜感激。
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
using EDSDKLib;
using System.Drawing;
using System.Drawing.Imaging;
namespace CR2Reader
{
class Program
{
static Bitmap GetImage(IntPtr img_stream, EDSDK.EdsImageSource imageSource)
{
IntPtr stream = IntPtr.Zero;
IntPtr img_ref = IntPtr.Zero;
IntPtr streamPointer = IntPtr.Zero;
EDSDK.EdsImageInfo imageInfo;
uint error = 0;
try
{
//create reference and get image info
error = EDSDK.EdsCreateImageRef(img_stream, out img_ref);
if (error == 0)
{
error = EDSDK.EdsGetImageInfo(img_ref, imageSource, out imageInfo);
if (error == 0)
{
EDSDK.EdsSize outputSize = new EDSDK.EdsSize();
outputSize.width = imageInfo.EffectiveRect.width;
outputSize.height = imageInfo.EffectiveRect.height;
//calculate amount of data
int datalength = outputSize.height * outputSize.width * (int)imageInfo.NumOfComponents * (int)(imageInfo.ComponentDepth / 8);
//create buffer that stores the image
error = EDSDK.EdsCreateMemoryStream((ulong)datalength, out stream);
if (error == 0)
{
//load image into the buffer
error = EDSDK.EdsGetImage(img_ref, imageSource, EDSDK.EdsTargetImageType.RGB16, imageInfo.EffectiveRect, outputSize, stream);
if (error == 0)
{
//make BGR from RGB (System.Drawing (i.e. GDI+) uses BGR)
byte[] buffer = new byte[datalength];
unsafe
{
System.Runtime.InteropServices.Marshal.Copy(stream, buffer, 0, datalength);
byte tmp;
fixed (byte* pix = buffer)
{
for (int i = 0; i < datalength; i += 3)
{
tmp = pix[i]; //Save B value
pix[i] = pix[i + 2]; //Set B value with R value
pix[i + 2] = tmp; //Set R value with B value
}
}
}
//Get pointer to stream
error = EDSDK.EdsGetPointer(stream, out streamPointer);
if (error == 0)
{
//Create bitmap with the data in the buffer
return new Bitmap(outputSize.width, outputSize.height, datalength, PixelFormat.Format24bppRgb, streamPointer);
}
}
}
}
}
return null;
}
finally
{
//Release all data
if (img_ref != IntPtr.Zero) error = EDSDK.EdsRelease(img_ref);
if (stream != IntPtr.Zero) error = EDSDK.EdsRelease(stream);
}
}
static Bitmap ReadCR2Image(string fileName)
{
IntPtr outStream = new IntPtr();
uint error = EDSDK.EdsInitializeSDK();
error += EDSDK.EdsCreateFileStream(fileName,
EDSDK.EdsFileCreateDisposition.OpenExisting,
EDSDK.EdsAccess.Read,
out outStream);
Bitmap bmp = null;
if (error == 0)
{
bmp = GetImage(outStream, EDSDK.EdsImageSource.FullView);
}
if (outStream != IntPtr.Zero)
{
error = EDSDK.EdsRelease(outStream);
}
EDSDK.EdsTerminateSDK();
return bmp;
}
static void Main(string[] args)
{
Bitmap bmp = ReadCR2Image("IMG_3113.CR2");
}
}
}
答案 0 :(得分:1)
您使用了错误的EdsImageSource
类型。
由于要加载RAW图像,因此还必须使用EdsImageSource.RAWFullView
。 EdsImageSource.FullView
适用于JPG或TIFF。
一旦您更改了它,一切都会正常运行。
编辑:刚刚看到您使用RGB16
作为目标,但其余代码假定使用普通的8位RGB。您必须更改很多东西才能使它正常工作。除非您确实需要16位,否则我建议您使用RGB
。
编辑2:在这方面,库似乎有点过时了(我应该对其进行更新)。无论如何,您始终可以检查SDK的头文件中的最新值。这是EdsImageSource
的当前定义:
enum EdsImageSource
{
FullView = 0,
Thumbnail,
Preview,
RAWThumbnail,
RAWFullView,
}
关于16位所需的更改:
datalength
不正确byte
而不是ushort
来设置像素Bitmap
创建PixelFormat.Format24bppRgb
Bitmap
不完全支持16Bit。有关详细信息,请参见this article。根据需要执行的操作,最好是直接从SDK获取原始像素数据,也可以使用其他图形库(例如WPF,SkiaSharp,ImageSharp等)