| 网站首页 | 业界新闻 | 小组 | 威客 | 人才 | 下载频道 | 博客 | 代码贴 | 在线编程 | 编程论坛
欢迎加入我们,一同切磋技术
用户名:   
 
密 码:  
共有 440 人关注过本帖
标题:放大功能
只看楼主 加入收藏
lihuifeng
Rank: 1
等 级:新手上路
帖 子:37
专家分:0
注 册:2006-8-23
收藏
 问题点数:0 回复次数:3 
放大功能

我在做一个画图软件 我想做一个放大功能的 就是放大是把整个画板放大 这应该这么做呢 ~
能帮我简单的写一下这段代码吗?? 谢谢~

搜索更多相关主题的帖子: 软件 
2006-12-28 20:10
cz522321
Rank: 1
等 级:禁止访问
威 望:2
帖 子:569
专家分:5
注 册:2006-3-13
收藏
得分:0 
直接用StretchBlt()函数只显示图片的一部分就行了.

2006-12-28 20:35
lihuifeng
Rank: 1
等 级:新手上路
帖 子:37
专家分:0
注 册:2006-8-23
收藏
得分:0 

这个函数应该怎么用呢??
用代码说明一下好吗?? 谢谢~

2006-12-28 20:40
cz522321
Rank: 1
等 级:禁止访问
威 望:2
帖 子:569
专家分:5
注 册:2006-3-13
收藏
得分:0 

CDC::StretchBlt
BOOL StretchBlt( int x, int y, int nWidth, int nHeight, CDC* pSrcDC, int xSrc, int ySrc, int nSrcWidth, int nSrcHeight, DWORD dwRop );

Return Value

Nonzero if the bitmap is drawn; otherwise 0.

Parameters

x

Specifies the x-coordinate (in logical units) of the upper-left corner of the destination rectangle.

y

Specifies the y-coordinate (in logical units) of the upper-left corner of the destination rectangle.

nWidth

Specifies the width (in logical units) of the destination rectangle.

nHeight

Specifies the height (in logical units) of the destination rectangle.

pSrcDC

Specifies the source device context.

xSrc

Specifies the x-coordinate (in logical units) of the upper-left corner of the source rectangle.

ySrc

Specifies the x-coordinate (in logical units) of the upper-left corner of the source rectangle.

nSrcWidth

Specifies the width (in logical units) of the source rectangle.

nSrcHeight

Specifies the height (in logical units) of the source rectangle.

dwRop

Specifies the raster operation to be performed. Raster operation codes define how GDI combines colors in output operations that involve a current brush, a possible source bitmap, and a destination bitmap. This parameter may be one of the following values:

BLACKNESS Turns all output black.


DSTINVERT Inverts the destination bitmap.


MERGECOPY Combines the pattern and the source bitmap using the Boolean AND operator.


MERGEPAINT Combines the inverted source bitmap with the destination bitmap using the Boolean OR operator.


NOTSRCCOPY Copies the inverted source bitmap to the destination.


NOTSRCERASE Inverts the result of combining the destination and source bitmaps using the Boolean OR operator.


PATCOPY Copies the pattern to the destination bitmap.


PATINVERT Combines the destination bitmap with the pattern using the Boolean XOR operator.


PATPAINT Combines the inverted source bitmap with the pattern using the Boolean OR operator. Combines the result of this operation with the destination bitmap using the Boolean OR operator.


SRCAND Combines pixels of the destination and source bitmaps using the Boolean AND operator.


SRCCOPY Copies the source bitmap to the destination bitmap.


SRCERASE Inverts the destination bitmap and combines the result with the source bitmap using the Boolean AND operator.


SRCINVERT Combines pixels of the destination and source bitmaps using the Boolean XOR operator.


SRCPAINT Combines pixels of the destination and source bitmaps using the Boolean OR operator.


WHITENESS Turns all output white.
Remarks

Copies a bitmap from a source rectangle into a destination rectangle, stretching or compressing the bitmap if necessary to fit the dimensions of the destination rectangle. The function uses the stretching mode of the destination device context (set by SetStretchBltMode) to determine how to stretch or compress the bitmap.

The StretchBlt function moves the bitmap from the source device given by pSrcDC to the destination device represented by the device-context object whose member function is being called. The xSrc, ySrc, nSrcWidth, and nSrcHeight parameters define the upper-left corner and dimensions of the source rectangle. The x, y, nWidth, and nHeight parameters give the upper-left corner and dimensions of the destination rectangle. The raster operation specified by dwRop defines how the source bitmap and the bits already on the destination device are combined.

The StretchBlt function creates a mirror image of a bitmap if the signs of the nSrcWidth and nWidth or nSrcHeight and nHeight parameters differ. If nSrcWidth and nWidth have different signs, the function creates a mirror image of the bitmap along the x-axis. If nSrcHeight and nHeight have different signs, the function creates a mirror image of the bitmap along the y-axis.

The StretchBlt function stretches or compresses the source bitmap in memory and then copies the result to the destination. If a pattern is to be merged with the result, it is not merged until the stretched source bitmap is copied to the destination. If a brush is used, it is the selected brush in the destination device context. The destination coordinates are transformed according to the destination device context; the source coordinates are transformed according to the source device context.

If the destination, source, and pattern bitmaps do not have the same color format, StretchBlt converts the source and pattern bitmaps to match the destination bitmaps. The foreground and background colors of the destination device context are used in the conversion.

If StretchBlt must convert a monochrome bitmap to color, it sets white bits (1) to the background color and black bits (0) to the foreground color. To convert color to monochrome, it sets pixels that match the background color to white (1) and sets all other pixels to black (0). The foreground and background colors of the device context with color are used.

Not all devices support the StretchBlt function. To determine whether a device supports StretchBlt, call the GetDeviceCaps member function with the RASTERCAPS index and check the return value for the RC_STRETCHBLT flag.

具体的你自己看吧!
目标指的是显示图,源指的是原来的位图!


2006-12-28 21:26
快速回复:放大功能
数据加载中...
 
   



关于我们 | 广告合作 | 编程中国 | 清除Cookies | TOP | 手机版

编程中国 版权所有,并保留所有权利。
Powered by Discuz, Processed in 0.029173 second(s), 10 queries.
Copyright©2004-2024, BCCN.NET, All Rights Reserved