代码拉取完成,页面将自动刷新
同步操作将从 tboox/hnr 强制同步,此操作会覆盖自 Fork 仓库以来所做的任何修改,且无法恢复!!!
确定后同步将在后台操作,完成时将刷新页面,请耐心等待。
#ifndef QIMAGE_PAINTER_H
#define QIMAGE_PAINTER_H
#include <QtGui/QImage>
#include "prefix.h"
class qimage_painter
: public painter_base<qimage_painter, image_type>
{
/// \name Types
/// @{
public:
typedef painter_base<qimage_painter, image_type> base_type;
typedef qimage_painter class_type;
typedef QImage qimage_type;
typedef base_type::bool_type bool_type;
typedef base_type::color_type color_type;
typedef color_type::rgba_type rgba_type;
typedef base_type::int_type int_type;
typedef base_type::rect_type rect_type;
/// @}
/// \name Members
/// @{
private:
qimage_type& m_qimage;
/// @}
/// \name Constructors
/// @{
public:
qimage_painter(qimage_type& qimage)
: base_type(rect_type(0, 0, qimage.width(), qimage.height()))
, m_qimage(qimage)
{}
/// @}
/// \name Attributes
/// @{
public:
qimage_type& qimage() { return m_qimage; }
qimage_type const& qimage() const { return static_cast<qimage_type const&>(m_qimage); }
/// @}
/// \name Implementions
/// @{
public:
void do_pixel(int_type x, int_type y, color_type const& c)
{
EXTL_ASSERT(x >= 0 && y >= 0);
qimage().setPixel(x, y, qRgb(c.red(), c.green(), c.blue()));
}
color_type do_pixel(int_type x, int_type y)
{
EXTL_ASSERT(x >= 0 && y >= 0);
QRgb qrgb = qimage().pixel(x, y);
return color_type(qRed(qrgb), qGreen(qrgb), qBlue(qrgb));
}
/// @}
};
#endif // QIMAGE_PAINTER_H
此处可能存在不合适展示的内容,页面不予展示。您可通过相关编辑功能自查并修改。
如您确认内容无涉及 不当用语 / 纯广告导流 / 暴力 / 低俗色情 / 侵权 / 盗版 / 虚假 / 无价值内容或违法国家有关法律法规的内容,可点击提交进行申诉,我们将尽快为您处理。