- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
我想在 Windows C++ 应用程序中将图像文件读入内存。什么是相当简单的解决方案,也许类似于 IOS 在 UIImage
中提供的解决方案?
我希望支持合理数量的文件格式。
我需要为位图提供一些低级访问权限以进行图像处理。
我在 Internet 上阅读了很多内容,看起来 Windows DIB 可能是一种合理的内存表示形式。除此之外,我找不到示例代码来将 JPEG 或 PNG 读入内存中的 DIB。
感谢任何建议。
最佳答案
我刚刚查了一下 LoadImage
确实支持通过标志从文件加载 LR_LOADFROMFILE
.
所以那将是我的第一选择。
次要选择,GDI+(请注意,它需要相当多的 init 东西才能获得普通的良好质量,至少在几年前它仍然依赖于 min
和 max
宏 来自 <windows.h>
)。第三选择,Windows Imaging Component在对该问题的评论中提到。第四选择, OleLoadPicturePath
和家人。
附录:如评论中所述LoadImage
仅限于加载图像文件的“位图”。在我的系统上,下面的测试程序报告 .bmp 文件加载正常,但 .gif、.png 和 .jpg 文件加载失败。
#undef UNICODE
#define UNICODE
#include <windows.h>
#include <assert.h> // assert
#include <iostream> // std::wcout
#include <string> // std::wstring
using namespace std;
auto get_exe_path()
-> wstring
{
int const buffer_size = MAX_PATH;
wstring result( buffer_size, L'#' );
int const n_characters = GetModuleFileName( 0, &result[0], buffer_size );
assert( 0 < n_characters && n_characters < buffer_size );
result.resize( n_characters );
return result;
}
auto get_exe_folder_path()
-> wstring
{
wstring const exe_path = get_exe_path();
int const i = exe_path.rfind( L'\\' );
return exe_path.substr( 0, i + 1 );
}
void test( wstring const& image_name )
{
wstring const image_file_name = get_exe_folder_path() + image_name;
wcout << image_file_name << endl;
HANDLE const image = ::LoadImage(
0, // HINSTANCE hinst,
image_file_name.c_str(),
IMAGE_BITMAP,
0, 0, // int cxDesired, int cyDesired,
LR_LOADFROMFILE
);
wcout << image << endl;
DeleteObject( image );
}
auto main()
-> int
{
test( L"test.bmp" ); wcout << endl;
test( L"test.png" ); wcout << endl;
test( L"test.gif" ); wcout << endl;
test( L"test.jpg" );
}
附录 2:为了检查一下,我还测试了 Windows 成像组件功能,它确实可以处理上述所有四种图像类型。下面代码的大部分大小是由于对 COM 的可重用一次写入支持(我只是再次从头开始编写它,所以它有点粗略,只有这里需要的)。不过,此代码不会显示图像或对其执行任何其他操作,并且对于同样复杂的 WIC……
虽然这段代码有部分 g++ 支持,但我已经用 g++ 测试过它。我记得 g++ 只支持 Windows API,就像 Windows XP 一样。我不确定 WIC 是何时引入的(尽管它可以与 Windows XP 一起使用)。
#undef UNICODE
#define UNICODE
#include <windows.h>
#include <wincodec.h> // IWICImagingFactory
#include <algorithm> // std::swap
#include <assert.h> // assert
#include <iostream> // std::wcout
#include <stdlib.h> // EXIT_FAILURE, EXIT_SUCCESS
#include <string> // std::string, std::wstring
#include <utility> // std::move
#ifndef CPPX_NOEXCEPT
# if defined( _MSC_VER )
# define CPPX_NOEXCEPT throw()
# else
# define CPPX_NOEXCEPT noexcept
# endif
#endif
#ifndef CPPX_NORETURN
# if defined( _MSC_VER )
# define CPPX_NORETURN __declspec( noreturn )
# pragma warning( disable: 4646 ) // "has non-void return type"
# elif defined( __GNUC__ )
# define CPPX_NORETURN __attribute__((noreturn))
# else
# define CPPX_NORETURN [[noreturn]]
# endif
#endif
namespace cppx {
using std::string;
using std::runtime_error;
auto hopefully( bool const condition )
CPPX_NOEXCEPT
-> bool
{ return condition; }
CPPX_NORETURN
auto fail( string const& s )
-> bool
{ throw runtime_error( s ); }
} // namespace cppx
namespace process {
using std::wstring;
auto get_exe_path()
-> wstring
{
int const buffer_size = MAX_PATH;
wstring result( buffer_size, L'#' );
int const n_characters = GetModuleFileName( 0, &result[0], buffer_size );
assert( 0 < n_characters && n_characters < buffer_size );
result.resize( n_characters );
return result;
}
auto get_exe_folder_path()
-> wstring
{
wstring const exe_path = get_exe_path();
int const i = exe_path.rfind( L'\\' );
return exe_path.substr( 0, i + 1 );
}
} // namespace process
namespace com {
using cppx::fail;
using std::move;
enum Success { success };
auto operator>>( HRESULT const hr, Success )
-> bool
{ return SUCCEEDED( hr ); }
struct Library
{
~Library()
{ CoUninitialize(); }
Library()
{ CoInitialize( nullptr ); }
};
template< class Interface >
class Ptr
{
private:
Interface* p_;
public:
auto raw() -> Interface* { return p_; }
auto operator->() -> Interface* { return p_; }
void clear() { Ptr null; swap( *this, null ); }
auto as_value_receiver()
-> Interface**
{
clear();
return &p_;
}
auto as_untyped_value_receiver()
-> void**
{ return reinterpret_cast<void**>( as_value_receiver() ); }
friend void swap( Ptr& a, Ptr& b )
CPPX_NOEXCEPT
{ std::swap( a.p_, b.p_ ); }
void operator=( Ptr other )
{ swap( *this, other ); }
void operator=( Ptr&& other )
{
Ptr temp( move( other ) );
swap( temp, *this );
}
~Ptr()
{ if( p_ != nullptr ) { p_->Release(); } }
explicit Ptr( Interface* p = nullptr )
CPPX_NOEXCEPT
: p_( p )
{}
Ptr( Ptr const& other )
: p_( other.p_ )
{ if( p != nullptr ) { p_->AddRef(); } }
Ptr( Ptr&& other )
CPPX_NOEXCEPT
: p_( other.p_ )
{ other.p_ = nullptr; }
static
auto create_local( CLSID const& class_id )
-> Ptr<Interface>
{
Ptr<Interface> result;
::CoCreateInstance(
class_id, nullptr, CLSCTX_INPROC_SERVER,
__uuidof( Interface ),
result.as_untyped_value_receiver()
)
>> success
|| fail( "CoCreateInstance" );
return move( result );
}
};
} // namespace com
namespace app {
using cppx::fail;
using std::wstring;
using std::wcout; using std::endl;
void test( wstring const& image_name )
{
wstring const image_file_name =
process::get_exe_folder_path() + image_name;
wcout << image_file_name << endl;
auto p_factory =
com::Ptr<IWICImagingFactory>::create_local( CLSID_WICImagingFactory );
com::Ptr< IWICBitmapDecoder> p_decoder;
p_factory->CreateDecoderFromFilename(
image_file_name.c_str(),
nullptr,
GENERIC_READ,
WICDecodeMetadataCacheOnDemand, // Cache metadata when needed
p_decoder.as_value_receiver()
)
>> com::success
|| fail( "IWICImagingFactory::CreateDecoderFromFilename" );
com::Ptr<IWICBitmapFrameDecode> p_frame;
p_decoder->GetFrame( 0, p_frame.as_value_receiver() )
>> com::success
|| fail( "IWICBitmapFrameDecode::GetFrame");
UINT w, h;
p_frame->GetSize( &w, &h )
>> com::success
|| fail( "IWICBitmapFrameDecode::GetSize" );
wcout << "(w, h) = (" << w << ", " << h << ")" << endl;
}
void cpp_main()
{
com::Library const com_usage;
test( L"test.bmp" ); wcout << endl;
test( L"test.png" ); wcout << endl;
test( L"test.gif" ); wcout << endl;
test( L"test.jpg" ); wcout << endl;
test( L"test.bogus" );
}
} // namespace app
auto main()
-> int
{
using namespace std;
try
{
app::cpp_main();
return EXIT_SUCCESS;
}
catch( exception const& x )
{
wcout << "!" << x.what() << endl;
}
return EXIT_FAILURE;
}
关于c++ - 高级 Win32 图像文件 I/O?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/23496264/
对于相当简单的表结构,即。人员、标准和 PersonCriteria(组合表),我现在设置了一个查询,选择所有符合所有选定条件的人。 此时查询本身看起来像这样: SELECT p.PersonID
我在使用高级 SQL 查询时遇到了一些问题,而且我已经有很长时间没有使用 SQL 数据库了。我们使用 MySQL。 背景: 我们将使用两个表: “交易表” 表:expire_history +----
我找不到错误。也许你可以帮助我:我的代码如下: var data = {"product":[{"config":[{"id":"1","price":"100","sku":"1054879634
我有一个列表列表的列表(最后一个列表并不重要) data = [[[['f', 0], 'C'], [['X', 0], 'X']], [[['s', 1], 'X'], [['X', 0], 'X'
我想准备将使用表格的 session ,并在另一个网站上将新项目添加到 session 中。 默认.cs string[] tab = new string[100];
我知道有一些像: Bubble sort Insertion sort Shell sort Merge sort Heapsort Quicksort Bucket sort Radix sort
像https://softwareengineering.stackexchange.com/questions/150616/return-random-list-item-by-its-weigh
我正在开发一个 posix 脚本 (Linux),它获取一个网页,将内容存储在一个变量中并查找字符串“SUCCESS”。如果找到字符串,则不执行循环内容,如果没有找到字符串,则反复执行循环,直到找到为
我不确定这个问题是否已在其他地方得到解答,而且我似乎无法通过谷歌找到任何不是“Hello World”示例的内容...我正在使用 C# .NET 4.0 进行编码。 我正在尝试开发一个控制台应用程序,
我创建了一个房地产网站,我希望按照列表的最后更新和完整性对列表进行排序。所以我一直想弄清楚如何结合最近更新的列表按mysql中的字段(completion_score)进行排序。完成分数将采用 1
只所以称为“高级”用法,是因为我连switch的最基础的用法都还没有掌握,so,接下来讲的其实还是它的基础用法! switch 语句和具有同样表达式的一系列的 IF 语句相似。很多场合下需要把同一
之前的章节中,我们学习了 XML DOM,并使用了 XML DOM 的 getElementsByTagName() 方法从 XML 文档中取回数据 本章节我们将继续学习其它重要的 XML DOM
我对我尝试编写的 SQL 查询有疑问。 我需要从数据库中查询数据。该数据库除其他外,还包括以下 3 个字段: Account_ID #, Date_Created, Time_Created 我需要编
我正在使用非常激进的视频压缩,例如 -crf 51 .我将其用于“艺术”效果,因此从普通视频压缩的角度来看,我所做的可能没有意义。 到目前为止,我只使用了非常基本的压缩控制,只使用了 -crf。或 -
我真的在学习 lucene 和 ravendb 上的绳索 - 我在 Raven 中有以下文档 - { "InternalEvent": { "Desec": "MachineInfo: 1
通常 grep 命令用于显示包含指定模式的行。有没有办法在包含指定模式的行之前和之后显示 n 行? 这可以使用awk来实现吗? 最佳答案 是的,使用 grep -B num1 -A num2 在匹配之
我搜索了高低,并尝试了几个小时来操纵似乎适合的各种其他查询,但我没有快乐。 我试图加入 Microsoft SQL Server 2005 中的几个表,其中一个示例是: Company Table (
我有一个如下所示的 XML 文件: teacher1Name
我将如何在 CF 中创建此语句? 显然括号不起作用,但说明了我想要完成的工作。这是什么语法? 编辑: 好的,我了解如何使用 EQ 等等。我有点匆忙地发布了这个。我的问题是关于括号。以这种方式使用它们
主要问题:我需要使用具体对象结构对任何对象结构进行类型扩展。 我在 VS Code 中测试的默认值。 我的解决方案: /** @template A @typedef {{[Ki in keyof A
我是一名优秀的程序员,十分优秀!