无法使用 FreeImage .NET 包装器读取 JP2 文件
我正在尝试使用 FreeImage 接受的答案来读取和转换 JP2 图像 this 问题,但得到一个 0 字节 JOEG 文件。当我单步执行时,我看到该行在
FIBITMAP dib = FreeImage.LoadEx(inputImage)
dib 中返回 0。我有什么遗漏的吗?
I'm trying to read and convert JP2 images using the FreeImage accepted answer from this question but getting a 0 byte JOEG file. When I step through I see that the line
FIBITMAP dib = FreeImage.LoadEx(inputImage)
is returning 0 in dib. Is there anything I'm missing.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
当你第一次做任何事情时,添加:
如果显示这个消息框,这意味着你成功地将这个库添加到你的应用程序中。如果否,则意味着失败。
请检查:
我遇到了同样的问题并解决了。希望这有帮助。
At the first time you do any thing, add:
if this messageBox is showed, that means you were successful in adding this Library into your app. if No, that means if fails.
Please check:
I had meet same problem and solved. hope this help.