Fix 2502818: Noise when refresh an imported image layer.
[synfig.git] / gtkmm-osx / trunk / libpng-1.2.5 / contrib / visupng / VisualPng.c
blobf2cf6ee9a2e1752d502d0976970dc8baab174e14
1 //------------------------------------
2 // VisualPng.C -- Shows a PNG image
3 //------------------------------------
5 // Copyright 2000, Willem van Schaik. For conditions of distribution and
6 // use, see the copyright/license/disclaimer notice in png.h
8 // switches
10 // defines
12 #define PROGNAME "VisualPng"
13 #define LONGNAME "Win32 Viewer for PNG-files"
14 #define VERSION "1.0 of 2000 June 07"
16 // constants
18 #define MARGIN 8
20 // standard includes
22 #include <stdio.h>
23 #include <stdlib.h>
24 #include <string.h>
25 #include <windows.h>
27 // application includes
29 #include "png.h"
30 #include "pngfile.h"
31 #include "resource.h"
33 // macros
35 // function prototypes
37 LRESULT CALLBACK WndProc (HWND, UINT, WPARAM, LPARAM);
38 BOOL CALLBACK AboutDlgProc (HWND, UINT, WPARAM, LPARAM) ;
40 BOOL CenterAbout (HWND hwndChild, HWND hwndParent);
42 BOOL BuildPngList (PTSTR pstrPathName, TCHAR **ppFileList, int *pFileCount,
43 int *pFileIndex);
45 BOOL SearchPngList (TCHAR *pFileList, int FileCount, int *pFileIndex,
46 PTSTR pstrPrevName, PTSTR pstrNextName);
48 BOOL LoadImageFile(HWND hwnd, PTSTR pstrPathName,
49 png_byte **ppbImage, int *pxImgSize, int *pyImgSize, int *piChannels,
50 png_color *pBkgColor);
52 BOOL DisplayImage (HWND hwnd, BYTE **ppDib,
53 BYTE **ppDiData, int cxWinSize, int cyWinSize,
54 BYTE *pbImage, int cxImgSize, int cyImgSize, int cImgChannels,
55 BOOL bStretched);
57 BOOL InitBitmap (
58 BYTE *pDiData, int cxWinSize, int cyWinSize);
60 BOOL FillBitmap (
61 BYTE *pDiData, int cxWinSize, int cyWinSize,
62 BYTE *pbImage, int cxImgSize, int cyImgSize, int cImgChannels,
63 BOOL bStretched);
65 // a few global variables
67 static char *szProgName = PROGNAME;
68 static char *szAppName = LONGNAME;
69 static char *szIconName = PROGNAME;
70 static char szCmdFileName [MAX_PATH];
72 // MAIN routine
74 int WINAPI WinMain (HINSTANCE hInstance, HINSTANCE hPrevInstance,
75 PSTR szCmdLine, int iCmdShow)
77 HACCEL hAccel;
78 HWND hwnd;
79 MSG msg;
80 WNDCLASS wndclass;
81 int ixBorders, iyBorders;
83 wndclass.style = CS_HREDRAW | CS_VREDRAW;
84 wndclass.lpfnWndProc = WndProc;
85 wndclass.cbClsExtra = 0;
86 wndclass.cbWndExtra = 0;
87 wndclass.hInstance = hInstance;
88 wndclass.hIcon = LoadIcon (hInstance, szIconName) ;
89 wndclass.hCursor = LoadCursor (NULL, IDC_ARROW);
90 wndclass.hbrBackground = NULL; // (HBRUSH) GetStockObject (GRAY_BRUSH);
91 wndclass.lpszMenuName = szProgName;
92 wndclass.lpszClassName = szProgName;
94 if (!RegisterClass (&wndclass))
96 MessageBox (NULL, TEXT ("Error: this program requires Windows NT!"),
97 szProgName, MB_ICONERROR);
98 return 0;
101 // if filename given on commandline, store it
102 if ((szCmdLine != NULL) && (*szCmdLine != '\0'))
103 if (szCmdLine[0] == '"')
104 strncpy (szCmdFileName, szCmdLine + 1, strlen(szCmdLine) - 2);
105 else
106 strcpy (szCmdFileName, szCmdLine);
107 else
108 strcpy (szCmdFileName, "");
110 // calculate size of window-borders
111 ixBorders = 2 * (GetSystemMetrics (SM_CXBORDER) +
112 GetSystemMetrics (SM_CXDLGFRAME));
113 iyBorders = 2 * (GetSystemMetrics (SM_CYBORDER) +
114 GetSystemMetrics (SM_CYDLGFRAME)) +
115 GetSystemMetrics (SM_CYCAPTION) +
116 GetSystemMetrics (SM_CYMENUSIZE) +
117 1; /* WvS: don't ask me why? */
119 hwnd = CreateWindow (szProgName, szAppName,
120 WS_OVERLAPPEDWINDOW,
121 CW_USEDEFAULT, CW_USEDEFAULT,
122 512 + 2 * MARGIN + ixBorders, 384 + 2 * MARGIN + iyBorders,
123 // CW_USEDEFAULT, CW_USEDEFAULT,
124 NULL, NULL, hInstance, NULL);
126 ShowWindow (hwnd, iCmdShow);
127 UpdateWindow (hwnd);
129 hAccel = LoadAccelerators (hInstance, szProgName);
131 while (GetMessage (&msg, NULL, 0, 0))
133 if (!TranslateAccelerator (hwnd, hAccel, &msg))
135 TranslateMessage (&msg);
136 DispatchMessage (&msg);
139 return msg.wParam;
142 LRESULT CALLBACK WndProc (HWND hwnd, UINT message, WPARAM wParam,
143 LPARAM lParam)
145 static HINSTANCE hInstance ;
146 static HDC hdc;
147 static PAINTSTRUCT ps;
148 static HMENU hMenu;
150 static BITMAPFILEHEADER *pbmfh;
151 static BITMAPINFOHEADER *pbmih;
152 static BYTE *pbImage;
153 static int cxWinSize, cyWinSize;
154 static int cxImgSize, cyImgSize;
155 static int cImgChannels;
156 static png_color bkgColor = {127, 127, 127};
158 static BOOL bStretched = TRUE;
160 static BYTE *pDib = NULL;
161 static BYTE *pDiData = NULL;
163 static TCHAR szImgPathName [MAX_PATH];
164 static TCHAR szTitleName [MAX_PATH];
166 static TCHAR *pPngFileList = NULL;
167 static int iPngFileCount;
168 static int iPngFileIndex;
170 BOOL bOk;
172 switch (message)
174 case WM_CREATE:
175 hInstance = ((LPCREATESTRUCT) lParam)->hInstance ;
176 PngFileInitialize (hwnd);
178 strcpy (szImgPathName, "");
180 // in case we process file given on command-line
182 if (szCmdFileName[0] != '\0')
184 strcpy (szImgPathName, szCmdFileName);
186 // read the other png-files in the directory for later
187 // next/previous commands
189 BuildPngList (szImgPathName, &pPngFileList, &iPngFileCount,
190 &iPngFileIndex);
192 // load the image from file
194 if (!LoadImageFile (hwnd, szImgPathName,
195 &pbImage, &cxImgSize, &cyImgSize, &cImgChannels, &bkgColor))
196 return 0;
198 // invalidate the client area for later update
200 InvalidateRect (hwnd, NULL, TRUE);
202 // display the PNG into the DIBitmap
204 DisplayImage (hwnd, &pDib, &pDiData, cxWinSize, cyWinSize,
205 pbImage, cxImgSize, cyImgSize, cImgChannels, bStretched);
208 return 0;
210 case WM_SIZE:
211 cxWinSize = LOWORD (lParam);
212 cyWinSize = HIWORD (lParam);
214 // invalidate the client area for later update
216 InvalidateRect (hwnd, NULL, TRUE);
218 // display the PNG into the DIBitmap
220 DisplayImage (hwnd, &pDib, &pDiData, cxWinSize, cyWinSize,
221 pbImage, cxImgSize, cyImgSize, cImgChannels, bStretched);
223 return 0;
225 case WM_INITMENUPOPUP:
226 hMenu = GetMenu (hwnd);
228 if (pbImage)
229 EnableMenuItem (hMenu, IDM_FILE_SAVE, MF_ENABLED);
230 else
231 EnableMenuItem (hMenu, IDM_FILE_SAVE, MF_GRAYED);
233 return 0;
235 case WM_COMMAND:
236 hMenu = GetMenu (hwnd);
238 switch (LOWORD (wParam))
240 case IDM_FILE_OPEN:
242 // show the File Open dialog box
244 if (!PngFileOpenDlg (hwnd, szImgPathName, szTitleName))
245 return 0;
247 // read the other png-files in the directory for later
248 // next/previous commands
250 BuildPngList (szImgPathName, &pPngFileList, &iPngFileCount,
251 &iPngFileIndex);
253 // load the image from file
255 if (!LoadImageFile (hwnd, szImgPathName,
256 &pbImage, &cxImgSize, &cyImgSize, &cImgChannels, &bkgColor))
257 return 0;
259 // invalidate the client area for later update
261 InvalidateRect (hwnd, NULL, TRUE);
263 // display the PNG into the DIBitmap
265 DisplayImage (hwnd, &pDib, &pDiData, cxWinSize, cyWinSize,
266 pbImage, cxImgSize, cyImgSize, cImgChannels, bStretched);
268 return 0;
270 case IDM_FILE_SAVE:
272 // show the File Save dialog box
274 if (!PngFileSaveDlg (hwnd, szImgPathName, szTitleName))
275 return 0;
277 // save the PNG to a disk file
279 SetCursor (LoadCursor (NULL, IDC_WAIT));
280 ShowCursor (TRUE);
282 bOk = PngSaveImage (szImgPathName, pDiData, cxWinSize, cyWinSize,
283 bkgColor);
285 ShowCursor (FALSE);
286 SetCursor (LoadCursor (NULL, IDC_ARROW));
288 if (!bOk)
289 MessageBox (hwnd, TEXT ("Error in saving the PNG image"),
290 szProgName, MB_ICONEXCLAMATION | MB_OK);
291 return 0;
293 case IDM_FILE_NEXT:
295 // read next entry in the directory
297 if (SearchPngList (pPngFileList, iPngFileCount, &iPngFileIndex,
298 NULL, szImgPathName))
300 if (strcmp (szImgPathName, "") == 0)
301 return 0;
303 // load the image from file
305 if (!LoadImageFile (hwnd, szImgPathName, &pbImage,
306 &cxImgSize, &cyImgSize, &cImgChannels, &bkgColor))
307 return 0;
309 // invalidate the client area for later update
311 InvalidateRect (hwnd, NULL, TRUE);
313 // display the PNG into the DIBitmap
315 DisplayImage (hwnd, &pDib, &pDiData, cxWinSize, cyWinSize,
316 pbImage, cxImgSize, cyImgSize, cImgChannels, bStretched);
319 return 0;
321 case IDM_FILE_PREVIOUS:
323 // read previous entry in the directory
325 if (SearchPngList (pPngFileList, iPngFileCount, &iPngFileIndex,
326 szImgPathName, NULL))
329 if (strcmp (szImgPathName, "") == 0)
330 return 0;
332 // load the image from file
334 if (!LoadImageFile (hwnd, szImgPathName, &pbImage, &cxImgSize,
335 &cyImgSize, &cImgChannels, &bkgColor))
336 return 0;
338 // invalidate the client area for later update
340 InvalidateRect (hwnd, NULL, TRUE);
342 // display the PNG into the DIBitmap
344 DisplayImage (hwnd, &pDib, &pDiData, cxWinSize, cyWinSize,
345 pbImage, cxImgSize, cyImgSize, cImgChannels, bStretched);
348 return 0;
350 case IDM_FILE_EXIT:
352 // more cleanup needed...
354 // free image buffer
356 if (pDib != NULL)
358 free (pDib);
359 pDib = NULL;
362 // free file-list
364 if (pPngFileList != NULL)
366 free (pPngFileList);
367 pPngFileList = NULL;
370 // let's go ...
372 exit (0);
374 return 0;
376 case IDM_OPTIONS_STRETCH:
377 bStretched = !bStretched;
378 if (bStretched)
379 CheckMenuItem (hMenu, IDM_OPTIONS_STRETCH, MF_CHECKED);
380 else
381 CheckMenuItem (hMenu, IDM_OPTIONS_STRETCH, MF_UNCHECKED);
383 // invalidate the client area for later update
385 InvalidateRect (hwnd, NULL, TRUE);
387 // display the PNG into the DIBitmap
389 DisplayImage (hwnd, &pDib, &pDiData, cxWinSize, cyWinSize,
390 pbImage, cxImgSize, cyImgSize, cImgChannels, bStretched);
392 return 0;
394 case IDM_HELP_ABOUT:
395 DialogBox (hInstance, TEXT ("AboutBox"), hwnd, AboutDlgProc) ;
396 return 0;
398 } // end switch
400 break;
402 case WM_PAINT:
403 hdc = BeginPaint (hwnd, &ps);
405 if (pDib)
406 SetDIBitsToDevice (hdc, 0, 0, cxWinSize, cyWinSize, 0, 0,
407 0, cyWinSize, pDiData, (BITMAPINFO *) pDib, DIB_RGB_COLORS);
409 EndPaint (hwnd, &ps);
410 return 0;
412 case WM_DESTROY:
413 if (pbmfh)
415 free (pbmfh);
416 pbmfh = NULL;
419 PostQuitMessage (0);
420 return 0;
423 return DefWindowProc (hwnd, message, wParam, lParam);
426 BOOL CALLBACK AboutDlgProc (HWND hDlg, UINT message,
427 WPARAM wParam, LPARAM lParam)
429 switch (message)
431 case WM_INITDIALOG :
432 ShowWindow (hDlg, SW_HIDE);
433 CenterAbout (hDlg, GetWindow (hDlg, GW_OWNER));
434 ShowWindow (hDlg, SW_SHOW);
435 return TRUE ;
437 case WM_COMMAND :
438 switch (LOWORD (wParam))
440 case IDOK :
441 case IDCANCEL :
442 EndDialog (hDlg, 0) ;
443 return TRUE ;
445 break ;
447 return FALSE ;
450 //---------------
451 // CenterAbout
452 //---------------
454 BOOL CenterAbout (HWND hwndChild, HWND hwndParent)
456 RECT rChild, rParent, rWorkArea;
457 int wChild, hChild, wParent, hParent;
458 int xNew, yNew;
459 BOOL bResult;
461 // Get the Height and Width of the child window
462 GetWindowRect (hwndChild, &rChild);
463 wChild = rChild.right - rChild.left;
464 hChild = rChild.bottom - rChild.top;
466 // Get the Height and Width of the parent window
467 GetWindowRect (hwndParent, &rParent);
468 wParent = rParent.right - rParent.left;
469 hParent = rParent.bottom - rParent.top;
471 // Get the limits of the 'workarea'
472 bResult = SystemParametersInfo(
473 SPI_GETWORKAREA, // system parameter to query or set
474 sizeof(RECT),
475 &rWorkArea,
477 if (!bResult) {
478 rWorkArea.left = rWorkArea.top = 0;
479 rWorkArea.right = GetSystemMetrics(SM_CXSCREEN);
480 rWorkArea.bottom = GetSystemMetrics(SM_CYSCREEN);
483 // Calculate new X position, then adjust for workarea
484 xNew = rParent.left + ((wParent - wChild) /2);
485 if (xNew < rWorkArea.left) {
486 xNew = rWorkArea.left;
487 } else if ((xNew+wChild) > rWorkArea.right) {
488 xNew = rWorkArea.right - wChild;
491 // Calculate new Y position, then adjust for workarea
492 yNew = rParent.top + ((hParent - hChild) /2);
493 if (yNew < rWorkArea.top) {
494 yNew = rWorkArea.top;
495 } else if ((yNew+hChild) > rWorkArea.bottom) {
496 yNew = rWorkArea.bottom - hChild;
499 // Set it, and return
500 return SetWindowPos (hwndChild, NULL, xNew, yNew, 0, 0, SWP_NOSIZE |
501 SWP_NOZORDER);
504 //----------------
505 // BuildPngList
506 //----------------
508 BOOL BuildPngList (PTSTR pstrPathName, TCHAR **ppFileList, int *pFileCount,
509 int *pFileIndex)
511 static TCHAR szImgPathName [MAX_PATH];
512 static TCHAR szImgFileName [MAX_PATH];
513 static TCHAR szImgFindName [MAX_PATH];
515 WIN32_FIND_DATA finddata;
516 HANDLE hFind;
518 static TCHAR szTmp [MAX_PATH];
519 BOOL bOk;
520 int i, ii;
521 int j, jj;
523 // free previous file-list
525 if (*ppFileList != NULL)
527 free (*ppFileList);
528 *ppFileList = NULL;
531 // extract foldername, filename and search-name
533 strcpy (szImgPathName, pstrPathName);
534 strcpy (szImgFileName, strrchr (pstrPathName, '\\') + 1);
536 strcpy (szImgFindName, szImgPathName);
537 *(strrchr (szImgFindName, '\\') + 1) = '\0';
538 strcat (szImgFindName, "*.png");
540 // first cycle: count number of files in directory for memory allocation
542 *pFileCount = 0;
544 hFind = FindFirstFile(szImgFindName, &finddata);
545 bOk = (hFind != (HANDLE) -1);
547 while (bOk)
549 *pFileCount += 1;
550 bOk = FindNextFile(hFind, &finddata);
552 FindClose(hFind);
554 // allocation memory for file-list
556 *ppFileList = (TCHAR *) malloc (*pFileCount * MAX_PATH);
558 // second cycle: read directory and store filenames in file-list
560 hFind = FindFirstFile(szImgFindName, &finddata);
561 bOk = (hFind != (HANDLE) -1);
563 i = 0;
564 ii = 0;
565 while (bOk)
567 strcpy (*ppFileList + ii, szImgPathName);
568 strcpy (strrchr(*ppFileList + ii, '\\') + 1, finddata.cFileName);
570 if (strcmp(pstrPathName, *ppFileList + ii) == 0)
571 *pFileIndex = i;
573 ii += MAX_PATH;
574 i++;
576 bOk = FindNextFile(hFind, &finddata);
578 FindClose(hFind);
580 // finally we must sort the file-list
582 for (i = 0; i < *pFileCount - 1; i++)
584 ii = i * MAX_PATH;
585 for (j = i+1; j < *pFileCount; j++)
587 jj = j * MAX_PATH;
588 if (strcmp (*ppFileList + ii, *ppFileList + jj) > 0)
590 strcpy (szTmp, *ppFileList + jj);
591 strcpy (*ppFileList + jj, *ppFileList + ii);
592 strcpy (*ppFileList + ii, szTmp);
594 // check if this was the current image that we moved
596 if (*pFileIndex == i)
597 *pFileIndex = j;
598 else
599 if (*pFileIndex == j)
600 *pFileIndex = i;
605 return TRUE;
608 //----------------
609 // SearchPngList
610 //----------------
612 BOOL SearchPngList (
613 TCHAR *pFileList, int FileCount, int *pFileIndex,
614 PTSTR pstrPrevName, PTSTR pstrNextName)
616 if (FileCount > 0)
618 // get previous entry
620 if (pstrPrevName != NULL)
622 if (*pFileIndex > 0)
623 *pFileIndex -= 1;
624 else
625 *pFileIndex = FileCount - 1;
627 strcpy (pstrPrevName, pFileList + (*pFileIndex * MAX_PATH));
630 // get next entry
632 if (pstrNextName != NULL)
634 if (*pFileIndex < FileCount - 1)
635 *pFileIndex += 1;
636 else
637 *pFileIndex = 0;
639 strcpy (pstrNextName, pFileList + (*pFileIndex * MAX_PATH));
642 return TRUE;
644 else
646 return FALSE;
650 //-----------------
651 // LoadImageFile
652 //-----------------
654 BOOL LoadImageFile (HWND hwnd, PTSTR pstrPathName,
655 png_byte **ppbImage, int *pxImgSize, int *pyImgSize,
656 int *piChannels, png_color *pBkgColor)
658 static TCHAR szTmp [MAX_PATH];
660 // if there's an existing PNG, free the memory
662 if (*ppbImage)
664 free (*ppbImage);
665 *ppbImage = NULL;
668 // Load the entire PNG into memory
670 SetCursor (LoadCursor (NULL, IDC_WAIT));
671 ShowCursor (TRUE);
673 PngLoadImage (pstrPathName, ppbImage, pxImgSize, pyImgSize, piChannels,
674 pBkgColor);
676 ShowCursor (FALSE);
677 SetCursor (LoadCursor (NULL, IDC_ARROW));
679 if (*ppbImage != NULL)
681 sprintf (szTmp, "VisualPng - %s", strrchr(pstrPathName, '\\') + 1);
682 SetWindowText (hwnd, szTmp);
684 else
686 MessageBox (hwnd, TEXT ("Error in loading the PNG image"),
687 szProgName, MB_ICONEXCLAMATION | MB_OK);
688 return FALSE;
691 return TRUE;
694 //----------------
695 // DisplayImage
696 //----------------
698 BOOL DisplayImage (HWND hwnd, BYTE **ppDib,
699 BYTE **ppDiData, int cxWinSize, int cyWinSize,
700 BYTE *pbImage, int cxImgSize, int cyImgSize, int cImgChannels,
701 BOOL bStretched)
703 BYTE *pDib = *ppDib;
704 BYTE *pDiData = *ppDiData;
705 // BITMAPFILEHEADER *pbmfh;
706 BITMAPINFOHEADER *pbmih;
707 WORD wDIRowBytes;
708 png_color bkgBlack = {0, 0, 0};
709 png_color bkgGray = {127, 127, 127};
710 png_color bkgWhite = {255, 255, 255};
712 // allocate memory for the Device Independant bitmap
714 wDIRowBytes = (WORD) ((3 * cxWinSize + 3L) >> 2) << 2;
716 if (pDib)
718 free (pDib);
719 pDib = NULL;
722 if (!(pDib = (BYTE *) malloc (sizeof(BITMAPINFOHEADER) +
723 wDIRowBytes * cyWinSize)))
725 MessageBox (hwnd, TEXT ("Error in displaying the PNG image"),
726 szProgName, MB_ICONEXCLAMATION | MB_OK);
727 *ppDib = pDib = NULL;
728 return FALSE;
730 *ppDib = pDib;
731 memset (pDib, 0, sizeof(BITMAPINFOHEADER));
733 // initialize the dib-structure
735 pbmih = (BITMAPINFOHEADER *) pDib;
736 pbmih->biSize = sizeof(BITMAPINFOHEADER);
737 pbmih->biWidth = cxWinSize;
738 pbmih->biHeight = -((long) cyWinSize);
739 pbmih->biPlanes = 1;
740 pbmih->biBitCount = 24;
741 pbmih->biCompression = 0;
742 pDiData = pDib + sizeof(BITMAPINFOHEADER);
743 *ppDiData = pDiData;
745 // first fill bitmap with gray and image border
747 InitBitmap (pDiData, cxWinSize, cyWinSize);
749 // then fill bitmap with image
751 if (pbImage)
753 FillBitmap (
754 pDiData, cxWinSize, cyWinSize,
755 pbImage, cxImgSize, cyImgSize, cImgChannels,
756 bStretched);
759 return TRUE;
762 //--------------
763 // InitBitmap
764 //--------------
766 BOOL InitBitmap (BYTE *pDiData, int cxWinSize, int cyWinSize)
768 BYTE *dst;
769 int x, y, col;
771 // initialize the background with gray
773 dst = pDiData;
774 for (y = 0; y < cyWinSize; y++)
776 col = 0;
777 for (x = 0; x < cxWinSize; x++)
779 // fill with GRAY
780 *dst++ = 127;
781 *dst++ = 127;
782 *dst++ = 127;
783 col += 3;
785 // rows start on 4 byte boundaries
786 while ((col % 4) != 0)
788 dst++;
789 col++;
793 return TRUE;
796 //--------------
797 // FillBitmap
798 //--------------
800 BOOL FillBitmap (
801 BYTE *pDiData, int cxWinSize, int cyWinSize,
802 BYTE *pbImage, int cxImgSize, int cyImgSize, int cImgChannels,
803 BOOL bStretched)
805 BYTE *pStretchedImage;
806 BYTE *pImg;
807 BYTE *src, *dst;
808 BYTE r, g, b, a;
809 const int cDIChannels = 3;
810 WORD wImgRowBytes;
811 WORD wDIRowBytes;
812 int cxNewSize, cyNewSize;
813 int cxImgPos, cyImgPos;
814 int xImg, yImg;
815 int xWin, yWin;
816 int xOld, yOld;
817 int xNew, yNew;
819 if (bStretched)
821 cxNewSize = cxWinSize - 2 * MARGIN;
822 cyNewSize = cyWinSize - 2 * MARGIN;
824 // stretch the image to it's window determined size
826 // the following two are the same, but the first has side-effects
827 // because of rounding
828 // if ((cyNewSize / cxNewSize) > (cyImgSize / cxImgSize))
829 if ((cyNewSize * cxImgSize) > (cyImgSize * cxNewSize))
831 cyNewSize = cxNewSize * cyImgSize / cxImgSize;
832 cxImgPos = MARGIN;
833 cyImgPos = (cyWinSize - cyNewSize) / 2;
835 else
837 cxNewSize = cyNewSize * cxImgSize / cyImgSize;
838 cyImgPos = MARGIN;
839 cxImgPos = (cxWinSize - cxNewSize) / 2;
842 pStretchedImage = malloc (cImgChannels * cxNewSize * cyNewSize);
843 pImg = pStretchedImage;
845 for (yNew = 0; yNew < cyNewSize; yNew++)
847 yOld = yNew * cyImgSize / cyNewSize;
848 for (xNew = 0; xNew < cxNewSize; xNew++)
850 xOld = xNew * cxImgSize / cxNewSize;
852 r = *(pbImage + cImgChannels * ((yOld * cxImgSize) + xOld) + 0);
853 g = *(pbImage + cImgChannels * ((yOld * cxImgSize) + xOld) + 1);
854 b = *(pbImage + cImgChannels * ((yOld * cxImgSize) + xOld) + 2);
855 *pImg++ = r;
856 *pImg++ = g;
857 *pImg++ = b;
858 if (cImgChannels == 4)
860 a = *(pbImage + cImgChannels * ((yOld * cxImgSize) + xOld)
861 + 3);
862 *pImg++ = a;
867 // calculate row-bytes
869 wImgRowBytes = cImgChannels * cxNewSize;
870 wDIRowBytes = (WORD) ((cDIChannels * cxWinSize + 3L) >> 2) << 2;
872 // copy image to screen
874 for (yImg = 0, yWin = cyImgPos; yImg < cyNewSize; yImg++, yWin++)
876 if (yWin >= cyWinSize - cyImgPos)
877 break;
878 src = pStretchedImage + yImg * wImgRowBytes;
879 dst = pDiData + yWin * wDIRowBytes + cxImgPos * cDIChannels;
881 for (xImg = 0, xWin = cxImgPos; xImg < cxNewSize; xImg++, xWin++)
883 if (xWin >= cxWinSize - cxImgPos)
884 break;
885 r = *src++;
886 g = *src++;
887 b = *src++;
888 *dst++ = b; /* note the reverse order */
889 *dst++ = g;
890 *dst++ = r;
891 if (cImgChannels == 4)
893 a = *src++;
898 // free memory
900 if (pStretchedImage != NULL)
902 free (pStretchedImage);
903 pStretchedImage = NULL;
908 // process the image not-stretched
910 else
912 // calculate the central position
914 cxImgPos = (cxWinSize - cxImgSize) / 2;
915 cyImgPos = (cyWinSize - cyImgSize) / 2;
917 // check for image larger than window
919 if (cxImgPos < MARGIN)
920 cxImgPos = MARGIN;
921 if (cyImgPos < MARGIN)
922 cyImgPos = MARGIN;
924 // calculate both row-bytes
926 wImgRowBytes = cImgChannels * cxImgSize;
927 wDIRowBytes = (WORD) ((cDIChannels * cxWinSize + 3L) >> 2) << 2;
929 // copy image to screen
931 for (yImg = 0, yWin = cyImgPos; yImg < cyImgSize; yImg++, yWin++)
933 if (yWin >= cyWinSize - MARGIN)
934 break;
935 src = pbImage + yImg * wImgRowBytes;
936 dst = pDiData + yWin * wDIRowBytes + cxImgPos * cDIChannels;
938 for (xImg = 0, xWin = cxImgPos; xImg < cxImgSize; xImg++, xWin++)
940 if (xWin >= cxWinSize - MARGIN)
941 break;
942 r = *src++;
943 g = *src++;
944 b = *src++;
945 *dst++ = b; /* note the reverse order */
946 *dst++ = g;
947 *dst++ = r;
948 if (cImgChannels == 4)
950 a = *src++;
956 return TRUE;
959 //-----------------
960 // end of source
961 //-----------------