На главную

On-line справка по Win32 API

Написать письмо
БЕСПЛАТНАЯ ежедневная online лотерея! Выигрывай каждый день БЕСПЛАТНО!
Список всех статей A-B-C-D-E-F-G-H-I-J-K-L-M-N-O-P-Q-R-S-T-U-V-W-X-Y-Z | Скачать Вниз

Scaling an Image



Some applications scale images ѕ that is, they display zoomed or reduced views of an image. For example, a drawing application may provide a zoom feature that enables the user to view and edit a drawing on a pixel-by-pixel basis.

Applications scale images by calling the StretchBlt function. Like the BitBlt function, StretchBlt copies bitmap data from a bitmap in a source DC into a bitmap in a target DC. However, unlike the BitBlt function, StretchBlt scales the image based on the specified dimensions of the source and target rectangles. If the source rectangle is larger than the target rectangle, the resultant image will appear to have shrunk; if the source rectangle is smaller than the target rectangle, the resultant image will appear to have expanded.

If the target rectangle is smaller than the source rectangle, StretchBlt removes color data from the image according to a specified stretch mode as shown in the following table.

Stretch Mode Method
BLACKONWHITE Performs a logical AND operation on the color data for the eliminated pixels and the color data for the remaining pixels.
WHITEONBLACK Performs a logical OR operation on the color data for the eliminated pixels and the color data for the remaining pixels.
COLORONCOLOR Eliminates the color data of the deleted pixels completely.
HALFTONE Approximates the original (source) color data in the destination.


You set the stretch mode by calling the SetStretchBltMode function.
The following example code is taken from an application that displays an image either at its original size or a twice the original size. (This application uses the default stretch mode.)

hdcScaled = CreateCompatibleDC(hdcScreen);

hbmScaled = CreateCompatibleBitmap(hdcScreen,
GetDeviceCaps(hdcScreen, HORZRES) * 2,
GetDeviceCaps(hdcScreen, VERTRES) * 2);

if (hbmScaled == 0)
errhandler("hbmScaled", hwnd);

/* Select the bitmaps into the compatible DC. */

if (!SelectObject(hdcScaled, hbmScaled))
errhandler("Scaled Bitmap Selection", hwnd);

case WM_COMMAND: /* message: command from application menu */

switch(wParam) {

case IDM_SCALEX1:
if (fBlt){
fScaled = FALSE;
hdcWin = GetDC(hwnd);
BitBlt(hdcWin,
0,0,
bmp.bmWidth, bmp.bmHeight,
hdcCompatible,
0,0,
SRCCOPY);
ReleaseDC(hwnd, hdcWin);
}
break;

case IDM_SCALEX2:
if (fBlt){

fScaled = TRUE;
StretchBlt(hdcScaled,
0, 0,
bmp.bmWidth * 2, bmp.bmHeight * 2,
hdcCompatible,
0, 0,
bmp.bmWidth, bmp.bmHeight,
SRCCOPY);

hdcWin = GetDC(hwnd);
BitBlt(hdcWin,
0,0,
bmp.bmWidth, bmp.bmHeight,
hdcScaled,

0,0,
SRCCOPY);
ReleaseDC(hwnd, hdcWin);
}
break;



Пригласи друзей и счет твоего мобильника всегда будет положительным!
Предыдущая статья
 
Сайт Народ.Ру Интернет
Следующая статья
Пригласи друзей и счет твоего мобильника всегда будет положительным!

Масштабирование Образа



Некоторые приложения масштабируют образы U то есть, они отображают с измененным масштабом или сокращенные виды образа. Например, рисующее приложение может обеспечить изменение масштаба характеристики, которое позволяет потребителя, чтобы рассматривать и редактировать выдающий пикселем--основой пикселя.

Приложения масштабируют образы вызывая функцию StretchBlt. Подобно функции BitBlt, данные побитового отображения копий StretchBlt из побитового отображения в источнике DC в побитовое отображение в цели DC. Тем не менее, в отличие от функции BitBlt, весы StretchBlt образ основывался в определенных измерениях исходного и целевого прямоугольников. Если исходный прямоугольник больший чем целевой прямоугольник, равнодействующий образ будет оказывается сжимать; если исходный прямоугольник меньший чем целевой прямоугольник, равнодействующий образ будет оказывается расширяться.

Если целевой прямоугольник меньший чем исходный прямоугольник, цветные данные удалений StretchBlt из образа согласно определенный протягивать режим как показано в следующей таблице.

Протяните Метод Режима
BLACKONWHITE ВЫПОЛНЯЕТ логическую И операцию в цветных данных для устраненных пикселей и цветные данные для остальных пикселей.
WHITEONBLACK ВЫПОЛНЯЕТ логическую ИЛИ операцию в цветных данных для устраненных пикселей и цветные данные для остальных пикселей.
COLORONCOLOR УСТРАНЯЕТ цветные данные удаленных пикселей полностью.
ПОЛУТОН Аппроксимирует подлинник (источник) цветные данные в расположении.


Вы установили протягивать режим вызывая функцию SetStretchBltMode.
Следующий код примера взят из приложения, которое отображает образ или в своем оригинальном размере или дважды оригинальный размер. (Это приложение использует по умолчанию протягивать mode.)

hdcScaled = CreateCompatibleDC(hdcScreen);

hbmScaled = CreateCompatibleBitmap(hdcScreen, GetDeviceCaps(hdcScreen, HORZRES) * 2, GetDeviceCaps(hdcScreen, VERTRES) * 2);

если (hbmScaled == 0) errhandler("hbmScaled", hwnd);

/* Выберитесь побитовые отображения в совместимый DC. */

если (!SelectObject(hdcScaled, hbmScaled)) errhandler(ВЫБОР Побитового отображения "Scaled", hwnd);

случай WM_COMMAND: /* сообщение: команда из прикладного меню */

ключ(wParam) {

случай IDM_SCALEX1: если (fBlt){ fScaled = ЛОЖЬ;
hdcWin = GetDC(hwnd);
BitBlt(hdcWin,
0,0,
bmp.bmWidth, bmp.bmHeight, hdcCompatible,
0,0,
SRCCOPY);
ReleaseDC(hwnd, hdcWin);
}
прерывание;

случай IDM_SCALEX2: если (fBlt){

fScaled = ИСТИНА;
StretchBlt(hdcScaled,
0, 0,
bmp.bmWidth * 2, bmp.bmHeight * 2, hdcCompatible,
0, 0,
bmp.bmWidth, bmp.bmHeight, SRCCOPY);

hdcWin = GetDC(hwnd);
BitBlt(hdcWin,
0,0,
bmp.bmWidth, bmp.bmHeight, hdcScaled,

0,0,
SRCCOPY);
ReleaseDC(hwnd, hdcWin);
}
прерывание;



Вверх Version 1.3, Oct 26 2010 © 2007, 2010, mrhx Вверх
 mrhx software  Русский перевод OpenGL  Русский перевод Win32 API
 
Используются технологии uCoz