写了两个图像裁剪的函数,大家帮忙看看!

参数说明:
pSrcBuffer:源图像数据
iSrcWidth: 源图像宽度
iSrcHeight:源图像高度
CropRect:    目标图像区域
pDstBuffer:目标图像数据

// 裁剪图像
void CutImage(UCHAR* pSrcBuffer, UINT iSrcWidth, UINT iSrcHeight, const CRect& CropRect,
    UCHAR* pDstBuffer)
{
    if (pSrcBuffer == NULL || pDstBuffer == NULL)
    {
        ASSERT(FALSE);
        return;
    }

    if (CropRect.Width() > iSrcWidth || CropRect.Height() > iSrcHeight)
    {
        ASSERT(FALSE);
        return;
    }

    UCHAR* pSrcBufferT = pSrcBuffer + (CropRect.left + iSrcWidth * CropRect.top) * 2;

    UCHAR* pDstBufferT = pDstBuffer;

    for (size_t i = 0; i < CropRect.Height(); i++)
    {
        memmove(pDstBufferT, pSrcBufferT, CropRect.Width() * 2);

        pSrcBufferT += iSrcWidth * 2;

        pDstBufferT += CropRect.Width() * 2;
    }
}

参数说明:
pSrcBuffer:源图像数据
iSrcWidth: 源图像宽度
iSrcHeight:源图像高度
iDstWidth:    目标图像宽度
iDstHeight:目标图像高度
pDstBuffer:目标图像数据

// 裁剪图像
void CutImage(UCHAR* pSrcBuffer, UINT iSrcWidth, UINT iSrcHeight, UINT iDstWidth, UINT iDstHeight,
    UCHAR* pDstBuffer)
{
    if (pSrcBuffer == NULL || pDstBuffer == NULL)
    {
        ASSERT(FALSE);
        return;
    }

    if (iDstWidth > iSrcWidth || iDstHeight > iSrcHeight)
    {
        ASSERT(FALSE);
        return;
    }

    UINT iStartX = (iSrcWidth - iDstWidth) / 2;
    UINT iStartY = (iSrcHeight - iDstHeight) / 2;
            
    UCHAR* pImageCutData = (UCHAR*)pDstBuffer;

    UCHAR* pSrcBufferT = pSrcBuffer + (iStartX + iSrcWidth * iStartY) * 2;

    for (UINT y = iStartY; y < iStartY + iDstWidth; y++)
    {
        memmove(pImageCutData, pSrcBufferT, iDstWidth * 2);

        pImageCutData += iDstWidth * 2;
        
        pSrcBufferT += iSrcWidth * 2;
    }
}

  • 5
    点赞
  • 8
    收藏
    觉得还不错? 一键收藏
  • 1
    评论

“相关推荐”对你有帮助么?

  • 非常没帮助
  • 没帮助
  • 一般
  • 有帮助
  • 非常有帮助
提交
评论 1
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值