gdiplus: Dump the matrix passed to GdipSetWorldTransform.
[wine/multimedia.git] / dlls / gdiplus / graphics.c
blob2b7a87bc9ba93c35b382e70b7d2299648d2dc46a
1 /*
2 * Copyright (C) 2007 Google (Evan Stade)
4 * This library is free software; you can redistribute it and/or
5 * modify it under the terms of the GNU Lesser General Public
6 * License as published by the Free Software Foundation; either
7 * version 2.1 of the License, or (at your option) any later version.
9 * This library is distributed in the hope that it will be useful,
10 * but WITHOUT ANY WARRANTY; without even the implied warranty of
11 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
12 * Lesser General Public License for more details.
14 * You should have received a copy of the GNU Lesser General Public
15 * License along with this library; if not, write to the Free Software
16 * Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301, USA
19 #include <stdarg.h>
20 #include <math.h>
21 #include <limits.h>
23 #include "windef.h"
24 #include "winbase.h"
25 #include "winuser.h"
26 #include "wingdi.h"
27 #include "wine/unicode.h"
29 #define COBJMACROS
30 #include "objbase.h"
31 #include "ocidl.h"
32 #include "olectl.h"
33 #include "ole2.h"
35 #include "winreg.h"
36 #include "shlwapi.h"
38 #include "gdiplus.h"
39 #include "gdiplus_private.h"
40 #include "wine/debug.h"
41 #include "wine/list.h"
43 WINE_DEFAULT_DEBUG_CHANNEL(gdiplus);
45 /* looks-right constants */
46 #define ANCHOR_WIDTH (2.0)
47 #define MAX_ITERS (50)
49 /* Converts angle (in degrees) to x/y coordinates */
50 static void deg2xy(REAL angle, REAL x_0, REAL y_0, REAL *x, REAL *y)
52 REAL radAngle, hypotenuse;
54 radAngle = deg2rad(angle);
55 hypotenuse = 50.0; /* arbitrary */
57 *x = x_0 + cos(radAngle) * hypotenuse;
58 *y = y_0 + sin(radAngle) * hypotenuse;
61 /* Converts from gdiplus path point type to gdi path point type. */
62 static BYTE convert_path_point_type(BYTE type)
64 BYTE ret;
66 switch(type & PathPointTypePathTypeMask){
67 case PathPointTypeBezier:
68 ret = PT_BEZIERTO;
69 break;
70 case PathPointTypeLine:
71 ret = PT_LINETO;
72 break;
73 case PathPointTypeStart:
74 ret = PT_MOVETO;
75 break;
76 default:
77 ERR("Bad point type\n");
78 return 0;
81 if(type & PathPointTypeCloseSubpath)
82 ret |= PT_CLOSEFIGURE;
84 return ret;
87 static COLORREF get_gdi_brush_color(const GpBrush *brush)
89 ARGB argb;
91 switch (brush->bt)
93 case BrushTypeSolidColor:
95 const GpSolidFill *sf = (const GpSolidFill *)brush;
96 argb = sf->color;
97 break;
99 case BrushTypeHatchFill:
101 const GpHatch *hatch = (const GpHatch *)brush;
102 argb = hatch->forecol;
103 break;
105 case BrushTypeLinearGradient:
107 const GpLineGradient *line = (const GpLineGradient *)brush;
108 argb = line->startcolor;
109 break;
111 case BrushTypePathGradient:
113 const GpPathGradient *grad = (const GpPathGradient *)brush;
114 argb = grad->centercolor;
115 break;
117 default:
118 FIXME("unhandled brush type %d\n", brush->bt);
119 argb = 0;
120 break;
122 return ARGB2COLORREF(argb);
125 static HBITMAP create_hatch_bitmap(const GpHatch *hatch)
127 HBITMAP hbmp;
128 BITMAPINFOHEADER bmih;
129 DWORD *bits;
130 int x, y;
132 bmih.biSize = sizeof(bmih);
133 bmih.biWidth = 8;
134 bmih.biHeight = 8;
135 bmih.biPlanes = 1;
136 bmih.biBitCount = 32;
137 bmih.biCompression = BI_RGB;
138 bmih.biSizeImage = 0;
140 hbmp = CreateDIBSection(0, (BITMAPINFO *)&bmih, DIB_RGB_COLORS, (void **)&bits, NULL, 0);
141 if (hbmp)
143 const char *hatch_data;
145 if (get_hatch_data(hatch->hatchstyle, &hatch_data) == Ok)
147 for (y = 0; y < 8; y++)
149 for (x = 0; x < 8; x++)
151 if (hatch_data[y] & (0x80 >> x))
152 bits[y * 8 + x] = hatch->forecol;
153 else
154 bits[y * 8 + x] = hatch->backcol;
158 else
160 FIXME("Unimplemented hatch style %d\n", hatch->hatchstyle);
162 for (y = 0; y < 64; y++)
163 bits[y] = hatch->forecol;
167 return hbmp;
170 static GpStatus create_gdi_logbrush(const GpBrush *brush, LOGBRUSH *lb)
172 switch (brush->bt)
174 case BrushTypeSolidColor:
176 const GpSolidFill *sf = (const GpSolidFill *)brush;
177 lb->lbStyle = BS_SOLID;
178 lb->lbColor = ARGB2COLORREF(sf->color);
179 lb->lbHatch = 0;
180 return Ok;
183 case BrushTypeHatchFill:
185 const GpHatch *hatch = (const GpHatch *)brush;
186 HBITMAP hbmp;
188 hbmp = create_hatch_bitmap(hatch);
189 if (!hbmp) return OutOfMemory;
191 lb->lbStyle = BS_PATTERN;
192 lb->lbColor = 0;
193 lb->lbHatch = (ULONG_PTR)hbmp;
194 return Ok;
197 default:
198 FIXME("unhandled brush type %d\n", brush->bt);
199 lb->lbStyle = BS_SOLID;
200 lb->lbColor = get_gdi_brush_color(brush);
201 lb->lbHatch = 0;
202 return Ok;
206 static GpStatus free_gdi_logbrush(LOGBRUSH *lb)
208 switch (lb->lbStyle)
210 case BS_PATTERN:
211 DeleteObject((HGDIOBJ)(ULONG_PTR)lb->lbHatch);
212 break;
214 return Ok;
217 static HBRUSH create_gdi_brush(const GpBrush *brush)
219 LOGBRUSH lb;
220 HBRUSH gdibrush;
222 if (create_gdi_logbrush(brush, &lb) != Ok) return 0;
224 gdibrush = CreateBrushIndirect(&lb);
225 free_gdi_logbrush(&lb);
227 return gdibrush;
230 static INT prepare_dc(GpGraphics *graphics, GpPen *pen)
232 LOGBRUSH lb;
233 HPEN gdipen;
234 REAL width;
235 INT save_state, i, numdashes;
236 GpPointF pt[2];
237 DWORD dash_array[MAX_DASHLEN];
239 save_state = SaveDC(graphics->hdc);
241 EndPath(graphics->hdc);
243 if(pen->unit == UnitPixel){
244 width = pen->width;
246 else{
247 /* Get an estimate for the amount the pen width is affected by the world
248 * transform. (This is similar to what some of the wine drivers do.) */
249 pt[0].X = 0.0;
250 pt[0].Y = 0.0;
251 pt[1].X = 1.0;
252 pt[1].Y = 1.0;
253 GdipTransformMatrixPoints(graphics->worldtrans, pt, 2);
254 width = sqrt((pt[1].X - pt[0].X) * (pt[1].X - pt[0].X) +
255 (pt[1].Y - pt[0].Y) * (pt[1].Y - pt[0].Y)) / sqrt(2.0);
257 width *= units_to_pixels(pen->width, pen->unit == UnitWorld ? graphics->unit : pen->unit, graphics->xres);
260 if(pen->dash == DashStyleCustom){
261 numdashes = min(pen->numdashes, MAX_DASHLEN);
263 TRACE("dashes are: ");
264 for(i = 0; i < numdashes; i++){
265 dash_array[i] = roundr(width * pen->dashes[i]);
266 TRACE("%d, ", dash_array[i]);
268 TRACE("\n and the pen style is %x\n", pen->style);
270 create_gdi_logbrush(pen->brush, &lb);
271 gdipen = ExtCreatePen(pen->style, roundr(width), &lb,
272 numdashes, dash_array);
273 free_gdi_logbrush(&lb);
275 else
277 create_gdi_logbrush(pen->brush, &lb);
278 gdipen = ExtCreatePen(pen->style, roundr(width), &lb, 0, NULL);
279 free_gdi_logbrush(&lb);
282 SelectObject(graphics->hdc, gdipen);
284 return save_state;
287 static void restore_dc(GpGraphics *graphics, INT state)
289 DeleteObject(SelectObject(graphics->hdc, GetStockObject(NULL_PEN)));
290 RestoreDC(graphics->hdc, state);
293 static GpStatus get_graphics_transform(GpGraphics *graphics, GpCoordinateSpace dst_space,
294 GpCoordinateSpace src_space, GpMatrix **matrix);
296 /* This helper applies all the changes that the points listed in ptf need in
297 * order to be drawn on the device context. In the end, this should include at
298 * least:
299 * -scaling by page unit
300 * -applying world transformation
301 * -converting from float to int
302 * Native gdiplus uses gdi32 to do all this (via SetMapMode, SetViewportExtEx,
303 * SetWindowExtEx, SetWorldTransform, etc.) but we cannot because we are using
304 * gdi to draw, and these functions would irreparably mess with line widths.
306 static void transform_and_round_points(GpGraphics *graphics, POINT *pti,
307 GpPointF *ptf, INT count)
309 REAL scale_x, scale_y;
310 GpMatrix *matrix;
311 int i;
313 scale_x = units_to_pixels(1.0, graphics->unit, graphics->xres);
314 scale_y = units_to_pixels(1.0, graphics->unit, graphics->yres);
316 /* apply page scale */
317 if(graphics->unit != UnitDisplay)
319 scale_x *= graphics->scale;
320 scale_y *= graphics->scale;
323 GdipCloneMatrix(graphics->worldtrans, &matrix);
324 GdipScaleMatrix(matrix, scale_x, scale_y, MatrixOrderAppend);
325 GdipTransformMatrixPoints(matrix, ptf, count);
326 GdipDeleteMatrix(matrix);
328 for(i = 0; i < count; i++){
329 pti[i].x = roundr(ptf[i].X);
330 pti[i].y = roundr(ptf[i].Y);
334 static void gdi_alpha_blend(GpGraphics *graphics, INT dst_x, INT dst_y, INT dst_width, INT dst_height,
335 HDC hdc, INT src_x, INT src_y, INT src_width, INT src_height)
337 if (GetDeviceCaps(graphics->hdc, SHADEBLENDCAPS) == SB_NONE)
339 TRACE("alpha blending not supported by device, fallback to StretchBlt\n");
341 StretchBlt(graphics->hdc, dst_x, dst_y, dst_width, dst_height,
342 hdc, src_x, src_y, src_width, src_height, SRCCOPY);
344 else
346 BLENDFUNCTION bf;
348 bf.BlendOp = AC_SRC_OVER;
349 bf.BlendFlags = 0;
350 bf.SourceConstantAlpha = 255;
351 bf.AlphaFormat = AC_SRC_ALPHA;
353 GdiAlphaBlend(graphics->hdc, dst_x, dst_y, dst_width, dst_height,
354 hdc, src_x, src_y, src_width, src_height, bf);
358 /* Draw non-premultiplied ARGB data to the given graphics object */
359 static GpStatus alpha_blend_pixels(GpGraphics *graphics, INT dst_x, INT dst_y,
360 const BYTE *src, INT src_width, INT src_height, INT src_stride)
362 if (graphics->image && graphics->image->type == ImageTypeBitmap)
364 GpBitmap *dst_bitmap = (GpBitmap*)graphics->image;
365 INT x, y;
367 for (x=0; x<src_width; x++)
369 for (y=0; y<src_height; y++)
371 ARGB dst_color, src_color;
372 GdipBitmapGetPixel(dst_bitmap, x+dst_x, y+dst_y, &dst_color);
373 src_color = ((ARGB*)(src + src_stride * y))[x];
374 GdipBitmapSetPixel(dst_bitmap, x+dst_x, y+dst_y, color_over(dst_color, src_color));
378 return Ok;
380 else if (graphics->image && graphics->image->type == ImageTypeMetafile)
382 ERR("This should not be used for metafiles; fix caller\n");
383 return NotImplemented;
385 else
387 HDC hdc;
388 HBITMAP hbitmap;
389 BITMAPINFOHEADER bih;
390 BYTE *temp_bits;
392 hdc = CreateCompatibleDC(0);
394 bih.biSize = sizeof(BITMAPINFOHEADER);
395 bih.biWidth = src_width;
396 bih.biHeight = -src_height;
397 bih.biPlanes = 1;
398 bih.biBitCount = 32;
399 bih.biCompression = BI_RGB;
400 bih.biSizeImage = 0;
401 bih.biXPelsPerMeter = 0;
402 bih.biYPelsPerMeter = 0;
403 bih.biClrUsed = 0;
404 bih.biClrImportant = 0;
406 hbitmap = CreateDIBSection(hdc, (BITMAPINFO*)&bih, DIB_RGB_COLORS,
407 (void**)&temp_bits, NULL, 0);
409 convert_32bppARGB_to_32bppPARGB(src_width, src_height, temp_bits,
410 4 * src_width, src, src_stride);
412 SelectObject(hdc, hbitmap);
413 gdi_alpha_blend(graphics, dst_x, dst_y, src_width, src_height,
414 hdc, 0, 0, src_width, src_height);
415 DeleteDC(hdc);
416 DeleteObject(hbitmap);
418 return Ok;
422 static GpStatus alpha_blend_pixels_hrgn(GpGraphics *graphics, INT dst_x, INT dst_y,
423 const BYTE *src, INT src_width, INT src_height, INT src_stride, HRGN hregion)
425 GpStatus stat=Ok;
427 if (graphics->image && graphics->image->type == ImageTypeBitmap)
429 int i, size;
430 RGNDATA *rgndata;
431 RECT *rects;
433 size = GetRegionData(hregion, 0, NULL);
435 rgndata = GdipAlloc(size);
436 if (!rgndata)
437 return OutOfMemory;
439 GetRegionData(hregion, size, rgndata);
441 rects = (RECT*)&rgndata->Buffer;
443 for (i=0; stat == Ok && i<rgndata->rdh.nCount; i++)
445 stat = alpha_blend_pixels(graphics, rects[i].left, rects[i].top,
446 &src[(rects[i].left - dst_x) * 4 + (rects[i].top - dst_y) * src_stride],
447 rects[i].right - rects[i].left, rects[i].bottom - rects[i].top,
448 src_stride);
451 GdipFree(rgndata);
453 return stat;
455 else if (graphics->image && graphics->image->type == ImageTypeMetafile)
457 ERR("This should not be used for metafiles; fix caller\n");
458 return NotImplemented;
460 else
462 int save;
464 save = SaveDC(graphics->hdc);
466 ExtSelectClipRgn(graphics->hdc, hregion, RGN_AND);
468 stat = alpha_blend_pixels(graphics, dst_x, dst_y, src, src_width,
469 src_height, src_stride);
471 RestoreDC(graphics->hdc, save);
473 return stat;
477 static ARGB blend_colors(ARGB start, ARGB end, REAL position)
479 ARGB result=0;
480 ARGB i;
481 INT a1, a2, a3;
483 a1 = (start >> 24) & 0xff;
484 a2 = (end >> 24) & 0xff;
486 a3 = (int)(a1*(1.0f - position)+a2*(position));
488 result |= a3 << 24;
490 for (i=0xff; i<=0xff0000; i = i << 8)
491 result |= (int)((start&i)*(1.0f - position)+(end&i)*(position))&i;
492 return result;
495 static ARGB blend_line_gradient(GpLineGradient* brush, REAL position)
497 REAL blendfac;
499 /* clamp to between 0.0 and 1.0, using the wrap mode */
500 if (brush->wrap == WrapModeTile)
502 position = fmodf(position, 1.0f);
503 if (position < 0.0f) position += 1.0f;
505 else /* WrapModeFlip* */
507 position = fmodf(position, 2.0f);
508 if (position < 0.0f) position += 2.0f;
509 if (position > 1.0f) position = 2.0f - position;
512 if (brush->blendcount == 1)
513 blendfac = position;
514 else
516 int i=1;
517 REAL left_blendpos, left_blendfac, right_blendpos, right_blendfac;
518 REAL range;
520 /* locate the blend positions surrounding this position */
521 while (position > brush->blendpos[i])
522 i++;
524 /* interpolate between the blend positions */
525 left_blendpos = brush->blendpos[i-1];
526 left_blendfac = brush->blendfac[i-1];
527 right_blendpos = brush->blendpos[i];
528 right_blendfac = brush->blendfac[i];
529 range = right_blendpos - left_blendpos;
530 blendfac = (left_blendfac * (right_blendpos - position) +
531 right_blendfac * (position - left_blendpos)) / range;
534 if (brush->pblendcount == 0)
535 return blend_colors(brush->startcolor, brush->endcolor, blendfac);
536 else
538 int i=1;
539 ARGB left_blendcolor, right_blendcolor;
540 REAL left_blendpos, right_blendpos;
542 /* locate the blend colors surrounding this position */
543 while (blendfac > brush->pblendpos[i])
544 i++;
546 /* interpolate between the blend colors */
547 left_blendpos = brush->pblendpos[i-1];
548 left_blendcolor = brush->pblendcolor[i-1];
549 right_blendpos = brush->pblendpos[i];
550 right_blendcolor = brush->pblendcolor[i];
551 blendfac = (blendfac - left_blendpos) / (right_blendpos - left_blendpos);
552 return blend_colors(left_blendcolor, right_blendcolor, blendfac);
556 static ARGB transform_color(ARGB color, const ColorMatrix *matrix)
558 REAL val[5], res[4];
559 int i, j;
560 unsigned char a, r, g, b;
562 val[0] = ((color >> 16) & 0xff) / 255.0; /* red */
563 val[1] = ((color >> 8) & 0xff) / 255.0; /* green */
564 val[2] = (color & 0xff) / 255.0; /* blue */
565 val[3] = ((color >> 24) & 0xff) / 255.0; /* alpha */
566 val[4] = 1.0; /* translation */
568 for (i=0; i<4; i++)
570 res[i] = 0.0;
572 for (j=0; j<5; j++)
573 res[i] += matrix->m[j][i] * val[j];
576 a = min(max(floorf(res[3]*255.0), 0.0), 255.0);
577 r = min(max(floorf(res[0]*255.0), 0.0), 255.0);
578 g = min(max(floorf(res[1]*255.0), 0.0), 255.0);
579 b = min(max(floorf(res[2]*255.0), 0.0), 255.0);
581 return (a << 24) | (r << 16) | (g << 8) | b;
584 static int color_is_gray(ARGB color)
586 unsigned char r, g, b;
588 r = (color >> 16) & 0xff;
589 g = (color >> 8) & 0xff;
590 b = color & 0xff;
592 return (r == g) && (g == b);
595 static void apply_image_attributes(const GpImageAttributes *attributes, LPBYTE data,
596 UINT width, UINT height, INT stride, ColorAdjustType type)
598 UINT x, y, i;
600 if (attributes->colorkeys[type].enabled ||
601 attributes->colorkeys[ColorAdjustTypeDefault].enabled)
603 const struct color_key *key;
604 BYTE min_blue, min_green, min_red;
605 BYTE max_blue, max_green, max_red;
607 if (attributes->colorkeys[type].enabled)
608 key = &attributes->colorkeys[type];
609 else
610 key = &attributes->colorkeys[ColorAdjustTypeDefault];
612 min_blue = key->low&0xff;
613 min_green = (key->low>>8)&0xff;
614 min_red = (key->low>>16)&0xff;
616 max_blue = key->high&0xff;
617 max_green = (key->high>>8)&0xff;
618 max_red = (key->high>>16)&0xff;
620 for (x=0; x<width; x++)
621 for (y=0; y<height; y++)
623 ARGB *src_color;
624 BYTE blue, green, red;
625 src_color = (ARGB*)(data + stride * y + sizeof(ARGB) * x);
626 blue = *src_color&0xff;
627 green = (*src_color>>8)&0xff;
628 red = (*src_color>>16)&0xff;
629 if (blue >= min_blue && green >= min_green && red >= min_red &&
630 blue <= max_blue && green <= max_green && red <= max_red)
631 *src_color = 0x00000000;
635 if (attributes->colorremaptables[type].enabled ||
636 attributes->colorremaptables[ColorAdjustTypeDefault].enabled)
638 const struct color_remap_table *table;
640 if (attributes->colorremaptables[type].enabled)
641 table = &attributes->colorremaptables[type];
642 else
643 table = &attributes->colorremaptables[ColorAdjustTypeDefault];
645 for (x=0; x<width; x++)
646 for (y=0; y<height; y++)
648 ARGB *src_color;
649 src_color = (ARGB*)(data + stride * y + sizeof(ARGB) * x);
650 for (i=0; i<table->mapsize; i++)
652 if (*src_color == table->colormap[i].oldColor.Argb)
654 *src_color = table->colormap[i].newColor.Argb;
655 break;
661 if (attributes->colormatrices[type].enabled ||
662 attributes->colormatrices[ColorAdjustTypeDefault].enabled)
664 const struct color_matrix *colormatrices;
666 if (attributes->colormatrices[type].enabled)
667 colormatrices = &attributes->colormatrices[type];
668 else
669 colormatrices = &attributes->colormatrices[ColorAdjustTypeDefault];
671 for (x=0; x<width; x++)
672 for (y=0; y<height; y++)
674 ARGB *src_color;
675 src_color = (ARGB*)(data + stride * y + sizeof(ARGB) * x);
677 if (colormatrices->flags == ColorMatrixFlagsDefault ||
678 !color_is_gray(*src_color))
680 *src_color = transform_color(*src_color, &colormatrices->colormatrix);
682 else if (colormatrices->flags == ColorMatrixFlagsAltGray)
684 *src_color = transform_color(*src_color, &colormatrices->graymatrix);
689 if (attributes->gamma_enabled[type] ||
690 attributes->gamma_enabled[ColorAdjustTypeDefault])
692 REAL gamma;
694 if (attributes->gamma_enabled[type])
695 gamma = attributes->gamma[type];
696 else
697 gamma = attributes->gamma[ColorAdjustTypeDefault];
699 for (x=0; x<width; x++)
700 for (y=0; y<height; y++)
702 ARGB *src_color;
703 BYTE blue, green, red;
704 src_color = (ARGB*)(data + stride * y + sizeof(ARGB) * x);
706 blue = *src_color&0xff;
707 green = (*src_color>>8)&0xff;
708 red = (*src_color>>16)&0xff;
710 /* FIXME: We should probably use a table for this. */
711 blue = floorf(powf(blue / 255.0, gamma) * 255.0);
712 green = floorf(powf(green / 255.0, gamma) * 255.0);
713 red = floorf(powf(red / 255.0, gamma) * 255.0);
715 *src_color = (*src_color & 0xff000000) | (red << 16) | (green << 8) | blue;
720 /* Given a bitmap and its source rectangle, find the smallest rectangle in the
721 * bitmap that contains all the pixels we may need to draw it. */
722 static void get_bitmap_sample_size(InterpolationMode interpolation, WrapMode wrap,
723 GpBitmap* bitmap, REAL srcx, REAL srcy, REAL srcwidth, REAL srcheight,
724 GpRect *rect)
726 INT left, top, right, bottom;
728 switch (interpolation)
730 case InterpolationModeHighQualityBilinear:
731 case InterpolationModeHighQualityBicubic:
732 /* FIXME: Include a greater range for the prefilter? */
733 case InterpolationModeBicubic:
734 case InterpolationModeBilinear:
735 left = (INT)(floorf(srcx));
736 top = (INT)(floorf(srcy));
737 right = (INT)(ceilf(srcx+srcwidth));
738 bottom = (INT)(ceilf(srcy+srcheight));
739 break;
740 case InterpolationModeNearestNeighbor:
741 default:
742 left = roundr(srcx);
743 top = roundr(srcy);
744 right = roundr(srcx+srcwidth);
745 bottom = roundr(srcy+srcheight);
746 break;
749 if (wrap == WrapModeClamp)
751 if (left < 0)
752 left = 0;
753 if (top < 0)
754 top = 0;
755 if (right >= bitmap->width)
756 right = bitmap->width-1;
757 if (bottom >= bitmap->height)
758 bottom = bitmap->height-1;
760 else
762 /* In some cases we can make the rectangle smaller here, but the logic
763 * is hard to get right, and tiling suggests we're likely to use the
764 * entire source image. */
765 if (left < 0 || right >= bitmap->width)
767 left = 0;
768 right = bitmap->width-1;
771 if (top < 0 || bottom >= bitmap->height)
773 top = 0;
774 bottom = bitmap->height-1;
778 rect->X = left;
779 rect->Y = top;
780 rect->Width = right - left + 1;
781 rect->Height = bottom - top + 1;
784 static ARGB sample_bitmap_pixel(GDIPCONST GpRect *src_rect, LPBYTE bits, UINT width,
785 UINT height, INT x, INT y, GDIPCONST GpImageAttributes *attributes)
787 if (attributes->wrap == WrapModeClamp)
789 if (x < 0 || y < 0 || x >= width || y >= height)
790 return attributes->outside_color;
792 else
794 /* Tiling. Make sure co-ordinates are positive as it simplifies the math. */
795 if (x < 0)
796 x = width*2 + x % (width * 2);
797 if (y < 0)
798 y = height*2 + y % (height * 2);
800 if ((attributes->wrap & 1) == 1)
802 /* Flip X */
803 if ((x / width) % 2 == 0)
804 x = x % width;
805 else
806 x = width - 1 - x % width;
808 else
809 x = x % width;
811 if ((attributes->wrap & 2) == 2)
813 /* Flip Y */
814 if ((y / height) % 2 == 0)
815 y = y % height;
816 else
817 y = height - 1 - y % height;
819 else
820 y = y % height;
823 if (x < src_rect->X || y < src_rect->Y || x >= src_rect->X + src_rect->Width || y >= src_rect->Y + src_rect->Height)
825 ERR("out of range pixel requested\n");
826 return 0xffcd0084;
829 return ((DWORD*)(bits))[(x - src_rect->X) + (y - src_rect->Y) * src_rect->Width];
832 static ARGB resample_bitmap_pixel(GDIPCONST GpRect *src_rect, LPBYTE bits, UINT width,
833 UINT height, GpPointF *point, GDIPCONST GpImageAttributes *attributes,
834 InterpolationMode interpolation)
836 static int fixme;
838 switch (interpolation)
840 default:
841 if (!fixme++)
842 FIXME("Unimplemented interpolation %i\n", interpolation);
843 /* fall-through */
844 case InterpolationModeBilinear:
846 REAL leftxf, topyf;
847 INT leftx, rightx, topy, bottomy;
848 ARGB topleft, topright, bottomleft, bottomright;
849 ARGB top, bottom;
850 float x_offset;
852 leftxf = floorf(point->X);
853 leftx = (INT)leftxf;
854 rightx = (INT)ceilf(point->X);
855 topyf = floorf(point->Y);
856 topy = (INT)topyf;
857 bottomy = (INT)ceilf(point->Y);
859 if (leftx == rightx && topy == bottomy)
860 return sample_bitmap_pixel(src_rect, bits, width, height,
861 leftx, topy, attributes);
863 topleft = sample_bitmap_pixel(src_rect, bits, width, height,
864 leftx, topy, attributes);
865 topright = sample_bitmap_pixel(src_rect, bits, width, height,
866 rightx, topy, attributes);
867 bottomleft = sample_bitmap_pixel(src_rect, bits, width, height,
868 leftx, bottomy, attributes);
869 bottomright = sample_bitmap_pixel(src_rect, bits, width, height,
870 rightx, bottomy, attributes);
872 x_offset = point->X - leftxf;
873 top = blend_colors(topleft, topright, x_offset);
874 bottom = blend_colors(bottomleft, bottomright, x_offset);
876 return blend_colors(top, bottom, point->Y - topyf);
878 case InterpolationModeNearestNeighbor:
879 return sample_bitmap_pixel(src_rect, bits, width, height,
880 roundr(point->X), roundr(point->Y), attributes);
884 static REAL intersect_line_scanline(const GpPointF *p1, const GpPointF *p2, REAL y)
886 return (p1->X - p2->X) * (p2->Y - y) / (p2->Y - p1->Y) + p2->X;
889 static INT brush_can_fill_path(GpBrush *brush)
891 switch (brush->bt)
893 case BrushTypeSolidColor:
894 return 1;
895 case BrushTypeHatchFill:
897 GpHatch *hatch = (GpHatch*)brush;
898 return ((hatch->forecol & 0xff000000) == 0xff000000) &&
899 ((hatch->backcol & 0xff000000) == 0xff000000);
901 case BrushTypeLinearGradient:
902 case BrushTypeTextureFill:
903 /* Gdi32 isn't much help with these, so we should use brush_fill_pixels instead. */
904 default:
905 return 0;
909 static void brush_fill_path(GpGraphics *graphics, GpBrush* brush)
911 switch (brush->bt)
913 case BrushTypeSolidColor:
915 GpSolidFill *fill = (GpSolidFill*)brush;
916 HBITMAP bmp = ARGB2BMP(fill->color);
918 if (bmp)
920 RECT rc;
921 /* partially transparent fill */
923 SelectClipPath(graphics->hdc, RGN_AND);
924 if (GetClipBox(graphics->hdc, &rc) != NULLREGION)
926 HDC hdc = CreateCompatibleDC(NULL);
928 if (!hdc) break;
930 SelectObject(hdc, bmp);
931 gdi_alpha_blend(graphics, rc.left, rc.top, rc.right - rc.left, rc.bottom - rc.top,
932 hdc, 0, 0, 1, 1);
933 DeleteDC(hdc);
936 DeleteObject(bmp);
937 break;
939 /* else fall through */
941 default:
943 HBRUSH gdibrush, old_brush;
945 gdibrush = create_gdi_brush(brush);
946 if (!gdibrush) return;
948 old_brush = SelectObject(graphics->hdc, gdibrush);
949 FillPath(graphics->hdc);
950 SelectObject(graphics->hdc, old_brush);
951 DeleteObject(gdibrush);
952 break;
957 static INT brush_can_fill_pixels(GpBrush *brush)
959 switch (brush->bt)
961 case BrushTypeSolidColor:
962 case BrushTypeHatchFill:
963 case BrushTypeLinearGradient:
964 case BrushTypeTextureFill:
965 case BrushTypePathGradient:
966 return 1;
967 default:
968 return 0;
972 static GpStatus brush_fill_pixels(GpGraphics *graphics, GpBrush *brush,
973 DWORD *argb_pixels, GpRect *fill_area, UINT cdwStride)
975 switch (brush->bt)
977 case BrushTypeSolidColor:
979 int x, y;
980 GpSolidFill *fill = (GpSolidFill*)brush;
981 for (x=0; x<fill_area->Width; x++)
982 for (y=0; y<fill_area->Height; y++)
983 argb_pixels[x + y*cdwStride] = fill->color;
984 return Ok;
986 case BrushTypeHatchFill:
988 int x, y;
989 GpHatch *fill = (GpHatch*)brush;
990 const char *hatch_data;
992 if (get_hatch_data(fill->hatchstyle, &hatch_data) != Ok)
993 return NotImplemented;
995 for (x=0; x<fill_area->Width; x++)
996 for (y=0; y<fill_area->Height; y++)
998 int hx, hy;
1000 /* FIXME: Account for the rendering origin */
1001 hx = (x + fill_area->X) % 8;
1002 hy = (y + fill_area->Y) % 8;
1004 if ((hatch_data[7-hy] & (0x80 >> hx)) != 0)
1005 argb_pixels[x + y*cdwStride] = fill->forecol;
1006 else
1007 argb_pixels[x + y*cdwStride] = fill->backcol;
1010 return Ok;
1012 case BrushTypeLinearGradient:
1014 GpLineGradient *fill = (GpLineGradient*)brush;
1015 GpPointF draw_points[3], line_points[3];
1016 GpStatus stat;
1017 static const GpRectF box_1 = { 0.0, 0.0, 1.0, 1.0 };
1018 GpMatrix *world_to_gradient; /* FIXME: Store this in the brush? */
1019 int x, y;
1021 draw_points[0].X = fill_area->X;
1022 draw_points[0].Y = fill_area->Y;
1023 draw_points[1].X = fill_area->X+1;
1024 draw_points[1].Y = fill_area->Y;
1025 draw_points[2].X = fill_area->X;
1026 draw_points[2].Y = fill_area->Y+1;
1028 /* Transform the points to a co-ordinate space where X is the point's
1029 * position in the gradient, 0.0 being the start point and 1.0 the
1030 * end point. */
1031 stat = GdipTransformPoints(graphics, CoordinateSpaceWorld,
1032 CoordinateSpaceDevice, draw_points, 3);
1034 if (stat == Ok)
1036 line_points[0] = fill->startpoint;
1037 line_points[1] = fill->endpoint;
1038 line_points[2].X = fill->startpoint.X + (fill->startpoint.Y - fill->endpoint.Y);
1039 line_points[2].Y = fill->startpoint.Y + (fill->endpoint.X - fill->startpoint.X);
1041 stat = GdipCreateMatrix3(&box_1, line_points, &world_to_gradient);
1044 if (stat == Ok)
1046 stat = GdipInvertMatrix(world_to_gradient);
1048 if (stat == Ok)
1049 stat = GdipTransformMatrixPoints(world_to_gradient, draw_points, 3);
1051 GdipDeleteMatrix(world_to_gradient);
1054 if (stat == Ok)
1056 REAL x_delta = draw_points[1].X - draw_points[0].X;
1057 REAL y_delta = draw_points[2].X - draw_points[0].X;
1059 for (y=0; y<fill_area->Height; y++)
1061 for (x=0; x<fill_area->Width; x++)
1063 REAL pos = draw_points[0].X + x * x_delta + y * y_delta;
1065 argb_pixels[x + y*cdwStride] = blend_line_gradient(fill, pos);
1070 return stat;
1072 case BrushTypeTextureFill:
1074 GpTexture *fill = (GpTexture*)brush;
1075 GpPointF draw_points[3];
1076 GpStatus stat;
1077 GpMatrix *world_to_texture;
1078 int x, y;
1079 GpBitmap *bitmap;
1080 int src_stride;
1081 GpRect src_area;
1083 if (fill->image->type != ImageTypeBitmap)
1085 FIXME("metafile texture brushes not implemented\n");
1086 return NotImplemented;
1089 bitmap = (GpBitmap*)fill->image;
1090 src_stride = sizeof(ARGB) * bitmap->width;
1092 src_area.X = src_area.Y = 0;
1093 src_area.Width = bitmap->width;
1094 src_area.Height = bitmap->height;
1096 draw_points[0].X = fill_area->X;
1097 draw_points[0].Y = fill_area->Y;
1098 draw_points[1].X = fill_area->X+1;
1099 draw_points[1].Y = fill_area->Y;
1100 draw_points[2].X = fill_area->X;
1101 draw_points[2].Y = fill_area->Y+1;
1103 /* Transform the points to the co-ordinate space of the bitmap. */
1104 stat = GdipTransformPoints(graphics, CoordinateSpaceWorld,
1105 CoordinateSpaceDevice, draw_points, 3);
1107 if (stat == Ok)
1109 stat = GdipCloneMatrix(fill->transform, &world_to_texture);
1112 if (stat == Ok)
1114 stat = GdipInvertMatrix(world_to_texture);
1116 if (stat == Ok)
1117 stat = GdipTransformMatrixPoints(world_to_texture, draw_points, 3);
1119 GdipDeleteMatrix(world_to_texture);
1122 if (stat == Ok && !fill->bitmap_bits)
1124 BitmapData lockeddata;
1126 fill->bitmap_bits = GdipAlloc(sizeof(ARGB) * bitmap->width * bitmap->height);
1127 if (!fill->bitmap_bits)
1128 stat = OutOfMemory;
1130 if (stat == Ok)
1132 lockeddata.Width = bitmap->width;
1133 lockeddata.Height = bitmap->height;
1134 lockeddata.Stride = src_stride;
1135 lockeddata.PixelFormat = PixelFormat32bppARGB;
1136 lockeddata.Scan0 = fill->bitmap_bits;
1138 stat = GdipBitmapLockBits(bitmap, &src_area, ImageLockModeRead|ImageLockModeUserInputBuf,
1139 PixelFormat32bppARGB, &lockeddata);
1142 if (stat == Ok)
1143 stat = GdipBitmapUnlockBits(bitmap, &lockeddata);
1145 if (stat == Ok)
1146 apply_image_attributes(fill->imageattributes, fill->bitmap_bits,
1147 bitmap->width, bitmap->height,
1148 src_stride, ColorAdjustTypeBitmap);
1150 if (stat != Ok)
1152 GdipFree(fill->bitmap_bits);
1153 fill->bitmap_bits = NULL;
1157 if (stat == Ok)
1159 REAL x_dx = draw_points[1].X - draw_points[0].X;
1160 REAL x_dy = draw_points[1].Y - draw_points[0].Y;
1161 REAL y_dx = draw_points[2].X - draw_points[0].X;
1162 REAL y_dy = draw_points[2].Y - draw_points[0].Y;
1164 for (y=0; y<fill_area->Height; y++)
1166 for (x=0; x<fill_area->Width; x++)
1168 GpPointF point;
1169 point.X = draw_points[0].X + x * x_dx + y * y_dx;
1170 point.Y = draw_points[0].Y + y * x_dy + y * y_dy;
1172 argb_pixels[x + y*cdwStride] = resample_bitmap_pixel(
1173 &src_area, fill->bitmap_bits, bitmap->width, bitmap->height,
1174 &point, fill->imageattributes, graphics->interpolation);
1179 return stat;
1181 case BrushTypePathGradient:
1183 GpPathGradient *fill = (GpPathGradient*)brush;
1184 GpPath *flat_path;
1185 GpMatrix *world_to_device;
1186 GpStatus stat;
1187 int i, figure_start=0;
1188 GpPointF start_point, end_point, center_point;
1189 BYTE type;
1190 REAL min_yf, max_yf, line1_xf, line2_xf;
1191 INT min_y, max_y, min_x, max_x;
1192 INT x, y;
1193 ARGB outer_color;
1194 static int transform_fixme_once;
1196 if (fill->focus.X != 0.0 || fill->focus.Y != 0.0)
1198 static int once;
1199 if (!once++)
1200 FIXME("path gradient focus not implemented\n");
1203 if (fill->gamma)
1205 static int once;
1206 if (!once++)
1207 FIXME("path gradient gamma correction not implemented\n");
1210 if (fill->blendcount)
1212 static int once;
1213 if (!once++)
1214 FIXME("path gradient blend not implemented\n");
1217 if (fill->pblendcount)
1219 static int once;
1220 if (!once++)
1221 FIXME("path gradient preset blend not implemented\n");
1224 if (!transform_fixme_once)
1226 BOOL is_identity=TRUE;
1227 GdipIsMatrixIdentity(fill->transform, &is_identity);
1228 if (!is_identity)
1230 FIXME("path gradient transform not implemented\n");
1231 transform_fixme_once = 1;
1235 stat = GdipClonePath(fill->path, &flat_path);
1237 if (stat != Ok)
1238 return stat;
1240 stat = get_graphics_transform(graphics, CoordinateSpaceDevice,
1241 CoordinateSpaceWorld, &world_to_device);
1242 if (stat == Ok)
1244 stat = GdipTransformPath(flat_path, world_to_device);
1246 if (stat == Ok)
1248 center_point = fill->center;
1249 stat = GdipTransformMatrixPoints(world_to_device, &center_point, 1);
1252 if (stat == Ok)
1253 stat = GdipFlattenPath(flat_path, NULL, 0.5);
1255 GdipDeleteMatrix(world_to_device);
1258 if (stat != Ok)
1260 GdipDeletePath(flat_path);
1261 return stat;
1264 for (i=0; i<flat_path->pathdata.Count; i++)
1266 int start_center_line=0, end_center_line=0;
1267 int seen_start=0, seen_end=0, seen_center=0;
1268 REAL center_distance;
1269 ARGB start_color, end_color;
1270 REAL dy, dx;
1272 type = flat_path->pathdata.Types[i];
1274 if ((type&PathPointTypePathTypeMask) == PathPointTypeStart)
1275 figure_start = i;
1277 start_point = flat_path->pathdata.Points[i];
1279 start_color = fill->surroundcolors[min(i, fill->surroundcolorcount-1)];
1281 if ((type&PathPointTypeCloseSubpath) == PathPointTypeCloseSubpath || i+1 >= flat_path->pathdata.Count)
1283 end_point = flat_path->pathdata.Points[figure_start];
1284 end_color = fill->surroundcolors[min(figure_start, fill->surroundcolorcount-1)];
1286 else if ((flat_path->pathdata.Types[i+1] & PathPointTypePathTypeMask) == PathPointTypeLine)
1288 end_point = flat_path->pathdata.Points[i+1];
1289 end_color = fill->surroundcolors[min(i+1, fill->surroundcolorcount-1)];
1291 else
1292 continue;
1294 outer_color = start_color;
1296 min_yf = center_point.Y;
1297 if (min_yf > start_point.Y) min_yf = start_point.Y;
1298 if (min_yf > end_point.Y) min_yf = end_point.Y;
1300 if (min_yf < fill_area->Y)
1301 min_y = fill_area->Y;
1302 else
1303 min_y = (INT)ceil(min_yf);
1305 max_yf = center_point.Y;
1306 if (max_yf < start_point.Y) max_yf = start_point.Y;
1307 if (max_yf < end_point.Y) max_yf = end_point.Y;
1309 if (max_yf > fill_area->Y + fill_area->Height)
1310 max_y = fill_area->Y + fill_area->Height;
1311 else
1312 max_y = (INT)ceil(max_yf);
1314 dy = end_point.Y - start_point.Y;
1315 dx = end_point.X - start_point.X;
1317 /* This is proportional to the distance from start-end line to center point. */
1318 center_distance = dy * (start_point.X - center_point.X) +
1319 dx * (center_point.Y - start_point.Y);
1321 for (y=min_y; y<max_y; y++)
1323 REAL yf = (REAL)y;
1325 if (!seen_start && yf >= start_point.Y)
1327 seen_start = 1;
1328 start_center_line ^= 1;
1330 if (!seen_end && yf >= end_point.Y)
1332 seen_end = 1;
1333 end_center_line ^= 1;
1335 if (!seen_center && yf >= center_point.Y)
1337 seen_center = 1;
1338 start_center_line ^= 1;
1339 end_center_line ^= 1;
1342 if (start_center_line)
1343 line1_xf = intersect_line_scanline(&start_point, &center_point, yf);
1344 else
1345 line1_xf = intersect_line_scanline(&start_point, &end_point, yf);
1347 if (end_center_line)
1348 line2_xf = intersect_line_scanline(&end_point, &center_point, yf);
1349 else
1350 line2_xf = intersect_line_scanline(&start_point, &end_point, yf);
1352 if (line1_xf < line2_xf)
1354 min_x = (INT)ceil(line1_xf);
1355 max_x = (INT)ceil(line2_xf);
1357 else
1359 min_x = (INT)ceil(line2_xf);
1360 max_x = (INT)ceil(line1_xf);
1363 if (min_x < fill_area->X)
1364 min_x = fill_area->X;
1365 if (max_x > fill_area->X + fill_area->Width)
1366 max_x = fill_area->X + fill_area->Width;
1368 for (x=min_x; x<max_x; x++)
1370 REAL xf = (REAL)x;
1371 REAL distance;
1373 if (start_color != end_color)
1375 REAL blend_amount, pdy, pdx;
1376 pdy = yf - center_point.Y;
1377 pdx = xf - center_point.X;
1378 blend_amount = ( (center_point.Y - start_point.Y) * pdx + (start_point.X - center_point.X) * pdy ) / ( dy * pdx - dx * pdy );
1379 outer_color = blend_colors(start_color, end_color, blend_amount);
1382 distance = (end_point.Y - start_point.Y) * (start_point.X - xf) +
1383 (end_point.X - start_point.X) * (yf - start_point.Y);
1385 distance = distance / center_distance;
1387 argb_pixels[(x-fill_area->X) + (y-fill_area->Y)*cdwStride] =
1388 blend_colors(outer_color, fill->centercolor, distance);
1393 GdipDeletePath(flat_path);
1394 return stat;
1396 default:
1397 return NotImplemented;
1401 /* GdipDrawPie/GdipFillPie helper function */
1402 static void draw_pie(GpGraphics *graphics, REAL x, REAL y, REAL width,
1403 REAL height, REAL startAngle, REAL sweepAngle)
1405 GpPointF ptf[4];
1406 POINT pti[4];
1408 ptf[0].X = x;
1409 ptf[0].Y = y;
1410 ptf[1].X = x + width;
1411 ptf[1].Y = y + height;
1413 deg2xy(startAngle+sweepAngle, x + width / 2.0, y + width / 2.0, &ptf[2].X, &ptf[2].Y);
1414 deg2xy(startAngle, x + width / 2.0, y + width / 2.0, &ptf[3].X, &ptf[3].Y);
1416 transform_and_round_points(graphics, pti, ptf, 4);
1418 Pie(graphics->hdc, pti[0].x, pti[0].y, pti[1].x, pti[1].y, pti[2].x,
1419 pti[2].y, pti[3].x, pti[3].y);
1422 /* Draws the linecap the specified color and size on the hdc. The linecap is in
1423 * direction of the line from x1, y1 to x2, y2 and is anchored on x2, y2. Probably
1424 * should not be called on an hdc that has a path you care about. */
1425 static void draw_cap(GpGraphics *graphics, COLORREF color, GpLineCap cap, REAL size,
1426 const GpCustomLineCap *custom, REAL x1, REAL y1, REAL x2, REAL y2)
1428 HGDIOBJ oldbrush = NULL, oldpen = NULL;
1429 GpMatrix *matrix = NULL;
1430 HBRUSH brush = NULL;
1431 HPEN pen = NULL;
1432 PointF ptf[4], *custptf = NULL;
1433 POINT pt[4], *custpt = NULL;
1434 BYTE *tp = NULL;
1435 REAL theta, dsmall, dbig, dx, dy = 0.0;
1436 INT i, count;
1437 LOGBRUSH lb;
1438 BOOL customstroke;
1440 if((x1 == x2) && (y1 == y2))
1441 return;
1443 theta = gdiplus_atan2(y2 - y1, x2 - x1);
1445 customstroke = (cap == LineCapCustom) && custom && (!custom->fill);
1446 if(!customstroke){
1447 brush = CreateSolidBrush(color);
1448 lb.lbStyle = BS_SOLID;
1449 lb.lbColor = color;
1450 lb.lbHatch = 0;
1451 pen = ExtCreatePen(PS_GEOMETRIC | PS_SOLID | PS_ENDCAP_FLAT |
1452 PS_JOIN_MITER, 1, &lb, 0,
1453 NULL);
1454 oldbrush = SelectObject(graphics->hdc, brush);
1455 oldpen = SelectObject(graphics->hdc, pen);
1458 switch(cap){
1459 case LineCapFlat:
1460 break;
1461 case LineCapSquare:
1462 case LineCapSquareAnchor:
1463 case LineCapDiamondAnchor:
1464 size = size * (cap & LineCapNoAnchor ? ANCHOR_WIDTH : 1.0) / 2.0;
1465 if(cap == LineCapDiamondAnchor){
1466 dsmall = cos(theta + M_PI_2) * size;
1467 dbig = sin(theta + M_PI_2) * size;
1469 else{
1470 dsmall = cos(theta + M_PI_4) * size;
1471 dbig = sin(theta + M_PI_4) * size;
1474 ptf[0].X = x2 - dsmall;
1475 ptf[1].X = x2 + dbig;
1477 ptf[0].Y = y2 - dbig;
1478 ptf[3].Y = y2 + dsmall;
1480 ptf[1].Y = y2 - dsmall;
1481 ptf[2].Y = y2 + dbig;
1483 ptf[3].X = x2 - dbig;
1484 ptf[2].X = x2 + dsmall;
1486 transform_and_round_points(graphics, pt, ptf, 4);
1487 Polygon(graphics->hdc, pt, 4);
1489 break;
1490 case LineCapArrowAnchor:
1491 size = size * 4.0 / sqrt(3.0);
1493 dx = cos(M_PI / 6.0 + theta) * size;
1494 dy = sin(M_PI / 6.0 + theta) * size;
1496 ptf[0].X = x2 - dx;
1497 ptf[0].Y = y2 - dy;
1499 dx = cos(- M_PI / 6.0 + theta) * size;
1500 dy = sin(- M_PI / 6.0 + theta) * size;
1502 ptf[1].X = x2 - dx;
1503 ptf[1].Y = y2 - dy;
1505 ptf[2].X = x2;
1506 ptf[2].Y = y2;
1508 transform_and_round_points(graphics, pt, ptf, 3);
1509 Polygon(graphics->hdc, pt, 3);
1511 break;
1512 case LineCapRoundAnchor:
1513 dx = dy = ANCHOR_WIDTH * size / 2.0;
1515 ptf[0].X = x2 - dx;
1516 ptf[0].Y = y2 - dy;
1517 ptf[1].X = x2 + dx;
1518 ptf[1].Y = y2 + dy;
1520 transform_and_round_points(graphics, pt, ptf, 2);
1521 Ellipse(graphics->hdc, pt[0].x, pt[0].y, pt[1].x, pt[1].y);
1523 break;
1524 case LineCapTriangle:
1525 size = size / 2.0;
1526 dx = cos(M_PI_2 + theta) * size;
1527 dy = sin(M_PI_2 + theta) * size;
1529 ptf[0].X = x2 - dx;
1530 ptf[0].Y = y2 - dy;
1531 ptf[1].X = x2 + dx;
1532 ptf[1].Y = y2 + dy;
1534 dx = cos(theta) * size;
1535 dy = sin(theta) * size;
1537 ptf[2].X = x2 + dx;
1538 ptf[2].Y = y2 + dy;
1540 transform_and_round_points(graphics, pt, ptf, 3);
1541 Polygon(graphics->hdc, pt, 3);
1543 break;
1544 case LineCapRound:
1545 dx = dy = size / 2.0;
1547 ptf[0].X = x2 - dx;
1548 ptf[0].Y = y2 - dy;
1549 ptf[1].X = x2 + dx;
1550 ptf[1].Y = y2 + dy;
1552 dx = -cos(M_PI_2 + theta) * size;
1553 dy = -sin(M_PI_2 + theta) * size;
1555 ptf[2].X = x2 - dx;
1556 ptf[2].Y = y2 - dy;
1557 ptf[3].X = x2 + dx;
1558 ptf[3].Y = y2 + dy;
1560 transform_and_round_points(graphics, pt, ptf, 4);
1561 Pie(graphics->hdc, pt[0].x, pt[0].y, pt[1].x, pt[1].y, pt[2].x,
1562 pt[2].y, pt[3].x, pt[3].y);
1564 break;
1565 case LineCapCustom:
1566 if(!custom)
1567 break;
1569 count = custom->pathdata.Count;
1570 custptf = GdipAlloc(count * sizeof(PointF));
1571 custpt = GdipAlloc(count * sizeof(POINT));
1572 tp = GdipAlloc(count);
1574 if(!custptf || !custpt || !tp || (GdipCreateMatrix(&matrix) != Ok))
1575 goto custend;
1577 memcpy(custptf, custom->pathdata.Points, count * sizeof(PointF));
1579 GdipScaleMatrix(matrix, size, size, MatrixOrderAppend);
1580 GdipRotateMatrix(matrix, (180.0 / M_PI) * (theta - M_PI_2),
1581 MatrixOrderAppend);
1582 GdipTranslateMatrix(matrix, x2, y2, MatrixOrderAppend);
1583 GdipTransformMatrixPoints(matrix, custptf, count);
1585 transform_and_round_points(graphics, custpt, custptf, count);
1587 for(i = 0; i < count; i++)
1588 tp[i] = convert_path_point_type(custom->pathdata.Types[i]);
1590 if(custom->fill){
1591 BeginPath(graphics->hdc);
1592 PolyDraw(graphics->hdc, custpt, tp, count);
1593 EndPath(graphics->hdc);
1594 StrokeAndFillPath(graphics->hdc);
1596 else
1597 PolyDraw(graphics->hdc, custpt, tp, count);
1599 custend:
1600 GdipFree(custptf);
1601 GdipFree(custpt);
1602 GdipFree(tp);
1603 GdipDeleteMatrix(matrix);
1604 break;
1605 default:
1606 break;
1609 if(!customstroke){
1610 SelectObject(graphics->hdc, oldbrush);
1611 SelectObject(graphics->hdc, oldpen);
1612 DeleteObject(brush);
1613 DeleteObject(pen);
1617 /* Shortens the line by the given percent by changing x2, y2.
1618 * If percent is > 1.0 then the line will change direction.
1619 * If percent is negative it can lengthen the line. */
1620 static void shorten_line_percent(REAL x1, REAL y1, REAL *x2, REAL *y2, REAL percent)
1622 REAL dist, theta, dx, dy;
1624 if((y1 == *y2) && (x1 == *x2))
1625 return;
1627 dist = sqrt((*x2 - x1) * (*x2 - x1) + (*y2 - y1) * (*y2 - y1)) * -percent;
1628 theta = gdiplus_atan2((*y2 - y1), (*x2 - x1));
1629 dx = cos(theta) * dist;
1630 dy = sin(theta) * dist;
1632 *x2 = *x2 + dx;
1633 *y2 = *y2 + dy;
1636 /* Shortens the line by the given amount by changing x2, y2.
1637 * If the amount is greater than the distance, the line will become length 0.
1638 * If the amount is negative, it can lengthen the line. */
1639 static void shorten_line_amt(REAL x1, REAL y1, REAL *x2, REAL *y2, REAL amt)
1641 REAL dx, dy, percent;
1643 dx = *x2 - x1;
1644 dy = *y2 - y1;
1645 if(dx == 0 && dy == 0)
1646 return;
1648 percent = amt / sqrt(dx * dx + dy * dy);
1649 if(percent >= 1.0){
1650 *x2 = x1;
1651 *y2 = y1;
1652 return;
1655 shorten_line_percent(x1, y1, x2, y2, percent);
1658 /* Draws lines between the given points, and if caps is true then draws an endcap
1659 * at the end of the last line. */
1660 static GpStatus draw_polyline(GpGraphics *graphics, GpPen *pen,
1661 GDIPCONST GpPointF * pt, INT count, BOOL caps)
1663 POINT *pti = NULL;
1664 GpPointF *ptcopy = NULL;
1665 GpStatus status = GenericError;
1667 if(!count)
1668 return Ok;
1670 pti = GdipAlloc(count * sizeof(POINT));
1671 ptcopy = GdipAlloc(count * sizeof(GpPointF));
1673 if(!pti || !ptcopy){
1674 status = OutOfMemory;
1675 goto end;
1678 memcpy(ptcopy, pt, count * sizeof(GpPointF));
1680 if(caps){
1681 if(pen->endcap == LineCapArrowAnchor)
1682 shorten_line_amt(ptcopy[count-2].X, ptcopy[count-2].Y,
1683 &ptcopy[count-1].X, &ptcopy[count-1].Y, pen->width);
1684 else if((pen->endcap == LineCapCustom) && pen->customend)
1685 shorten_line_amt(ptcopy[count-2].X, ptcopy[count-2].Y,
1686 &ptcopy[count-1].X, &ptcopy[count-1].Y,
1687 pen->customend->inset * pen->width);
1689 if(pen->startcap == LineCapArrowAnchor)
1690 shorten_line_amt(ptcopy[1].X, ptcopy[1].Y,
1691 &ptcopy[0].X, &ptcopy[0].Y, pen->width);
1692 else if((pen->startcap == LineCapCustom) && pen->customstart)
1693 shorten_line_amt(ptcopy[1].X, ptcopy[1].Y,
1694 &ptcopy[0].X, &ptcopy[0].Y,
1695 pen->customstart->inset * pen->width);
1697 draw_cap(graphics, get_gdi_brush_color(pen->brush), pen->endcap, pen->width, pen->customend,
1698 pt[count - 2].X, pt[count - 2].Y, pt[count - 1].X, pt[count - 1].Y);
1699 draw_cap(graphics, get_gdi_brush_color(pen->brush), pen->startcap, pen->width, pen->customstart,
1700 pt[1].X, pt[1].Y, pt[0].X, pt[0].Y);
1703 transform_and_round_points(graphics, pti, ptcopy, count);
1705 if(Polyline(graphics->hdc, pti, count))
1706 status = Ok;
1708 end:
1709 GdipFree(pti);
1710 GdipFree(ptcopy);
1712 return status;
1715 /* Conducts a linear search to find the bezier points that will back off
1716 * the endpoint of the curve by a distance of amt. Linear search works
1717 * better than binary in this case because there are multiple solutions,
1718 * and binary searches often find a bad one. I don't think this is what
1719 * Windows does but short of rendering the bezier without GDI's help it's
1720 * the best we can do. If rev then work from the start of the passed points
1721 * instead of the end. */
1722 static void shorten_bezier_amt(GpPointF * pt, REAL amt, BOOL rev)
1724 GpPointF origpt[4];
1725 REAL percent = 0.00, dx, dy, origx, origy, diff = -1.0;
1726 INT i, first = 0, second = 1, third = 2, fourth = 3;
1728 if(rev){
1729 first = 3;
1730 second = 2;
1731 third = 1;
1732 fourth = 0;
1735 origx = pt[fourth].X;
1736 origy = pt[fourth].Y;
1737 memcpy(origpt, pt, sizeof(GpPointF) * 4);
1739 for(i = 0; (i < MAX_ITERS) && (diff < amt); i++){
1740 /* reset bezier points to original values */
1741 memcpy(pt, origpt, sizeof(GpPointF) * 4);
1742 /* Perform magic on bezier points. Order is important here.*/
1743 shorten_line_percent(pt[third].X, pt[third].Y, &pt[fourth].X, &pt[fourth].Y, percent);
1744 shorten_line_percent(pt[second].X, pt[second].Y, &pt[third].X, &pt[third].Y, percent);
1745 shorten_line_percent(pt[third].X, pt[third].Y, &pt[fourth].X, &pt[fourth].Y, percent);
1746 shorten_line_percent(pt[first].X, pt[first].Y, &pt[second].X, &pt[second].Y, percent);
1747 shorten_line_percent(pt[second].X, pt[second].Y, &pt[third].X, &pt[third].Y, percent);
1748 shorten_line_percent(pt[third].X, pt[third].Y, &pt[fourth].X, &pt[fourth].Y, percent);
1750 dx = pt[fourth].X - origx;
1751 dy = pt[fourth].Y - origy;
1753 diff = sqrt(dx * dx + dy * dy);
1754 percent += 0.0005 * amt;
1758 /* Draws bezier curves between given points, and if caps is true then draws an
1759 * endcap at the end of the last line. */
1760 static GpStatus draw_polybezier(GpGraphics *graphics, GpPen *pen,
1761 GDIPCONST GpPointF * pt, INT count, BOOL caps)
1763 POINT *pti;
1764 GpPointF *ptcopy;
1765 GpStatus status = GenericError;
1767 if(!count)
1768 return Ok;
1770 pti = GdipAlloc(count * sizeof(POINT));
1771 ptcopy = GdipAlloc(count * sizeof(GpPointF));
1773 if(!pti || !ptcopy){
1774 status = OutOfMemory;
1775 goto end;
1778 memcpy(ptcopy, pt, count * sizeof(GpPointF));
1780 if(caps){
1781 if(pen->endcap == LineCapArrowAnchor)
1782 shorten_bezier_amt(&ptcopy[count-4], pen->width, FALSE);
1783 else if((pen->endcap == LineCapCustom) && pen->customend)
1784 shorten_bezier_amt(&ptcopy[count-4], pen->width * pen->customend->inset,
1785 FALSE);
1787 if(pen->startcap == LineCapArrowAnchor)
1788 shorten_bezier_amt(ptcopy, pen->width, TRUE);
1789 else if((pen->startcap == LineCapCustom) && pen->customstart)
1790 shorten_bezier_amt(ptcopy, pen->width * pen->customstart->inset, TRUE);
1792 /* the direction of the line cap is parallel to the direction at the
1793 * end of the bezier (which, if it has been shortened, is not the same
1794 * as the direction from pt[count-2] to pt[count-1]) */
1795 draw_cap(graphics, get_gdi_brush_color(pen->brush), pen->endcap, pen->width, pen->customend,
1796 pt[count - 1].X - (ptcopy[count - 1].X - ptcopy[count - 2].X),
1797 pt[count - 1].Y - (ptcopy[count - 1].Y - ptcopy[count - 2].Y),
1798 pt[count - 1].X, pt[count - 1].Y);
1800 draw_cap(graphics, get_gdi_brush_color(pen->brush), pen->startcap, pen->width, pen->customstart,
1801 pt[0].X - (ptcopy[0].X - ptcopy[1].X),
1802 pt[0].Y - (ptcopy[0].Y - ptcopy[1].Y), pt[0].X, pt[0].Y);
1805 transform_and_round_points(graphics, pti, ptcopy, count);
1807 PolyBezier(graphics->hdc, pti, count);
1809 status = Ok;
1811 end:
1812 GdipFree(pti);
1813 GdipFree(ptcopy);
1815 return status;
1818 /* Draws a combination of bezier curves and lines between points. */
1819 static GpStatus draw_poly(GpGraphics *graphics, GpPen *pen, GDIPCONST GpPointF * pt,
1820 GDIPCONST BYTE * types, INT count, BOOL caps)
1822 POINT *pti = GdipAlloc(count * sizeof(POINT));
1823 BYTE *tp = GdipAlloc(count);
1824 GpPointF *ptcopy = GdipAlloc(count * sizeof(GpPointF));
1825 INT i, j;
1826 GpStatus status = GenericError;
1828 if(!count){
1829 status = Ok;
1830 goto end;
1832 if(!pti || !tp || !ptcopy){
1833 status = OutOfMemory;
1834 goto end;
1837 for(i = 1; i < count; i++){
1838 if((types[i] & PathPointTypePathTypeMask) == PathPointTypeBezier){
1839 if((i + 2 >= count) || !(types[i + 1] & PathPointTypeBezier)
1840 || !(types[i + 1] & PathPointTypeBezier)){
1841 ERR("Bad bezier points\n");
1842 goto end;
1844 i += 2;
1848 memcpy(ptcopy, pt, count * sizeof(GpPointF));
1850 /* If we are drawing caps, go through the points and adjust them accordingly,
1851 * and draw the caps. */
1852 if(caps){
1853 switch(types[count - 1] & PathPointTypePathTypeMask){
1854 case PathPointTypeBezier:
1855 if(pen->endcap == LineCapArrowAnchor)
1856 shorten_bezier_amt(&ptcopy[count - 4], pen->width, FALSE);
1857 else if((pen->endcap == LineCapCustom) && pen->customend)
1858 shorten_bezier_amt(&ptcopy[count - 4],
1859 pen->width * pen->customend->inset, FALSE);
1861 draw_cap(graphics, get_gdi_brush_color(pen->brush), pen->endcap, pen->width, pen->customend,
1862 pt[count - 1].X - (ptcopy[count - 1].X - ptcopy[count - 2].X),
1863 pt[count - 1].Y - (ptcopy[count - 1].Y - ptcopy[count - 2].Y),
1864 pt[count - 1].X, pt[count - 1].Y);
1866 break;
1867 case PathPointTypeLine:
1868 if(pen->endcap == LineCapArrowAnchor)
1869 shorten_line_amt(ptcopy[count - 2].X, ptcopy[count - 2].Y,
1870 &ptcopy[count - 1].X, &ptcopy[count - 1].Y,
1871 pen->width);
1872 else if((pen->endcap == LineCapCustom) && pen->customend)
1873 shorten_line_amt(ptcopy[count - 2].X, ptcopy[count - 2].Y,
1874 &ptcopy[count - 1].X, &ptcopy[count - 1].Y,
1875 pen->customend->inset * pen->width);
1877 draw_cap(graphics, get_gdi_brush_color(pen->brush), pen->endcap, pen->width, pen->customend,
1878 pt[count - 2].X, pt[count - 2].Y, pt[count - 1].X,
1879 pt[count - 1].Y);
1881 break;
1882 default:
1883 ERR("Bad path last point\n");
1884 goto end;
1887 /* Find start of points */
1888 for(j = 1; j < count && ((types[j] & PathPointTypePathTypeMask)
1889 == PathPointTypeStart); j++);
1891 switch(types[j] & PathPointTypePathTypeMask){
1892 case PathPointTypeBezier:
1893 if(pen->startcap == LineCapArrowAnchor)
1894 shorten_bezier_amt(&ptcopy[j - 1], pen->width, TRUE);
1895 else if((pen->startcap == LineCapCustom) && pen->customstart)
1896 shorten_bezier_amt(&ptcopy[j - 1],
1897 pen->width * pen->customstart->inset, TRUE);
1899 draw_cap(graphics, get_gdi_brush_color(pen->brush), pen->startcap, pen->width, pen->customstart,
1900 pt[j - 1].X - (ptcopy[j - 1].X - ptcopy[j].X),
1901 pt[j - 1].Y - (ptcopy[j - 1].Y - ptcopy[j].Y),
1902 pt[j - 1].X, pt[j - 1].Y);
1904 break;
1905 case PathPointTypeLine:
1906 if(pen->startcap == LineCapArrowAnchor)
1907 shorten_line_amt(ptcopy[j].X, ptcopy[j].Y,
1908 &ptcopy[j - 1].X, &ptcopy[j - 1].Y,
1909 pen->width);
1910 else if((pen->startcap == LineCapCustom) && pen->customstart)
1911 shorten_line_amt(ptcopy[j].X, ptcopy[j].Y,
1912 &ptcopy[j - 1].X, &ptcopy[j - 1].Y,
1913 pen->customstart->inset * pen->width);
1915 draw_cap(graphics, get_gdi_brush_color(pen->brush), pen->startcap, pen->width, pen->customstart,
1916 pt[j].X, pt[j].Y, pt[j - 1].X,
1917 pt[j - 1].Y);
1919 break;
1920 default:
1921 ERR("Bad path points\n");
1922 goto end;
1926 transform_and_round_points(graphics, pti, ptcopy, count);
1928 for(i = 0; i < count; i++){
1929 tp[i] = convert_path_point_type(types[i]);
1932 PolyDraw(graphics->hdc, pti, tp, count);
1934 status = Ok;
1936 end:
1937 GdipFree(pti);
1938 GdipFree(ptcopy);
1939 GdipFree(tp);
1941 return status;
1944 GpStatus trace_path(GpGraphics *graphics, GpPath *path)
1946 GpStatus result;
1948 BeginPath(graphics->hdc);
1949 result = draw_poly(graphics, NULL, path->pathdata.Points,
1950 path->pathdata.Types, path->pathdata.Count, FALSE);
1951 EndPath(graphics->hdc);
1952 return result;
1955 typedef struct _GraphicsContainerItem {
1956 struct list entry;
1957 GraphicsContainer contid;
1959 SmoothingMode smoothing;
1960 CompositingQuality compqual;
1961 InterpolationMode interpolation;
1962 CompositingMode compmode;
1963 TextRenderingHint texthint;
1964 REAL scale;
1965 GpUnit unit;
1966 PixelOffsetMode pixeloffset;
1967 UINT textcontrast;
1968 GpMatrix* worldtrans;
1969 GpRegion* clip;
1970 INT origin_x, origin_y;
1971 } GraphicsContainerItem;
1973 static GpStatus init_container(GraphicsContainerItem** container,
1974 GDIPCONST GpGraphics* graphics){
1975 GpStatus sts;
1977 *container = GdipAlloc(sizeof(GraphicsContainerItem));
1978 if(!(*container))
1979 return OutOfMemory;
1981 (*container)->contid = graphics->contid + 1;
1983 (*container)->smoothing = graphics->smoothing;
1984 (*container)->compqual = graphics->compqual;
1985 (*container)->interpolation = graphics->interpolation;
1986 (*container)->compmode = graphics->compmode;
1987 (*container)->texthint = graphics->texthint;
1988 (*container)->scale = graphics->scale;
1989 (*container)->unit = graphics->unit;
1990 (*container)->textcontrast = graphics->textcontrast;
1991 (*container)->pixeloffset = graphics->pixeloffset;
1992 (*container)->origin_x = graphics->origin_x;
1993 (*container)->origin_y = graphics->origin_y;
1995 sts = GdipCloneMatrix(graphics->worldtrans, &(*container)->worldtrans);
1996 if(sts != Ok){
1997 GdipFree(*container);
1998 *container = NULL;
1999 return sts;
2002 sts = GdipCloneRegion(graphics->clip, &(*container)->clip);
2003 if(sts != Ok){
2004 GdipDeleteMatrix((*container)->worldtrans);
2005 GdipFree(*container);
2006 *container = NULL;
2007 return sts;
2010 return Ok;
2013 static void delete_container(GraphicsContainerItem* container){
2014 GdipDeleteMatrix(container->worldtrans);
2015 GdipDeleteRegion(container->clip);
2016 GdipFree(container);
2019 static GpStatus restore_container(GpGraphics* graphics,
2020 GDIPCONST GraphicsContainerItem* container){
2021 GpStatus sts;
2022 GpMatrix *newTrans;
2023 GpRegion *newClip;
2025 sts = GdipCloneMatrix(container->worldtrans, &newTrans);
2026 if(sts != Ok)
2027 return sts;
2029 sts = GdipCloneRegion(container->clip, &newClip);
2030 if(sts != Ok){
2031 GdipDeleteMatrix(newTrans);
2032 return sts;
2035 GdipDeleteMatrix(graphics->worldtrans);
2036 graphics->worldtrans = newTrans;
2038 GdipDeleteRegion(graphics->clip);
2039 graphics->clip = newClip;
2041 graphics->contid = container->contid - 1;
2043 graphics->smoothing = container->smoothing;
2044 graphics->compqual = container->compqual;
2045 graphics->interpolation = container->interpolation;
2046 graphics->compmode = container->compmode;
2047 graphics->texthint = container->texthint;
2048 graphics->scale = container->scale;
2049 graphics->unit = container->unit;
2050 graphics->textcontrast = container->textcontrast;
2051 graphics->pixeloffset = container->pixeloffset;
2052 graphics->origin_x = container->origin_x;
2053 graphics->origin_y = container->origin_y;
2055 return Ok;
2058 static GpStatus get_graphics_bounds(GpGraphics* graphics, GpRectF* rect)
2060 RECT wnd_rect;
2061 GpStatus stat=Ok;
2062 GpUnit unit;
2064 if(graphics->hwnd) {
2065 if(!GetClientRect(graphics->hwnd, &wnd_rect))
2066 return GenericError;
2068 rect->X = wnd_rect.left;
2069 rect->Y = wnd_rect.top;
2070 rect->Width = wnd_rect.right - wnd_rect.left;
2071 rect->Height = wnd_rect.bottom - wnd_rect.top;
2072 }else if (graphics->image){
2073 stat = GdipGetImageBounds(graphics->image, rect, &unit);
2074 if (stat == Ok && unit != UnitPixel)
2075 FIXME("need to convert from unit %i\n", unit);
2076 }else{
2077 rect->X = 0;
2078 rect->Y = 0;
2079 rect->Width = GetDeviceCaps(graphics->hdc, HORZRES);
2080 rect->Height = GetDeviceCaps(graphics->hdc, VERTRES);
2083 return stat;
2086 /* on success, rgn will contain the region of the graphics object which
2087 * is visible after clipping has been applied */
2088 static GpStatus get_visible_clip_region(GpGraphics *graphics, GpRegion *rgn)
2090 GpStatus stat;
2091 GpRectF rectf;
2092 GpRegion* tmp;
2094 if((stat = get_graphics_bounds(graphics, &rectf)) != Ok)
2095 return stat;
2097 if((stat = GdipCreateRegion(&tmp)) != Ok)
2098 return stat;
2100 if((stat = GdipCombineRegionRect(tmp, &rectf, CombineModeReplace)) != Ok)
2101 goto end;
2103 if((stat = GdipCombineRegionRegion(tmp, graphics->clip, CombineModeIntersect)) != Ok)
2104 goto end;
2106 stat = GdipCombineRegionRegion(rgn, tmp, CombineModeReplace);
2108 end:
2109 GdipDeleteRegion(tmp);
2110 return stat;
2113 static void get_font_hfont(GpGraphics *graphics, GDIPCONST GpFont *font, HFONT *hfont)
2115 HDC hdc = CreateCompatibleDC(0);
2116 GpPointF pt[3];
2117 REAL angle, rel_width, rel_height, font_height, font_to_pixel_scale;
2118 LOGFONTW lfw;
2119 HFONT unscaled_font;
2120 TEXTMETRICW textmet;
2122 font_to_pixel_scale = units_scale(UnitPoint, UnitPixel, font->family->dpi);
2124 if (font->unit == UnitPixel)
2125 font_height = font->emSize * font_to_pixel_scale;
2126 else
2128 REAL unit_scale, res;
2130 res = (graphics->unit == UnitDisplay || graphics->unit == UnitPixel) ? graphics->xres : graphics->yres;
2131 unit_scale = units_scale(font->unit, graphics->unit, res);
2133 font_height = font->emSize * font_to_pixel_scale * unit_scale;
2134 if (graphics->unit != UnitDisplay)
2135 font_height /= graphics->scale;
2138 pt[0].X = 0.0;
2139 pt[0].Y = 0.0;
2140 pt[1].X = 1.0;
2141 pt[1].Y = 0.0;
2142 pt[2].X = 0.0;
2143 pt[2].Y = 1.0;
2144 if (graphics)
2145 GdipTransformPoints(graphics, CoordinateSpaceDevice, CoordinateSpaceWorld, pt, 3);
2146 angle = -gdiplus_atan2((pt[1].Y - pt[0].Y), (pt[1].X - pt[0].X));
2147 rel_width = sqrt((pt[1].Y-pt[0].Y)*(pt[1].Y-pt[0].Y)+
2148 (pt[1].X-pt[0].X)*(pt[1].X-pt[0].X));
2149 rel_height = sqrt((pt[2].Y-pt[0].Y)*(pt[2].Y-pt[0].Y)+
2150 (pt[2].X-pt[0].X)*(pt[2].X-pt[0].X));
2152 get_log_fontW(font, graphics, &lfw);
2153 lfw.lfHeight = roundr(font_height * rel_height);
2154 unscaled_font = CreateFontIndirectW(&lfw);
2156 SelectObject(hdc, unscaled_font);
2157 GetTextMetricsW(hdc, &textmet);
2159 lfw.lfWidth = roundr(textmet.tmAveCharWidth * rel_width / rel_height);
2160 lfw.lfEscapement = lfw.lfOrientation = roundr((angle / M_PI) * 1800.0);
2162 *hfont = CreateFontIndirectW(&lfw);
2164 DeleteDC(hdc);
2165 DeleteObject(unscaled_font);
2168 GpStatus WINGDIPAPI GdipCreateFromHDC(HDC hdc, GpGraphics **graphics)
2170 TRACE("(%p, %p)\n", hdc, graphics);
2172 return GdipCreateFromHDC2(hdc, NULL, graphics);
2175 GpStatus WINGDIPAPI GdipCreateFromHDC2(HDC hdc, HANDLE hDevice, GpGraphics **graphics)
2177 GpStatus retval;
2179 TRACE("(%p, %p, %p)\n", hdc, hDevice, graphics);
2181 if(hDevice != NULL) {
2182 FIXME("Don't know how to handle parameter hDevice\n");
2183 return NotImplemented;
2186 if(hdc == NULL)
2187 return OutOfMemory;
2189 if(graphics == NULL)
2190 return InvalidParameter;
2192 *graphics = GdipAlloc(sizeof(GpGraphics));
2193 if(!*graphics) return OutOfMemory;
2195 if((retval = GdipCreateMatrix(&(*graphics)->worldtrans)) != Ok){
2196 GdipFree(*graphics);
2197 return retval;
2200 if((retval = GdipCreateRegion(&(*graphics)->clip)) != Ok){
2201 GdipFree((*graphics)->worldtrans);
2202 GdipFree(*graphics);
2203 return retval;
2206 (*graphics)->hdc = hdc;
2207 (*graphics)->hwnd = WindowFromDC(hdc);
2208 (*graphics)->owndc = FALSE;
2209 (*graphics)->smoothing = SmoothingModeDefault;
2210 (*graphics)->compqual = CompositingQualityDefault;
2211 (*graphics)->interpolation = InterpolationModeBilinear;
2212 (*graphics)->pixeloffset = PixelOffsetModeDefault;
2213 (*graphics)->compmode = CompositingModeSourceOver;
2214 (*graphics)->unit = UnitDisplay;
2215 (*graphics)->scale = 1.0;
2216 (*graphics)->xres = GetDeviceCaps(hdc, LOGPIXELSX);
2217 (*graphics)->yres = GetDeviceCaps(hdc, LOGPIXELSY);
2218 (*graphics)->busy = FALSE;
2219 (*graphics)->textcontrast = 4;
2220 list_init(&(*graphics)->containers);
2221 (*graphics)->contid = 0;
2223 TRACE("<-- %p\n", *graphics);
2225 return Ok;
2228 GpStatus graphics_from_image(GpImage *image, GpGraphics **graphics)
2230 GpStatus retval;
2232 *graphics = GdipAlloc(sizeof(GpGraphics));
2233 if(!*graphics) return OutOfMemory;
2235 if((retval = GdipCreateMatrix(&(*graphics)->worldtrans)) != Ok){
2236 GdipFree(*graphics);
2237 return retval;
2240 if((retval = GdipCreateRegion(&(*graphics)->clip)) != Ok){
2241 GdipFree((*graphics)->worldtrans);
2242 GdipFree(*graphics);
2243 return retval;
2246 (*graphics)->hdc = NULL;
2247 (*graphics)->hwnd = NULL;
2248 (*graphics)->owndc = FALSE;
2249 (*graphics)->image = image;
2250 (*graphics)->smoothing = SmoothingModeDefault;
2251 (*graphics)->compqual = CompositingQualityDefault;
2252 (*graphics)->interpolation = InterpolationModeBilinear;
2253 (*graphics)->pixeloffset = PixelOffsetModeDefault;
2254 (*graphics)->compmode = CompositingModeSourceOver;
2255 (*graphics)->unit = UnitDisplay;
2256 (*graphics)->scale = 1.0;
2257 (*graphics)->xres = image->xres;
2258 (*graphics)->yres = image->yres;
2259 (*graphics)->busy = FALSE;
2260 (*graphics)->textcontrast = 4;
2261 list_init(&(*graphics)->containers);
2262 (*graphics)->contid = 0;
2264 TRACE("<-- %p\n", *graphics);
2266 return Ok;
2269 GpStatus WINGDIPAPI GdipCreateFromHWND(HWND hwnd, GpGraphics **graphics)
2271 GpStatus ret;
2272 HDC hdc;
2274 TRACE("(%p, %p)\n", hwnd, graphics);
2276 hdc = GetDC(hwnd);
2278 if((ret = GdipCreateFromHDC(hdc, graphics)) != Ok)
2280 ReleaseDC(hwnd, hdc);
2281 return ret;
2284 (*graphics)->hwnd = hwnd;
2285 (*graphics)->owndc = TRUE;
2287 return Ok;
2290 /* FIXME: no icm handling */
2291 GpStatus WINGDIPAPI GdipCreateFromHWNDICM(HWND hwnd, GpGraphics **graphics)
2293 TRACE("(%p, %p)\n", hwnd, graphics);
2295 return GdipCreateFromHWND(hwnd, graphics);
2298 GpStatus WINGDIPAPI GdipCreateMetafileFromEmf(HENHMETAFILE hemf, BOOL delete,
2299 GpMetafile **metafile)
2301 IStream *stream = NULL;
2302 UINT read;
2303 ENHMETAHEADER *copy;
2304 GpStatus retval = Ok;
2306 TRACE("(%p,%i,%p)\n", hemf, delete, metafile);
2308 if(!hemf || !metafile)
2309 return InvalidParameter;
2311 read = GetEnhMetaFileBits(hemf, 0, NULL);
2312 copy = GdipAlloc(read);
2313 GetEnhMetaFileBits(hemf, read, (BYTE *)copy);
2315 if(CreateStreamOnHGlobal(copy, TRUE, &stream) != S_OK){
2316 ERR("could not make stream\n");
2317 GdipFree(copy);
2318 retval = GenericError;
2319 goto err;
2322 *metafile = GdipAlloc(sizeof(GpMetafile));
2323 if(!*metafile){
2324 retval = OutOfMemory;
2325 goto err;
2328 if(OleLoadPicture(stream, 0, FALSE, &IID_IPicture,
2329 (LPVOID*) &((*metafile)->image.picture)) != S_OK)
2331 retval = GenericError;
2332 goto err;
2336 (*metafile)->image.type = ImageTypeMetafile;
2337 memcpy(&(*metafile)->image.format, &ImageFormatWMF, sizeof(GUID));
2338 (*metafile)->image.palette = NULL;
2339 (*metafile)->image.xres = (REAL)copy->szlDevice.cx;
2340 (*metafile)->image.yres = (REAL)copy->szlDevice.cy;
2341 (*metafile)->bounds.X = (REAL)copy->rclBounds.left;
2342 (*metafile)->bounds.Y = (REAL)copy->rclBounds.top;
2343 (*metafile)->bounds.Width = (REAL)(copy->rclBounds.right - copy->rclBounds.left);
2344 (*metafile)->bounds.Height = (REAL)(copy->rclBounds.bottom - copy->rclBounds.top);
2345 (*metafile)->unit = UnitPixel;
2347 if(delete)
2348 DeleteEnhMetaFile(hemf);
2350 TRACE("<-- %p\n", *metafile);
2352 err:
2353 if (retval != Ok)
2354 GdipFree(*metafile);
2355 IStream_Release(stream);
2356 return retval;
2359 GpStatus WINGDIPAPI GdipCreateMetafileFromWmf(HMETAFILE hwmf, BOOL delete,
2360 GDIPCONST WmfPlaceableFileHeader * placeable, GpMetafile **metafile)
2362 UINT read;
2363 BYTE *copy;
2364 HENHMETAFILE hemf;
2365 GpStatus retval = Ok;
2367 TRACE("(%p, %d, %p, %p)\n", hwmf, delete, placeable, metafile);
2369 if(!hwmf || !metafile || !placeable)
2370 return InvalidParameter;
2372 *metafile = NULL;
2373 read = GetMetaFileBitsEx(hwmf, 0, NULL);
2374 if(!read)
2375 return GenericError;
2376 copy = GdipAlloc(read);
2377 GetMetaFileBitsEx(hwmf, read, copy);
2379 hemf = SetWinMetaFileBits(read, copy, NULL, NULL);
2380 GdipFree(copy);
2382 retval = GdipCreateMetafileFromEmf(hemf, FALSE, metafile);
2384 if (retval == Ok)
2386 (*metafile)->image.xres = (REAL)placeable->Inch;
2387 (*metafile)->image.yres = (REAL)placeable->Inch;
2388 (*metafile)->bounds.X = ((REAL)placeable->BoundingBox.Left) / ((REAL)placeable->Inch);
2389 (*metafile)->bounds.Y = ((REAL)placeable->BoundingBox.Top) / ((REAL)placeable->Inch);
2390 (*metafile)->bounds.Width = (REAL)(placeable->BoundingBox.Right -
2391 placeable->BoundingBox.Left);
2392 (*metafile)->bounds.Height = (REAL)(placeable->BoundingBox.Bottom -
2393 placeable->BoundingBox.Top);
2395 if (delete) DeleteMetaFile(hwmf);
2397 return retval;
2400 GpStatus WINGDIPAPI GdipCreateMetafileFromWmfFile(GDIPCONST WCHAR *file,
2401 GDIPCONST WmfPlaceableFileHeader * placeable, GpMetafile **metafile)
2403 HMETAFILE hmf = GetMetaFileW(file);
2405 TRACE("(%s, %p, %p)\n", debugstr_w(file), placeable, metafile);
2407 if(!hmf) return InvalidParameter;
2409 return GdipCreateMetafileFromWmf(hmf, TRUE, placeable, metafile);
2412 GpStatus WINGDIPAPI GdipCreateMetafileFromFile(GDIPCONST WCHAR *file,
2413 GpMetafile **metafile)
2415 FIXME("(%p, %p): stub\n", file, metafile);
2416 return NotImplemented;
2419 GpStatus WINGDIPAPI GdipCreateMetafileFromStream(IStream *stream,
2420 GpMetafile **metafile)
2422 FIXME("(%p, %p): stub\n", stream, metafile);
2423 return NotImplemented;
2426 GpStatus WINGDIPAPI GdipCreateStreamOnFile(GDIPCONST WCHAR * filename,
2427 UINT access, IStream **stream)
2429 DWORD dwMode;
2430 HRESULT ret;
2432 TRACE("(%s, %u, %p)\n", debugstr_w(filename), access, stream);
2434 if(!stream || !filename)
2435 return InvalidParameter;
2437 if(access & GENERIC_WRITE)
2438 dwMode = STGM_SHARE_DENY_WRITE | STGM_WRITE | STGM_CREATE;
2439 else if(access & GENERIC_READ)
2440 dwMode = STGM_SHARE_DENY_WRITE | STGM_READ | STGM_FAILIFTHERE;
2441 else
2442 return InvalidParameter;
2444 ret = SHCreateStreamOnFileW(filename, dwMode, stream);
2446 return hresult_to_status(ret);
2449 GpStatus WINGDIPAPI GdipDeleteGraphics(GpGraphics *graphics)
2451 GraphicsContainerItem *cont, *next;
2452 GpStatus stat;
2453 TRACE("(%p)\n", graphics);
2455 if(!graphics) return InvalidParameter;
2456 if(graphics->busy) return ObjectBusy;
2458 if (graphics->image && graphics->image->type == ImageTypeMetafile)
2460 stat = METAFILE_GraphicsDeleted((GpMetafile*)graphics->image);
2461 if (stat != Ok)
2462 return stat;
2465 if(graphics->owndc)
2466 ReleaseDC(graphics->hwnd, graphics->hdc);
2468 LIST_FOR_EACH_ENTRY_SAFE(cont, next, &graphics->containers, GraphicsContainerItem, entry){
2469 list_remove(&cont->entry);
2470 delete_container(cont);
2473 GdipDeleteRegion(graphics->clip);
2474 GdipDeleteMatrix(graphics->worldtrans);
2475 GdipFree(graphics);
2477 return Ok;
2480 GpStatus WINGDIPAPI GdipDrawArc(GpGraphics *graphics, GpPen *pen, REAL x,
2481 REAL y, REAL width, REAL height, REAL startAngle, REAL sweepAngle)
2483 INT save_state, num_pts;
2484 GpPointF points[MAX_ARC_PTS];
2485 GpStatus retval;
2487 TRACE("(%p, %p, %.2f, %.2f, %.2f, %.2f, %.2f, %.2f)\n", graphics, pen, x, y,
2488 width, height, startAngle, sweepAngle);
2490 if(!graphics || !pen || width <= 0 || height <= 0)
2491 return InvalidParameter;
2493 if(graphics->busy)
2494 return ObjectBusy;
2496 if (!graphics->hdc)
2498 FIXME("graphics object has no HDC\n");
2499 return Ok;
2502 num_pts = arc2polybezier(points, x, y, width, height, startAngle, sweepAngle);
2504 save_state = prepare_dc(graphics, pen);
2506 retval = draw_polybezier(graphics, pen, points, num_pts, TRUE);
2508 restore_dc(graphics, save_state);
2510 return retval;
2513 GpStatus WINGDIPAPI GdipDrawArcI(GpGraphics *graphics, GpPen *pen, INT x,
2514 INT y, INT width, INT height, REAL startAngle, REAL sweepAngle)
2516 TRACE("(%p, %p, %d, %d, %d, %d, %.2f, %.2f)\n", graphics, pen, x, y,
2517 width, height, startAngle, sweepAngle);
2519 return GdipDrawArc(graphics,pen,(REAL)x,(REAL)y,(REAL)width,(REAL)height,startAngle,sweepAngle);
2522 GpStatus WINGDIPAPI GdipDrawBezier(GpGraphics *graphics, GpPen *pen, REAL x1,
2523 REAL y1, REAL x2, REAL y2, REAL x3, REAL y3, REAL x4, REAL y4)
2525 INT save_state;
2526 GpPointF pt[4];
2527 GpStatus retval;
2529 TRACE("(%p, %p, %.2f, %.2f, %.2f, %.2f, %.2f, %.2f, %.2f, %.2f)\n", graphics, pen, x1, y1,
2530 x2, y2, x3, y3, x4, y4);
2532 if(!graphics || !pen)
2533 return InvalidParameter;
2535 if(graphics->busy)
2536 return ObjectBusy;
2538 if (!graphics->hdc)
2540 FIXME("graphics object has no HDC\n");
2541 return Ok;
2544 pt[0].X = x1;
2545 pt[0].Y = y1;
2546 pt[1].X = x2;
2547 pt[1].Y = y2;
2548 pt[2].X = x3;
2549 pt[2].Y = y3;
2550 pt[3].X = x4;
2551 pt[3].Y = y4;
2553 save_state = prepare_dc(graphics, pen);
2555 retval = draw_polybezier(graphics, pen, pt, 4, TRUE);
2557 restore_dc(graphics, save_state);
2559 return retval;
2562 GpStatus WINGDIPAPI GdipDrawBezierI(GpGraphics *graphics, GpPen *pen, INT x1,
2563 INT y1, INT x2, INT y2, INT x3, INT y3, INT x4, INT y4)
2565 INT save_state;
2566 GpPointF pt[4];
2567 GpStatus retval;
2569 TRACE("(%p, %p, %d, %d, %d, %d, %d, %d, %d, %d)\n", graphics, pen, x1, y1,
2570 x2, y2, x3, y3, x4, y4);
2572 if(!graphics || !pen)
2573 return InvalidParameter;
2575 if(graphics->busy)
2576 return ObjectBusy;
2578 if (!graphics->hdc)
2580 FIXME("graphics object has no HDC\n");
2581 return Ok;
2584 pt[0].X = x1;
2585 pt[0].Y = y1;
2586 pt[1].X = x2;
2587 pt[1].Y = y2;
2588 pt[2].X = x3;
2589 pt[2].Y = y3;
2590 pt[3].X = x4;
2591 pt[3].Y = y4;
2593 save_state = prepare_dc(graphics, pen);
2595 retval = draw_polybezier(graphics, pen, pt, 4, TRUE);
2597 restore_dc(graphics, save_state);
2599 return retval;
2602 GpStatus WINGDIPAPI GdipDrawBeziers(GpGraphics *graphics, GpPen *pen,
2603 GDIPCONST GpPointF *points, INT count)
2605 INT i;
2606 GpStatus ret;
2608 TRACE("(%p, %p, %p, %d)\n", graphics, pen, points, count);
2610 if(!graphics || !pen || !points || (count <= 0))
2611 return InvalidParameter;
2613 if(graphics->busy)
2614 return ObjectBusy;
2616 for(i = 0; i < floor(count / 4); i++){
2617 ret = GdipDrawBezier(graphics, pen,
2618 points[4*i].X, points[4*i].Y,
2619 points[4*i + 1].X, points[4*i + 1].Y,
2620 points[4*i + 2].X, points[4*i + 2].Y,
2621 points[4*i + 3].X, points[4*i + 3].Y);
2622 if(ret != Ok)
2623 return ret;
2626 return Ok;
2629 GpStatus WINGDIPAPI GdipDrawBeziersI(GpGraphics *graphics, GpPen *pen,
2630 GDIPCONST GpPoint *points, INT count)
2632 GpPointF *pts;
2633 GpStatus ret;
2634 INT i;
2636 TRACE("(%p, %p, %p, %d)\n", graphics, pen, points, count);
2638 if(!graphics || !pen || !points || (count <= 0))
2639 return InvalidParameter;
2641 if(graphics->busy)
2642 return ObjectBusy;
2644 pts = GdipAlloc(sizeof(GpPointF) * count);
2645 if(!pts)
2646 return OutOfMemory;
2648 for(i = 0; i < count; i++){
2649 pts[i].X = (REAL)points[i].X;
2650 pts[i].Y = (REAL)points[i].Y;
2653 ret = GdipDrawBeziers(graphics,pen,pts,count);
2655 GdipFree(pts);
2657 return ret;
2660 GpStatus WINGDIPAPI GdipDrawClosedCurve(GpGraphics *graphics, GpPen *pen,
2661 GDIPCONST GpPointF *points, INT count)
2663 TRACE("(%p, %p, %p, %d)\n", graphics, pen, points, count);
2665 return GdipDrawClosedCurve2(graphics, pen, points, count, 1.0);
2668 GpStatus WINGDIPAPI GdipDrawClosedCurveI(GpGraphics *graphics, GpPen *pen,
2669 GDIPCONST GpPoint *points, INT count)
2671 TRACE("(%p, %p, %p, %d)\n", graphics, pen, points, count);
2673 return GdipDrawClosedCurve2I(graphics, pen, points, count, 1.0);
2676 GpStatus WINGDIPAPI GdipDrawClosedCurve2(GpGraphics *graphics, GpPen *pen,
2677 GDIPCONST GpPointF *points, INT count, REAL tension)
2679 GpPath *path;
2680 GpStatus stat;
2682 TRACE("(%p, %p, %p, %d, %.2f)\n", graphics, pen, points, count, tension);
2684 if(!graphics || !pen || !points || count <= 0)
2685 return InvalidParameter;
2687 if(graphics->busy)
2688 return ObjectBusy;
2690 if((stat = GdipCreatePath(FillModeAlternate, &path)) != Ok)
2691 return stat;
2693 stat = GdipAddPathClosedCurve2(path, points, count, tension);
2694 if(stat != Ok){
2695 GdipDeletePath(path);
2696 return stat;
2699 stat = GdipDrawPath(graphics, pen, path);
2701 GdipDeletePath(path);
2703 return stat;
2706 GpStatus WINGDIPAPI GdipDrawClosedCurve2I(GpGraphics *graphics, GpPen *pen,
2707 GDIPCONST GpPoint *points, INT count, REAL tension)
2709 GpPointF *ptf;
2710 GpStatus stat;
2711 INT i;
2713 TRACE("(%p, %p, %p, %d, %.2f)\n", graphics, pen, points, count, tension);
2715 if(!points || count <= 0)
2716 return InvalidParameter;
2718 ptf = GdipAlloc(sizeof(GpPointF)*count);
2719 if(!ptf)
2720 return OutOfMemory;
2722 for(i = 0; i < count; i++){
2723 ptf[i].X = (REAL)points[i].X;
2724 ptf[i].Y = (REAL)points[i].Y;
2727 stat = GdipDrawClosedCurve2(graphics, pen, ptf, count, tension);
2729 GdipFree(ptf);
2731 return stat;
2734 GpStatus WINGDIPAPI GdipDrawCurve(GpGraphics *graphics, GpPen *pen,
2735 GDIPCONST GpPointF *points, INT count)
2737 TRACE("(%p, %p, %p, %d)\n", graphics, pen, points, count);
2739 return GdipDrawCurve2(graphics,pen,points,count,1.0);
2742 GpStatus WINGDIPAPI GdipDrawCurveI(GpGraphics *graphics, GpPen *pen,
2743 GDIPCONST GpPoint *points, INT count)
2745 GpPointF *pointsF;
2746 GpStatus ret;
2747 INT i;
2749 TRACE("(%p, %p, %p, %d)\n", graphics, pen, points, count);
2751 if(!points)
2752 return InvalidParameter;
2754 pointsF = GdipAlloc(sizeof(GpPointF)*count);
2755 if(!pointsF)
2756 return OutOfMemory;
2758 for(i = 0; i < count; i++){
2759 pointsF[i].X = (REAL)points[i].X;
2760 pointsF[i].Y = (REAL)points[i].Y;
2763 ret = GdipDrawCurve(graphics,pen,pointsF,count);
2764 GdipFree(pointsF);
2766 return ret;
2769 /* Approximates cardinal spline with Bezier curves. */
2770 GpStatus WINGDIPAPI GdipDrawCurve2(GpGraphics *graphics, GpPen *pen,
2771 GDIPCONST GpPointF *points, INT count, REAL tension)
2773 /* PolyBezier expects count*3-2 points. */
2774 INT i, len_pt = count*3-2, save_state;
2775 GpPointF *pt;
2776 REAL x1, x2, y1, y2;
2777 GpStatus retval;
2779 TRACE("(%p, %p, %p, %d, %.2f)\n", graphics, pen, points, count, tension);
2781 if(!graphics || !pen)
2782 return InvalidParameter;
2784 if(graphics->busy)
2785 return ObjectBusy;
2787 if(count < 2)
2788 return InvalidParameter;
2790 if (!graphics->hdc)
2792 FIXME("graphics object has no HDC\n");
2793 return Ok;
2796 pt = GdipAlloc(len_pt * sizeof(GpPointF));
2797 if(!pt)
2798 return OutOfMemory;
2800 tension = tension * TENSION_CONST;
2802 calc_curve_bezier_endp(points[0].X, points[0].Y, points[1].X, points[1].Y,
2803 tension, &x1, &y1);
2805 pt[0].X = points[0].X;
2806 pt[0].Y = points[0].Y;
2807 pt[1].X = x1;
2808 pt[1].Y = y1;
2810 for(i = 0; i < count-2; i++){
2811 calc_curve_bezier(&(points[i]), tension, &x1, &y1, &x2, &y2);
2813 pt[3*i+2].X = x1;
2814 pt[3*i+2].Y = y1;
2815 pt[3*i+3].X = points[i+1].X;
2816 pt[3*i+3].Y = points[i+1].Y;
2817 pt[3*i+4].X = x2;
2818 pt[3*i+4].Y = y2;
2821 calc_curve_bezier_endp(points[count-1].X, points[count-1].Y,
2822 points[count-2].X, points[count-2].Y, tension, &x1, &y1);
2824 pt[len_pt-2].X = x1;
2825 pt[len_pt-2].Y = y1;
2826 pt[len_pt-1].X = points[count-1].X;
2827 pt[len_pt-1].Y = points[count-1].Y;
2829 save_state = prepare_dc(graphics, pen);
2831 retval = draw_polybezier(graphics, pen, pt, len_pt, TRUE);
2833 GdipFree(pt);
2834 restore_dc(graphics, save_state);
2836 return retval;
2839 GpStatus WINGDIPAPI GdipDrawCurve2I(GpGraphics *graphics, GpPen *pen,
2840 GDIPCONST GpPoint *points, INT count, REAL tension)
2842 GpPointF *pointsF;
2843 GpStatus ret;
2844 INT i;
2846 TRACE("(%p, %p, %p, %d, %.2f)\n", graphics, pen, points, count, tension);
2848 if(!points)
2849 return InvalidParameter;
2851 pointsF = GdipAlloc(sizeof(GpPointF)*count);
2852 if(!pointsF)
2853 return OutOfMemory;
2855 for(i = 0; i < count; i++){
2856 pointsF[i].X = (REAL)points[i].X;
2857 pointsF[i].Y = (REAL)points[i].Y;
2860 ret = GdipDrawCurve2(graphics,pen,pointsF,count,tension);
2861 GdipFree(pointsF);
2863 return ret;
2866 GpStatus WINGDIPAPI GdipDrawCurve3(GpGraphics *graphics, GpPen *pen,
2867 GDIPCONST GpPointF *points, INT count, INT offset, INT numberOfSegments,
2868 REAL tension)
2870 TRACE("(%p, %p, %p, %d, %d, %d, %.2f)\n", graphics, pen, points, count, offset, numberOfSegments, tension);
2872 if(offset >= count || numberOfSegments > count - offset - 1 || numberOfSegments <= 0){
2873 return InvalidParameter;
2876 return GdipDrawCurve2(graphics, pen, points + offset, numberOfSegments + 1, tension);
2879 GpStatus WINGDIPAPI GdipDrawCurve3I(GpGraphics *graphics, GpPen *pen,
2880 GDIPCONST GpPoint *points, INT count, INT offset, INT numberOfSegments,
2881 REAL tension)
2883 TRACE("(%p, %p, %p, %d, %d, %d, %.2f)\n", graphics, pen, points, count, offset, numberOfSegments, tension);
2885 if(count < 0){
2886 return OutOfMemory;
2889 if(offset >= count || numberOfSegments > count - offset - 1 || numberOfSegments <= 0){
2890 return InvalidParameter;
2893 return GdipDrawCurve2I(graphics, pen, points + offset, numberOfSegments + 1, tension);
2896 GpStatus WINGDIPAPI GdipDrawEllipse(GpGraphics *graphics, GpPen *pen, REAL x,
2897 REAL y, REAL width, REAL height)
2899 INT save_state;
2900 GpPointF ptf[2];
2901 POINT pti[2];
2903 TRACE("(%p, %p, %.2f, %.2f, %.2f, %.2f)\n", graphics, pen, x, y, width, height);
2905 if(!graphics || !pen)
2906 return InvalidParameter;
2908 if(graphics->busy)
2909 return ObjectBusy;
2911 if (!graphics->hdc)
2913 FIXME("graphics object has no HDC\n");
2914 return Ok;
2917 ptf[0].X = x;
2918 ptf[0].Y = y;
2919 ptf[1].X = x + width;
2920 ptf[1].Y = y + height;
2922 save_state = prepare_dc(graphics, pen);
2923 SelectObject(graphics->hdc, GetStockObject(NULL_BRUSH));
2925 transform_and_round_points(graphics, pti, ptf, 2);
2927 Ellipse(graphics->hdc, pti[0].x, pti[0].y, pti[1].x, pti[1].y);
2929 restore_dc(graphics, save_state);
2931 return Ok;
2934 GpStatus WINGDIPAPI GdipDrawEllipseI(GpGraphics *graphics, GpPen *pen, INT x,
2935 INT y, INT width, INT height)
2937 TRACE("(%p, %p, %d, %d, %d, %d)\n", graphics, pen, x, y, width, height);
2939 return GdipDrawEllipse(graphics,pen,(REAL)x,(REAL)y,(REAL)width,(REAL)height);
2943 GpStatus WINGDIPAPI GdipDrawImage(GpGraphics *graphics, GpImage *image, REAL x, REAL y)
2945 UINT width, height;
2947 TRACE("(%p, %p, %.2f, %.2f)\n", graphics, image, x, y);
2949 if(!graphics || !image)
2950 return InvalidParameter;
2952 GdipGetImageWidth(image, &width);
2953 GdipGetImageHeight(image, &height);
2955 return GdipDrawImagePointRect(graphics, image, x, y,
2956 0.0, 0.0, (REAL)width, (REAL)height, UnitPixel);
2959 GpStatus WINGDIPAPI GdipDrawImageI(GpGraphics *graphics, GpImage *image, INT x,
2960 INT y)
2962 TRACE("(%p, %p, %d, %d)\n", graphics, image, x, y);
2964 return GdipDrawImage(graphics, image, (REAL)x, (REAL)y);
2967 GpStatus WINGDIPAPI GdipDrawImagePointRect(GpGraphics *graphics, GpImage *image,
2968 REAL x, REAL y, REAL srcx, REAL srcy, REAL srcwidth, REAL srcheight,
2969 GpUnit srcUnit)
2971 GpPointF points[3];
2972 REAL scale_x, scale_y, width, height;
2974 TRACE("(%p, %p, %f, %f, %f, %f, %f, %f, %d)\n", graphics, image, x, y, srcx, srcy, srcwidth, srcheight, srcUnit);
2976 scale_x = units_scale(srcUnit, graphics->unit, graphics->xres);
2977 scale_x *= graphics->xres / image->xres;
2978 scale_y = units_scale(srcUnit, graphics->unit, graphics->yres);
2979 scale_y *= graphics->yres / image->yres;
2980 width = srcwidth * scale_x;
2981 height = srcheight * scale_y;
2983 points[0].X = points[2].X = x;
2984 points[0].Y = points[1].Y = y;
2985 points[1].X = x + width;
2986 points[2].Y = y + height;
2988 return GdipDrawImagePointsRect(graphics, image, points, 3, srcx, srcy,
2989 srcwidth, srcheight, srcUnit, NULL, NULL, NULL);
2992 GpStatus WINGDIPAPI GdipDrawImagePointRectI(GpGraphics *graphics, GpImage *image,
2993 INT x, INT y, INT srcx, INT srcy, INT srcwidth, INT srcheight,
2994 GpUnit srcUnit)
2996 return GdipDrawImagePointRect(graphics, image, x, y, srcx, srcy, srcwidth, srcheight, srcUnit);
2999 GpStatus WINGDIPAPI GdipDrawImagePoints(GpGraphics *graphics, GpImage *image,
3000 GDIPCONST GpPointF *dstpoints, INT count)
3002 UINT width, height;
3004 TRACE("(%p, %p, %p, %d)\n", graphics, image, dstpoints, count);
3006 if(!image)
3007 return InvalidParameter;
3009 GdipGetImageWidth(image, &width);
3010 GdipGetImageHeight(image, &height);
3012 return GdipDrawImagePointsRect(graphics, image, dstpoints, count, 0, 0,
3013 width, height, UnitPixel, NULL, NULL, NULL);
3016 GpStatus WINGDIPAPI GdipDrawImagePointsI(GpGraphics *graphics, GpImage *image,
3017 GDIPCONST GpPoint *dstpoints, INT count)
3019 GpPointF ptf[3];
3021 TRACE("(%p, %p, %p, %d)\n", graphics, image, dstpoints, count);
3023 if (count != 3 || !dstpoints)
3024 return InvalidParameter;
3026 ptf[0].X = (REAL)dstpoints[0].X;
3027 ptf[0].Y = (REAL)dstpoints[0].Y;
3028 ptf[1].X = (REAL)dstpoints[1].X;
3029 ptf[1].Y = (REAL)dstpoints[1].Y;
3030 ptf[2].X = (REAL)dstpoints[2].X;
3031 ptf[2].Y = (REAL)dstpoints[2].Y;
3033 return GdipDrawImagePoints(graphics, image, ptf, count);
3036 GpStatus WINGDIPAPI GdipDrawImagePointsRect(GpGraphics *graphics, GpImage *image,
3037 GDIPCONST GpPointF *points, INT count, REAL srcx, REAL srcy, REAL srcwidth,
3038 REAL srcheight, GpUnit srcUnit, GDIPCONST GpImageAttributes* imageAttributes,
3039 DrawImageAbort callback, VOID * callbackData)
3041 GpPointF ptf[4];
3042 POINT pti[4];
3043 GpStatus stat;
3045 TRACE("(%p, %p, %p, %d, %f, %f, %f, %f, %d, %p, %p, %p)\n", graphics, image, points,
3046 count, srcx, srcy, srcwidth, srcheight, srcUnit, imageAttributes, callback,
3047 callbackData);
3049 if (count > 3)
3050 return NotImplemented;
3052 if(!graphics || !image || !points || count != 3)
3053 return InvalidParameter;
3055 TRACE("%s %s %s\n", debugstr_pointf(&points[0]), debugstr_pointf(&points[1]),
3056 debugstr_pointf(&points[2]));
3058 memcpy(ptf, points, 3 * sizeof(GpPointF));
3059 ptf[3].X = ptf[2].X + ptf[1].X - ptf[0].X;
3060 ptf[3].Y = ptf[2].Y + ptf[1].Y - ptf[0].Y;
3061 if (!srcwidth || !srcheight || ptf[3].X == ptf[0].X || ptf[3].Y == ptf[0].Y)
3062 return Ok;
3063 transform_and_round_points(graphics, pti, ptf, 4);
3065 TRACE("%s %s %s %s\n", wine_dbgstr_point(&pti[0]), wine_dbgstr_point(&pti[1]),
3066 wine_dbgstr_point(&pti[2]), wine_dbgstr_point(&pti[3]));
3068 srcx = units_to_pixels(srcx, srcUnit, image->xres);
3069 srcy = units_to_pixels(srcy, srcUnit, image->yres);
3070 srcwidth = units_to_pixels(srcwidth, srcUnit, image->xres);
3071 srcheight = units_to_pixels(srcheight, srcUnit, image->yres);
3072 TRACE("src pixels: %f,%f %fx%f\n", srcx, srcy, srcwidth, srcheight);
3074 if (image->picture)
3076 if (!graphics->hdc)
3078 FIXME("graphics object has no HDC\n");
3081 if(IPicture_Render(image->picture, graphics->hdc,
3082 pti[0].x, pti[0].y, pti[1].x - pti[0].x, pti[2].y - pti[0].y,
3083 srcx, srcy, srcwidth, srcheight, NULL) != S_OK)
3085 if(callback)
3086 callback(callbackData);
3087 return GenericError;
3090 else if (image->type == ImageTypeBitmap)
3092 GpBitmap* bitmap = (GpBitmap*)image;
3093 int use_software=0;
3095 if (imageAttributes ||
3096 (graphics->image && graphics->image->type == ImageTypeBitmap) ||
3097 !((GpBitmap*)image)->hbitmap ||
3098 ptf[1].Y != ptf[0].Y || ptf[2].X != ptf[0].X ||
3099 ptf[1].X - ptf[0].X != srcwidth || ptf[2].Y - ptf[0].Y != srcheight ||
3100 srcx < 0 || srcy < 0 ||
3101 srcx + srcwidth > bitmap->width || srcy + srcheight > bitmap->height)
3102 use_software = 1;
3104 if (use_software)
3106 RECT dst_area;
3107 GpRect src_area;
3108 int i, x, y, src_stride, dst_stride;
3109 GpMatrix *dst_to_src;
3110 REAL m11, m12, m21, m22, mdx, mdy;
3111 LPBYTE src_data, dst_data;
3112 BitmapData lockeddata;
3113 InterpolationMode interpolation = graphics->interpolation;
3114 GpPointF dst_to_src_points[3] = {{0.0, 0.0}, {1.0, 0.0}, {0.0, 1.0}};
3115 REAL x_dx, x_dy, y_dx, y_dy;
3116 static const GpImageAttributes defaultImageAttributes = {WrapModeClamp, 0, FALSE};
3118 if (!imageAttributes)
3119 imageAttributes = &defaultImageAttributes;
3121 dst_area.left = dst_area.right = pti[0].x;
3122 dst_area.top = dst_area.bottom = pti[0].y;
3123 for (i=1; i<4; i++)
3125 if (dst_area.left > pti[i].x) dst_area.left = pti[i].x;
3126 if (dst_area.right < pti[i].x) dst_area.right = pti[i].x;
3127 if (dst_area.top > pti[i].y) dst_area.top = pti[i].y;
3128 if (dst_area.bottom < pti[i].y) dst_area.bottom = pti[i].y;
3131 TRACE("dst_area: %s\n", wine_dbgstr_rect(&dst_area));
3133 m11 = (ptf[1].X - ptf[0].X) / srcwidth;
3134 m21 = (ptf[2].X - ptf[0].X) / srcheight;
3135 mdx = ptf[0].X - m11 * srcx - m21 * srcy;
3136 m12 = (ptf[1].Y - ptf[0].Y) / srcwidth;
3137 m22 = (ptf[2].Y - ptf[0].Y) / srcheight;
3138 mdy = ptf[0].Y - m12 * srcx - m22 * srcy;
3140 stat = GdipCreateMatrix2(m11, m12, m21, m22, mdx, mdy, &dst_to_src);
3141 if (stat != Ok) return stat;
3143 stat = GdipInvertMatrix(dst_to_src);
3144 if (stat != Ok)
3146 GdipDeleteMatrix(dst_to_src);
3147 return stat;
3150 dst_data = GdipAlloc(sizeof(ARGB) * (dst_area.right - dst_area.left) * (dst_area.bottom - dst_area.top));
3151 if (!dst_data)
3153 GdipDeleteMatrix(dst_to_src);
3154 return OutOfMemory;
3157 dst_stride = sizeof(ARGB) * (dst_area.right - dst_area.left);
3159 get_bitmap_sample_size(interpolation, imageAttributes->wrap,
3160 bitmap, srcx, srcy, srcwidth, srcheight, &src_area);
3162 TRACE("src_area: %d x %d\n", src_area.Width, src_area.Height);
3164 src_data = GdipAlloc(sizeof(ARGB) * src_area.Width * src_area.Height);
3165 if (!src_data)
3167 GdipFree(dst_data);
3168 GdipDeleteMatrix(dst_to_src);
3169 return OutOfMemory;
3171 src_stride = sizeof(ARGB) * src_area.Width;
3173 /* Read the bits we need from the source bitmap into an ARGB buffer. */
3174 lockeddata.Width = src_area.Width;
3175 lockeddata.Height = src_area.Height;
3176 lockeddata.Stride = src_stride;
3177 lockeddata.PixelFormat = PixelFormat32bppARGB;
3178 lockeddata.Scan0 = src_data;
3180 stat = GdipBitmapLockBits(bitmap, &src_area, ImageLockModeRead|ImageLockModeUserInputBuf,
3181 PixelFormat32bppARGB, &lockeddata);
3183 if (stat == Ok)
3184 stat = GdipBitmapUnlockBits(bitmap, &lockeddata);
3186 if (stat != Ok)
3188 if (src_data != dst_data)
3189 GdipFree(src_data);
3190 GdipFree(dst_data);
3191 GdipDeleteMatrix(dst_to_src);
3192 return OutOfMemory;
3195 apply_image_attributes(imageAttributes, src_data,
3196 src_area.Width, src_area.Height,
3197 src_stride, ColorAdjustTypeBitmap);
3199 /* Transform the bits as needed to the destination. */
3200 GdipTransformMatrixPoints(dst_to_src, dst_to_src_points, 3);
3202 x_dx = dst_to_src_points[1].X - dst_to_src_points[0].X;
3203 x_dy = dst_to_src_points[1].Y - dst_to_src_points[0].Y;
3204 y_dx = dst_to_src_points[2].X - dst_to_src_points[0].X;
3205 y_dy = dst_to_src_points[2].Y - dst_to_src_points[0].Y;
3207 for (x=dst_area.left; x<dst_area.right; x++)
3209 for (y=dst_area.top; y<dst_area.bottom; y++)
3211 GpPointF src_pointf;
3212 ARGB *dst_color;
3214 src_pointf.X = dst_to_src_points[0].X + x * x_dx + y * y_dx;
3215 src_pointf.Y = dst_to_src_points[0].Y + x * x_dy + y * y_dy;
3217 dst_color = (ARGB*)(dst_data + dst_stride * (y - dst_area.top) + sizeof(ARGB) * (x - dst_area.left));
3219 if (src_pointf.X >= srcx && src_pointf.X < srcx + srcwidth && src_pointf.Y >= srcy && src_pointf.Y < srcy+srcheight)
3220 *dst_color = resample_bitmap_pixel(&src_area, src_data, bitmap->width, bitmap->height, &src_pointf, imageAttributes, interpolation);
3221 else
3222 *dst_color = 0;
3226 GdipDeleteMatrix(dst_to_src);
3228 GdipFree(src_data);
3230 stat = alpha_blend_pixels(graphics, dst_area.left, dst_area.top,
3231 dst_data, dst_area.right - dst_area.left, dst_area.bottom - dst_area.top, dst_stride);
3233 GdipFree(dst_data);
3235 return stat;
3237 else
3239 HDC hdc;
3240 int temp_hdc=0, temp_bitmap=0;
3241 HBITMAP hbitmap, old_hbm=NULL;
3243 if (!(bitmap->format == PixelFormat16bppRGB555 ||
3244 bitmap->format == PixelFormat24bppRGB ||
3245 bitmap->format == PixelFormat32bppRGB ||
3246 bitmap->format == PixelFormat32bppPARGB))
3248 BITMAPINFOHEADER bih;
3249 BYTE *temp_bits;
3250 PixelFormat dst_format;
3252 /* we can't draw a bitmap of this format directly */
3253 hdc = CreateCompatibleDC(0);
3254 temp_hdc = 1;
3255 temp_bitmap = 1;
3257 bih.biSize = sizeof(BITMAPINFOHEADER);
3258 bih.biWidth = bitmap->width;
3259 bih.biHeight = -bitmap->height;
3260 bih.biPlanes = 1;
3261 bih.biBitCount = 32;
3262 bih.biCompression = BI_RGB;
3263 bih.biSizeImage = 0;
3264 bih.biXPelsPerMeter = 0;
3265 bih.biYPelsPerMeter = 0;
3266 bih.biClrUsed = 0;
3267 bih.biClrImportant = 0;
3269 hbitmap = CreateDIBSection(hdc, (BITMAPINFO*)&bih, DIB_RGB_COLORS,
3270 (void**)&temp_bits, NULL, 0);
3272 if (bitmap->format & (PixelFormatAlpha|PixelFormatPAlpha))
3273 dst_format = PixelFormat32bppPARGB;
3274 else
3275 dst_format = PixelFormat32bppRGB;
3277 convert_pixels(bitmap->width, bitmap->height,
3278 bitmap->width*4, temp_bits, dst_format,
3279 bitmap->stride, bitmap->bits, bitmap->format,
3280 bitmap->image.palette);
3282 else
3284 hbitmap = bitmap->hbitmap;
3285 hdc = bitmap->hdc;
3286 temp_hdc = (hdc == 0);
3289 if (temp_hdc)
3291 if (!hdc) hdc = CreateCompatibleDC(0);
3292 old_hbm = SelectObject(hdc, hbitmap);
3295 if (bitmap->format & (PixelFormatAlpha|PixelFormatPAlpha))
3297 gdi_alpha_blend(graphics, pti[0].x, pti[0].y, pti[1].x - pti[0].x, pti[2].y - pti[0].y,
3298 hdc, srcx, srcy, srcwidth, srcheight);
3300 else
3302 StretchBlt(graphics->hdc, pti[0].x, pti[0].y, pti[1].x-pti[0].x, pti[2].y-pti[0].y,
3303 hdc, srcx, srcy, srcwidth, srcheight, SRCCOPY);
3306 if (temp_hdc)
3308 SelectObject(hdc, old_hbm);
3309 DeleteDC(hdc);
3312 if (temp_bitmap)
3313 DeleteObject(hbitmap);
3316 else
3318 ERR("GpImage with no IPicture or HBITMAP?!\n");
3319 return NotImplemented;
3322 return Ok;
3325 GpStatus WINGDIPAPI GdipDrawImagePointsRectI(GpGraphics *graphics, GpImage *image,
3326 GDIPCONST GpPoint *points, INT count, INT srcx, INT srcy, INT srcwidth,
3327 INT srcheight, GpUnit srcUnit, GDIPCONST GpImageAttributes* imageAttributes,
3328 DrawImageAbort callback, VOID * callbackData)
3330 GpPointF pointsF[3];
3331 INT i;
3333 TRACE("(%p, %p, %p, %d, %d, %d, %d, %d, %d, %p, %p, %p)\n", graphics, image, points, count,
3334 srcx, srcy, srcwidth, srcheight, srcUnit, imageAttributes, callback,
3335 callbackData);
3337 if(!points || count!=3)
3338 return InvalidParameter;
3340 for(i = 0; i < count; i++){
3341 pointsF[i].X = (REAL)points[i].X;
3342 pointsF[i].Y = (REAL)points[i].Y;
3345 return GdipDrawImagePointsRect(graphics, image, pointsF, count, (REAL)srcx, (REAL)srcy,
3346 (REAL)srcwidth, (REAL)srcheight, srcUnit, imageAttributes,
3347 callback, callbackData);
3350 GpStatus WINGDIPAPI GdipDrawImageRectRect(GpGraphics *graphics, GpImage *image,
3351 REAL dstx, REAL dsty, REAL dstwidth, REAL dstheight, REAL srcx, REAL srcy,
3352 REAL srcwidth, REAL srcheight, GpUnit srcUnit,
3353 GDIPCONST GpImageAttributes* imageattr, DrawImageAbort callback,
3354 VOID * callbackData)
3356 GpPointF points[3];
3358 TRACE("(%p, %p, %.2f, %.2f, %.2f, %.2f, %.2f, %.2f, %.2f, %.2f, %d, %p, %p, %p)\n",
3359 graphics, image, dstx, dsty, dstwidth, dstheight, srcx, srcy,
3360 srcwidth, srcheight, srcUnit, imageattr, callback, callbackData);
3362 points[0].X = dstx;
3363 points[0].Y = dsty;
3364 points[1].X = dstx + dstwidth;
3365 points[1].Y = dsty;
3366 points[2].X = dstx;
3367 points[2].Y = dsty + dstheight;
3369 return GdipDrawImagePointsRect(graphics, image, points, 3, srcx, srcy,
3370 srcwidth, srcheight, srcUnit, imageattr, callback, callbackData);
3373 GpStatus WINGDIPAPI GdipDrawImageRectRectI(GpGraphics *graphics, GpImage *image,
3374 INT dstx, INT dsty, INT dstwidth, INT dstheight, INT srcx, INT srcy,
3375 INT srcwidth, INT srcheight, GpUnit srcUnit,
3376 GDIPCONST GpImageAttributes* imageAttributes, DrawImageAbort callback,
3377 VOID * callbackData)
3379 GpPointF points[3];
3381 TRACE("(%p, %p, %d, %d, %d, %d, %d, %d, %d, %d, %d, %p, %p, %p)\n",
3382 graphics, image, dstx, dsty, dstwidth, dstheight, srcx, srcy,
3383 srcwidth, srcheight, srcUnit, imageAttributes, callback, callbackData);
3385 points[0].X = dstx;
3386 points[0].Y = dsty;
3387 points[1].X = dstx + dstwidth;
3388 points[1].Y = dsty;
3389 points[2].X = dstx;
3390 points[2].Y = dsty + dstheight;
3392 return GdipDrawImagePointsRect(graphics, image, points, 3, srcx, srcy,
3393 srcwidth, srcheight, srcUnit, imageAttributes, callback, callbackData);
3396 GpStatus WINGDIPAPI GdipDrawImageRect(GpGraphics *graphics, GpImage *image,
3397 REAL x, REAL y, REAL width, REAL height)
3399 RectF bounds;
3400 GpUnit unit;
3401 GpStatus ret;
3403 TRACE("(%p, %p, %.2f, %.2f, %.2f, %.2f)\n", graphics, image, x, y, width, height);
3405 if(!graphics || !image)
3406 return InvalidParameter;
3408 ret = GdipGetImageBounds(image, &bounds, &unit);
3409 if(ret != Ok)
3410 return ret;
3412 return GdipDrawImageRectRect(graphics, image, x, y, width, height,
3413 bounds.X, bounds.Y, bounds.Width, bounds.Height,
3414 unit, NULL, NULL, NULL);
3417 GpStatus WINGDIPAPI GdipDrawImageRectI(GpGraphics *graphics, GpImage *image,
3418 INT x, INT y, INT width, INT height)
3420 TRACE("(%p, %p, %d, %d, %d, %d)\n", graphics, image, x, y, width, height);
3422 return GdipDrawImageRect(graphics, image, (REAL)x, (REAL)y, (REAL)width, (REAL)height);
3425 GpStatus WINGDIPAPI GdipDrawLine(GpGraphics *graphics, GpPen *pen, REAL x1,
3426 REAL y1, REAL x2, REAL y2)
3428 INT save_state;
3429 GpPointF pt[2];
3430 GpStatus retval;
3432 TRACE("(%p, %p, %.2f, %.2f, %.2f, %.2f)\n", graphics, pen, x1, y1, x2, y2);
3434 if(!pen || !graphics)
3435 return InvalidParameter;
3437 if(graphics->busy)
3438 return ObjectBusy;
3440 if (!graphics->hdc)
3442 FIXME("graphics object has no HDC\n");
3443 return Ok;
3446 pt[0].X = x1;
3447 pt[0].Y = y1;
3448 pt[1].X = x2;
3449 pt[1].Y = y2;
3451 save_state = prepare_dc(graphics, pen);
3453 retval = draw_polyline(graphics, pen, pt, 2, TRUE);
3455 restore_dc(graphics, save_state);
3457 return retval;
3460 GpStatus WINGDIPAPI GdipDrawLineI(GpGraphics *graphics, GpPen *pen, INT x1,
3461 INT y1, INT x2, INT y2)
3463 INT save_state;
3464 GpPointF pt[2];
3465 GpStatus retval;
3467 TRACE("(%p, %p, %d, %d, %d, %d)\n", graphics, pen, x1, y1, x2, y2);
3469 if(!pen || !graphics)
3470 return InvalidParameter;
3472 if(graphics->busy)
3473 return ObjectBusy;
3475 if (!graphics->hdc)
3477 FIXME("graphics object has no HDC\n");
3478 return Ok;
3481 pt[0].X = (REAL)x1;
3482 pt[0].Y = (REAL)y1;
3483 pt[1].X = (REAL)x2;
3484 pt[1].Y = (REAL)y2;
3486 save_state = prepare_dc(graphics, pen);
3488 retval = draw_polyline(graphics, pen, pt, 2, TRUE);
3490 restore_dc(graphics, save_state);
3492 return retval;
3495 GpStatus WINGDIPAPI GdipDrawLines(GpGraphics *graphics, GpPen *pen, GDIPCONST
3496 GpPointF *points, INT count)
3498 INT save_state;
3499 GpStatus retval;
3501 TRACE("(%p, %p, %p, %d)\n", graphics, pen, points, count);
3503 if(!pen || !graphics || (count < 2))
3504 return InvalidParameter;
3506 if(graphics->busy)
3507 return ObjectBusy;
3509 if (!graphics->hdc)
3511 FIXME("graphics object has no HDC\n");
3512 return Ok;
3515 save_state = prepare_dc(graphics, pen);
3517 retval = draw_polyline(graphics, pen, points, count, TRUE);
3519 restore_dc(graphics, save_state);
3521 return retval;
3524 GpStatus WINGDIPAPI GdipDrawLinesI(GpGraphics *graphics, GpPen *pen, GDIPCONST
3525 GpPoint *points, INT count)
3527 INT save_state;
3528 GpStatus retval;
3529 GpPointF *ptf = NULL;
3530 int i;
3532 TRACE("(%p, %p, %p, %d)\n", graphics, pen, points, count);
3534 if(!pen || !graphics || (count < 2))
3535 return InvalidParameter;
3537 if(graphics->busy)
3538 return ObjectBusy;
3540 if (!graphics->hdc)
3542 FIXME("graphics object has no HDC\n");
3543 return Ok;
3546 ptf = GdipAlloc(count * sizeof(GpPointF));
3547 if(!ptf) return OutOfMemory;
3549 for(i = 0; i < count; i ++){
3550 ptf[i].X = (REAL) points[i].X;
3551 ptf[i].Y = (REAL) points[i].Y;
3554 save_state = prepare_dc(graphics, pen);
3556 retval = draw_polyline(graphics, pen, ptf, count, TRUE);
3558 restore_dc(graphics, save_state);
3560 GdipFree(ptf);
3561 return retval;
3564 GpStatus WINGDIPAPI GdipDrawPath(GpGraphics *graphics, GpPen *pen, GpPath *path)
3566 INT save_state;
3567 GpStatus retval;
3569 TRACE("(%p, %p, %p)\n", graphics, pen, path);
3571 if(!pen || !graphics)
3572 return InvalidParameter;
3574 if(graphics->busy)
3575 return ObjectBusy;
3577 if (!graphics->hdc)
3579 FIXME("graphics object has no HDC\n");
3580 return Ok;
3583 save_state = prepare_dc(graphics, pen);
3585 retval = draw_poly(graphics, pen, path->pathdata.Points,
3586 path->pathdata.Types, path->pathdata.Count, TRUE);
3588 restore_dc(graphics, save_state);
3590 return retval;
3593 GpStatus WINGDIPAPI GdipDrawPie(GpGraphics *graphics, GpPen *pen, REAL x,
3594 REAL y, REAL width, REAL height, REAL startAngle, REAL sweepAngle)
3596 INT save_state;
3598 TRACE("(%p, %p, %.2f, %.2f, %.2f, %.2f, %.2f, %.2f)\n", graphics, pen, x, y,
3599 width, height, startAngle, sweepAngle);
3601 if(!graphics || !pen)
3602 return InvalidParameter;
3604 if(graphics->busy)
3605 return ObjectBusy;
3607 if (!graphics->hdc)
3609 FIXME("graphics object has no HDC\n");
3610 return Ok;
3613 save_state = prepare_dc(graphics, pen);
3614 SelectObject(graphics->hdc, GetStockObject(NULL_BRUSH));
3616 draw_pie(graphics, x, y, width, height, startAngle, sweepAngle);
3618 restore_dc(graphics, save_state);
3620 return Ok;
3623 GpStatus WINGDIPAPI GdipDrawPieI(GpGraphics *graphics, GpPen *pen, INT x,
3624 INT y, INT width, INT height, REAL startAngle, REAL sweepAngle)
3626 TRACE("(%p, %p, %d, %d, %d, %d, %.2f, %.2f)\n", graphics, pen, x, y,
3627 width, height, startAngle, sweepAngle);
3629 return GdipDrawPie(graphics,pen,(REAL)x,(REAL)y,(REAL)width,(REAL)height,startAngle,sweepAngle);
3632 GpStatus WINGDIPAPI GdipDrawRectangle(GpGraphics *graphics, GpPen *pen, REAL x,
3633 REAL y, REAL width, REAL height)
3635 INT save_state;
3636 GpPointF ptf[4];
3637 POINT pti[4];
3639 TRACE("(%p, %p, %.2f, %.2f, %.2f, %.2f)\n", graphics, pen, x, y, width, height);
3641 if(!pen || !graphics)
3642 return InvalidParameter;
3644 if(graphics->busy)
3645 return ObjectBusy;
3647 if (!graphics->hdc)
3649 FIXME("graphics object has no HDC\n");
3650 return Ok;
3653 ptf[0].X = x;
3654 ptf[0].Y = y;
3655 ptf[1].X = x + width;
3656 ptf[1].Y = y;
3657 ptf[2].X = x + width;
3658 ptf[2].Y = y + height;
3659 ptf[3].X = x;
3660 ptf[3].Y = y + height;
3662 save_state = prepare_dc(graphics, pen);
3663 SelectObject(graphics->hdc, GetStockObject(NULL_BRUSH));
3665 transform_and_round_points(graphics, pti, ptf, 4);
3666 Polygon(graphics->hdc, pti, 4);
3668 restore_dc(graphics, save_state);
3670 return Ok;
3673 GpStatus WINGDIPAPI GdipDrawRectangleI(GpGraphics *graphics, GpPen *pen, INT x,
3674 INT y, INT width, INT height)
3676 TRACE("(%p, %p, %d, %d, %d, %d)\n", graphics, pen, x, y, width, height);
3678 return GdipDrawRectangle(graphics,pen,(REAL)x,(REAL)y,(REAL)width,(REAL)height);
3681 GpStatus WINGDIPAPI GdipDrawRectangles(GpGraphics *graphics, GpPen *pen,
3682 GDIPCONST GpRectF* rects, INT count)
3684 GpPointF *ptf;
3685 POINT *pti;
3686 INT save_state, i;
3688 TRACE("(%p, %p, %p, %d)\n", graphics, pen, rects, count);
3690 if(!graphics || !pen || !rects || count < 1)
3691 return InvalidParameter;
3693 if(graphics->busy)
3694 return ObjectBusy;
3696 if (!graphics->hdc)
3698 FIXME("graphics object has no HDC\n");
3699 return Ok;
3702 ptf = GdipAlloc(4 * count * sizeof(GpPointF));
3703 pti = GdipAlloc(4 * count * sizeof(POINT));
3705 if(!ptf || !pti){
3706 GdipFree(ptf);
3707 GdipFree(pti);
3708 return OutOfMemory;
3711 for(i = 0; i < count; i++){
3712 ptf[4 * i + 3].X = ptf[4 * i].X = rects[i].X;
3713 ptf[4 * i + 1].Y = ptf[4 * i].Y = rects[i].Y;
3714 ptf[4 * i + 2].X = ptf[4 * i + 1].X = rects[i].X + rects[i].Width;
3715 ptf[4 * i + 3].Y = ptf[4 * i + 2].Y = rects[i].Y + rects[i].Height;
3718 save_state = prepare_dc(graphics, pen);
3719 SelectObject(graphics->hdc, GetStockObject(NULL_BRUSH));
3721 transform_and_round_points(graphics, pti, ptf, 4 * count);
3723 for(i = 0; i < count; i++)
3724 Polygon(graphics->hdc, &pti[4 * i], 4);
3726 restore_dc(graphics, save_state);
3728 GdipFree(ptf);
3729 GdipFree(pti);
3731 return Ok;
3734 GpStatus WINGDIPAPI GdipDrawRectanglesI(GpGraphics *graphics, GpPen *pen,
3735 GDIPCONST GpRect* rects, INT count)
3737 GpRectF *rectsF;
3738 GpStatus ret;
3739 INT i;
3741 TRACE("(%p, %p, %p, %d)\n", graphics, pen, rects, count);
3743 if(!rects || count<=0)
3744 return InvalidParameter;
3746 rectsF = GdipAlloc(sizeof(GpRectF) * count);
3747 if(!rectsF)
3748 return OutOfMemory;
3750 for(i = 0;i < count;i++){
3751 rectsF[i].X = (REAL)rects[i].X;
3752 rectsF[i].Y = (REAL)rects[i].Y;
3753 rectsF[i].Width = (REAL)rects[i].Width;
3754 rectsF[i].Height = (REAL)rects[i].Height;
3757 ret = GdipDrawRectangles(graphics, pen, rectsF, count);
3758 GdipFree(rectsF);
3760 return ret;
3763 GpStatus WINGDIPAPI GdipFillClosedCurve2(GpGraphics *graphics, GpBrush *brush,
3764 GDIPCONST GpPointF *points, INT count, REAL tension, GpFillMode fill)
3766 GpPath *path;
3767 GpStatus stat;
3769 TRACE("(%p, %p, %p, %d, %.2f, %d)\n", graphics, brush, points,
3770 count, tension, fill);
3772 if(!graphics || !brush || !points)
3773 return InvalidParameter;
3775 if(graphics->busy)
3776 return ObjectBusy;
3778 if(count == 1) /* Do nothing */
3779 return Ok;
3781 stat = GdipCreatePath(fill, &path);
3782 if(stat != Ok)
3783 return stat;
3785 stat = GdipAddPathClosedCurve2(path, points, count, tension);
3786 if(stat != Ok){
3787 GdipDeletePath(path);
3788 return stat;
3791 stat = GdipFillPath(graphics, brush, path);
3792 if(stat != Ok){
3793 GdipDeletePath(path);
3794 return stat;
3797 GdipDeletePath(path);
3799 return Ok;
3802 GpStatus WINGDIPAPI GdipFillClosedCurve2I(GpGraphics *graphics, GpBrush *brush,
3803 GDIPCONST GpPoint *points, INT count, REAL tension, GpFillMode fill)
3805 GpPointF *ptf;
3806 GpStatus stat;
3807 INT i;
3809 TRACE("(%p, %p, %p, %d, %.2f, %d)\n", graphics, brush, points,
3810 count, tension, fill);
3812 if(!points || count == 0)
3813 return InvalidParameter;
3815 if(count == 1) /* Do nothing */
3816 return Ok;
3818 ptf = GdipAlloc(sizeof(GpPointF)*count);
3819 if(!ptf)
3820 return OutOfMemory;
3822 for(i = 0;i < count;i++){
3823 ptf[i].X = (REAL)points[i].X;
3824 ptf[i].Y = (REAL)points[i].Y;
3827 stat = GdipFillClosedCurve2(graphics, brush, ptf, count, tension, fill);
3829 GdipFree(ptf);
3831 return stat;
3834 GpStatus WINGDIPAPI GdipFillClosedCurve(GpGraphics *graphics, GpBrush *brush,
3835 GDIPCONST GpPointF *points, INT count)
3837 TRACE("(%p, %p, %p, %d)\n", graphics, brush, points, count);
3838 return GdipFillClosedCurve2(graphics, brush, points, count,
3839 0.5f, FillModeAlternate);
3842 GpStatus WINGDIPAPI GdipFillClosedCurveI(GpGraphics *graphics, GpBrush *brush,
3843 GDIPCONST GpPoint *points, INT count)
3845 TRACE("(%p, %p, %p, %d)\n", graphics, brush, points, count);
3846 return GdipFillClosedCurve2I(graphics, brush, points, count,
3847 0.5f, FillModeAlternate);
3850 GpStatus WINGDIPAPI GdipFillEllipse(GpGraphics *graphics, GpBrush *brush, REAL x,
3851 REAL y, REAL width, REAL height)
3853 GpStatus stat;
3854 GpPath *path;
3856 TRACE("(%p, %p, %.2f, %.2f, %.2f, %.2f)\n", graphics, brush, x, y, width, height);
3858 if(!graphics || !brush)
3859 return InvalidParameter;
3861 if(graphics->busy)
3862 return ObjectBusy;
3864 stat = GdipCreatePath(FillModeAlternate, &path);
3866 if (stat == Ok)
3868 stat = GdipAddPathEllipse(path, x, y, width, height);
3870 if (stat == Ok)
3871 stat = GdipFillPath(graphics, brush, path);
3873 GdipDeletePath(path);
3876 return stat;
3879 GpStatus WINGDIPAPI GdipFillEllipseI(GpGraphics *graphics, GpBrush *brush, INT x,
3880 INT y, INT width, INT height)
3882 TRACE("(%p, %p, %d, %d, %d, %d)\n", graphics, brush, x, y, width, height);
3884 return GdipFillEllipse(graphics,brush,(REAL)x,(REAL)y,(REAL)width,(REAL)height);
3887 static GpStatus GDI32_GdipFillPath(GpGraphics *graphics, GpBrush *brush, GpPath *path)
3889 INT save_state;
3890 GpStatus retval;
3892 if(!graphics->hdc || !brush_can_fill_path(brush))
3893 return NotImplemented;
3895 save_state = SaveDC(graphics->hdc);
3896 EndPath(graphics->hdc);
3897 SetPolyFillMode(graphics->hdc, (path->fill == FillModeAlternate ? ALTERNATE
3898 : WINDING));
3900 BeginPath(graphics->hdc);
3901 retval = draw_poly(graphics, NULL, path->pathdata.Points,
3902 path->pathdata.Types, path->pathdata.Count, FALSE);
3904 if(retval != Ok)
3905 goto end;
3907 EndPath(graphics->hdc);
3908 brush_fill_path(graphics, brush);
3910 retval = Ok;
3912 end:
3913 RestoreDC(graphics->hdc, save_state);
3915 return retval;
3918 static GpStatus SOFTWARE_GdipFillPath(GpGraphics *graphics, GpBrush *brush, GpPath *path)
3920 GpStatus stat;
3921 GpRegion *rgn;
3923 if (!brush_can_fill_pixels(brush))
3924 return NotImplemented;
3926 /* FIXME: This could probably be done more efficiently without regions. */
3928 stat = GdipCreateRegionPath(path, &rgn);
3930 if (stat == Ok)
3932 stat = GdipFillRegion(graphics, brush, rgn);
3934 GdipDeleteRegion(rgn);
3937 return stat;
3940 GpStatus WINGDIPAPI GdipFillPath(GpGraphics *graphics, GpBrush *brush, GpPath *path)
3942 GpStatus stat = NotImplemented;
3944 TRACE("(%p, %p, %p)\n", graphics, brush, path);
3946 if(!brush || !graphics || !path)
3947 return InvalidParameter;
3949 if(graphics->busy)
3950 return ObjectBusy;
3952 if (!graphics->image)
3953 stat = GDI32_GdipFillPath(graphics, brush, path);
3955 if (stat == NotImplemented)
3956 stat = SOFTWARE_GdipFillPath(graphics, brush, path);
3958 if (stat == NotImplemented)
3960 FIXME("Not implemented for brushtype %i\n", brush->bt);
3961 stat = Ok;
3964 return stat;
3967 GpStatus WINGDIPAPI GdipFillPie(GpGraphics *graphics, GpBrush *brush, REAL x,
3968 REAL y, REAL width, REAL height, REAL startAngle, REAL sweepAngle)
3970 GpStatus stat;
3971 GpPath *path;
3973 TRACE("(%p, %p, %.2f, %.2f, %.2f, %.2f, %.2f, %.2f)\n",
3974 graphics, brush, x, y, width, height, startAngle, sweepAngle);
3976 if(!graphics || !brush)
3977 return InvalidParameter;
3979 if(graphics->busy)
3980 return ObjectBusy;
3982 stat = GdipCreatePath(FillModeAlternate, &path);
3984 if (stat == Ok)
3986 stat = GdipAddPathPie(path, x, y, width, height, startAngle, sweepAngle);
3988 if (stat == Ok)
3989 stat = GdipFillPath(graphics, brush, path);
3991 GdipDeletePath(path);
3994 return stat;
3997 GpStatus WINGDIPAPI GdipFillPieI(GpGraphics *graphics, GpBrush *brush, INT x,
3998 INT y, INT width, INT height, REAL startAngle, REAL sweepAngle)
4000 TRACE("(%p, %p, %d, %d, %d, %d, %.2f, %.2f)\n",
4001 graphics, brush, x, y, width, height, startAngle, sweepAngle);
4003 return GdipFillPie(graphics,brush,(REAL)x,(REAL)y,(REAL)width,(REAL)height,startAngle,sweepAngle);
4006 GpStatus WINGDIPAPI GdipFillPolygon(GpGraphics *graphics, GpBrush *brush,
4007 GDIPCONST GpPointF *points, INT count, GpFillMode fillMode)
4009 GpStatus stat;
4010 GpPath *path;
4012 TRACE("(%p, %p, %p, %d, %d)\n", graphics, brush, points, count, fillMode);
4014 if(!graphics || !brush || !points || !count)
4015 return InvalidParameter;
4017 if(graphics->busy)
4018 return ObjectBusy;
4020 stat = GdipCreatePath(fillMode, &path);
4022 if (stat == Ok)
4024 stat = GdipAddPathPolygon(path, points, count);
4026 if (stat == Ok)
4027 stat = GdipFillPath(graphics, brush, path);
4029 GdipDeletePath(path);
4032 return stat;
4035 GpStatus WINGDIPAPI GdipFillPolygonI(GpGraphics *graphics, GpBrush *brush,
4036 GDIPCONST GpPoint *points, INT count, GpFillMode fillMode)
4038 GpStatus stat;
4039 GpPath *path;
4041 TRACE("(%p, %p, %p, %d, %d)\n", graphics, brush, points, count, fillMode);
4043 if(!graphics || !brush || !points || !count)
4044 return InvalidParameter;
4046 if(graphics->busy)
4047 return ObjectBusy;
4049 stat = GdipCreatePath(fillMode, &path);
4051 if (stat == Ok)
4053 stat = GdipAddPathPolygonI(path, points, count);
4055 if (stat == Ok)
4056 stat = GdipFillPath(graphics, brush, path);
4058 GdipDeletePath(path);
4061 return stat;
4064 GpStatus WINGDIPAPI GdipFillPolygon2(GpGraphics *graphics, GpBrush *brush,
4065 GDIPCONST GpPointF *points, INT count)
4067 TRACE("(%p, %p, %p, %d)\n", graphics, brush, points, count);
4069 return GdipFillPolygon(graphics, brush, points, count, FillModeAlternate);
4072 GpStatus WINGDIPAPI GdipFillPolygon2I(GpGraphics *graphics, GpBrush *brush,
4073 GDIPCONST GpPoint *points, INT count)
4075 TRACE("(%p, %p, %p, %d)\n", graphics, brush, points, count);
4077 return GdipFillPolygonI(graphics, brush, points, count, FillModeAlternate);
4080 GpStatus WINGDIPAPI GdipFillRectangle(GpGraphics *graphics, GpBrush *brush,
4081 REAL x, REAL y, REAL width, REAL height)
4083 GpStatus stat;
4084 GpPath *path;
4086 TRACE("(%p, %p, %.2f, %.2f, %.2f, %.2f)\n", graphics, brush, x, y, width, height);
4088 if(!graphics || !brush)
4089 return InvalidParameter;
4091 if(graphics->busy)
4092 return ObjectBusy;
4094 stat = GdipCreatePath(FillModeAlternate, &path);
4096 if (stat == Ok)
4098 stat = GdipAddPathRectangle(path, x, y, width, height);
4100 if (stat == Ok)
4101 stat = GdipFillPath(graphics, brush, path);
4103 GdipDeletePath(path);
4106 return stat;
4109 GpStatus WINGDIPAPI GdipFillRectangleI(GpGraphics *graphics, GpBrush *brush,
4110 INT x, INT y, INT width, INT height)
4112 TRACE("(%p, %p, %d, %d, %d, %d)\n", graphics, brush, x, y, width, height);
4114 return GdipFillRectangle(graphics, brush, x, y, width, height);
4117 GpStatus WINGDIPAPI GdipFillRectangles(GpGraphics *graphics, GpBrush *brush, GDIPCONST GpRectF *rects,
4118 INT count)
4120 GpStatus ret;
4121 INT i;
4123 TRACE("(%p, %p, %p, %d)\n", graphics, brush, rects, count);
4125 if(!rects)
4126 return InvalidParameter;
4128 for(i = 0; i < count; i++){
4129 ret = GdipFillRectangle(graphics, brush, rects[i].X, rects[i].Y, rects[i].Width, rects[i].Height);
4130 if(ret != Ok) return ret;
4133 return Ok;
4136 GpStatus WINGDIPAPI GdipFillRectanglesI(GpGraphics *graphics, GpBrush *brush, GDIPCONST GpRect *rects,
4137 INT count)
4139 GpRectF *rectsF;
4140 GpStatus ret;
4141 INT i;
4143 TRACE("(%p, %p, %p, %d)\n", graphics, brush, rects, count);
4145 if(!rects || count <= 0)
4146 return InvalidParameter;
4148 rectsF = GdipAlloc(sizeof(GpRectF)*count);
4149 if(!rectsF)
4150 return OutOfMemory;
4152 for(i = 0; i < count; i++){
4153 rectsF[i].X = (REAL)rects[i].X;
4154 rectsF[i].Y = (REAL)rects[i].Y;
4155 rectsF[i].X = (REAL)rects[i].Width;
4156 rectsF[i].Height = (REAL)rects[i].Height;
4159 ret = GdipFillRectangles(graphics,brush,rectsF,count);
4160 GdipFree(rectsF);
4162 return ret;
4165 static GpStatus GDI32_GdipFillRegion(GpGraphics* graphics, GpBrush* brush,
4166 GpRegion* region)
4168 INT save_state;
4169 GpStatus status;
4170 HRGN hrgn;
4171 RECT rc;
4173 if(!graphics->hdc || !brush_can_fill_path(brush))
4174 return NotImplemented;
4176 status = GdipGetRegionHRgn(region, graphics, &hrgn);
4177 if(status != Ok)
4178 return status;
4180 save_state = SaveDC(graphics->hdc);
4181 EndPath(graphics->hdc);
4183 ExtSelectClipRgn(graphics->hdc, hrgn, RGN_AND);
4185 if (GetClipBox(graphics->hdc, &rc) != NULLREGION)
4187 BeginPath(graphics->hdc);
4188 Rectangle(graphics->hdc, rc.left, rc.top, rc.right, rc.bottom);
4189 EndPath(graphics->hdc);
4191 brush_fill_path(graphics, brush);
4194 RestoreDC(graphics->hdc, save_state);
4196 DeleteObject(hrgn);
4198 return Ok;
4201 static GpStatus SOFTWARE_GdipFillRegion(GpGraphics *graphics, GpBrush *brush,
4202 GpRegion* region)
4204 GpStatus stat;
4205 GpRegion *temp_region;
4206 GpMatrix *world_to_device;
4207 GpRectF graphics_bounds;
4208 DWORD *pixel_data;
4209 HRGN hregion;
4210 RECT bound_rect;
4211 GpRect gp_bound_rect;
4213 if (!brush_can_fill_pixels(brush))
4214 return NotImplemented;
4216 stat = get_graphics_bounds(graphics, &graphics_bounds);
4218 if (stat == Ok)
4219 stat = GdipCloneRegion(region, &temp_region);
4221 if (stat == Ok)
4223 stat = get_graphics_transform(graphics, CoordinateSpaceDevice,
4224 CoordinateSpaceWorld, &world_to_device);
4226 if (stat == Ok)
4228 stat = GdipTransformRegion(temp_region, world_to_device);
4230 GdipDeleteMatrix(world_to_device);
4233 if (stat == Ok)
4234 stat = GdipCombineRegionRect(temp_region, &graphics_bounds, CombineModeIntersect);
4236 if (stat == Ok)
4237 stat = GdipGetRegionHRgn(temp_region, NULL, &hregion);
4239 GdipDeleteRegion(temp_region);
4242 if (stat == Ok && GetRgnBox(hregion, &bound_rect) == NULLREGION)
4244 DeleteObject(hregion);
4245 return Ok;
4248 if (stat == Ok)
4250 gp_bound_rect.X = bound_rect.left;
4251 gp_bound_rect.Y = bound_rect.top;
4252 gp_bound_rect.Width = bound_rect.right - bound_rect.left;
4253 gp_bound_rect.Height = bound_rect.bottom - bound_rect.top;
4255 pixel_data = GdipAlloc(sizeof(*pixel_data) * gp_bound_rect.Width * gp_bound_rect.Height);
4256 if (!pixel_data)
4257 stat = OutOfMemory;
4259 if (stat == Ok)
4261 stat = brush_fill_pixels(graphics, brush, pixel_data,
4262 &gp_bound_rect, gp_bound_rect.Width);
4264 if (stat == Ok)
4265 stat = alpha_blend_pixels_hrgn(graphics, gp_bound_rect.X,
4266 gp_bound_rect.Y, (BYTE*)pixel_data, gp_bound_rect.Width,
4267 gp_bound_rect.Height, gp_bound_rect.Width * 4, hregion);
4269 GdipFree(pixel_data);
4272 DeleteObject(hregion);
4275 return stat;
4278 /*****************************************************************************
4279 * GdipFillRegion [GDIPLUS.@]
4281 GpStatus WINGDIPAPI GdipFillRegion(GpGraphics* graphics, GpBrush* brush,
4282 GpRegion* region)
4284 GpStatus stat = NotImplemented;
4286 TRACE("(%p, %p, %p)\n", graphics, brush, region);
4288 if (!(graphics && brush && region))
4289 return InvalidParameter;
4291 if(graphics->busy)
4292 return ObjectBusy;
4294 if (!graphics->image)
4295 stat = GDI32_GdipFillRegion(graphics, brush, region);
4297 if (stat == NotImplemented)
4298 stat = SOFTWARE_GdipFillRegion(graphics, brush, region);
4300 if (stat == NotImplemented)
4302 FIXME("not implemented for brushtype %i\n", brush->bt);
4303 stat = Ok;
4306 return stat;
4309 GpStatus WINGDIPAPI GdipFlush(GpGraphics *graphics, GpFlushIntention intention)
4311 TRACE("(%p,%u)\n", graphics, intention);
4313 if(!graphics)
4314 return InvalidParameter;
4316 if(graphics->busy)
4317 return ObjectBusy;
4319 /* We have no internal operation queue, so there's no need to clear it. */
4321 if (graphics->hdc)
4322 GdiFlush();
4324 return Ok;
4327 /*****************************************************************************
4328 * GdipGetClipBounds [GDIPLUS.@]
4330 GpStatus WINGDIPAPI GdipGetClipBounds(GpGraphics *graphics, GpRectF *rect)
4332 TRACE("(%p, %p)\n", graphics, rect);
4334 if(!graphics)
4335 return InvalidParameter;
4337 if(graphics->busy)
4338 return ObjectBusy;
4340 return GdipGetRegionBounds(graphics->clip, graphics, rect);
4343 /*****************************************************************************
4344 * GdipGetClipBoundsI [GDIPLUS.@]
4346 GpStatus WINGDIPAPI GdipGetClipBoundsI(GpGraphics *graphics, GpRect *rect)
4348 TRACE("(%p, %p)\n", graphics, rect);
4350 if(!graphics)
4351 return InvalidParameter;
4353 if(graphics->busy)
4354 return ObjectBusy;
4356 return GdipGetRegionBoundsI(graphics->clip, graphics, rect);
4359 /* FIXME: Compositing mode is not used anywhere except the getter/setter. */
4360 GpStatus WINGDIPAPI GdipGetCompositingMode(GpGraphics *graphics,
4361 CompositingMode *mode)
4363 TRACE("(%p, %p)\n", graphics, mode);
4365 if(!graphics || !mode)
4366 return InvalidParameter;
4368 if(graphics->busy)
4369 return ObjectBusy;
4371 *mode = graphics->compmode;
4373 return Ok;
4376 /* FIXME: Compositing quality is not used anywhere except the getter/setter. */
4377 GpStatus WINGDIPAPI GdipGetCompositingQuality(GpGraphics *graphics,
4378 CompositingQuality *quality)
4380 TRACE("(%p, %p)\n", graphics, quality);
4382 if(!graphics || !quality)
4383 return InvalidParameter;
4385 if(graphics->busy)
4386 return ObjectBusy;
4388 *quality = graphics->compqual;
4390 return Ok;
4393 /* FIXME: Interpolation mode is not used anywhere except the getter/setter. */
4394 GpStatus WINGDIPAPI GdipGetInterpolationMode(GpGraphics *graphics,
4395 InterpolationMode *mode)
4397 TRACE("(%p, %p)\n", graphics, mode);
4399 if(!graphics || !mode)
4400 return InvalidParameter;
4402 if(graphics->busy)
4403 return ObjectBusy;
4405 *mode = graphics->interpolation;
4407 return Ok;
4410 /* FIXME: Need to handle color depths less than 24bpp */
4411 GpStatus WINGDIPAPI GdipGetNearestColor(GpGraphics *graphics, ARGB* argb)
4413 FIXME("(%p, %p): Passing color unmodified\n", graphics, argb);
4415 if(!graphics || !argb)
4416 return InvalidParameter;
4418 if(graphics->busy)
4419 return ObjectBusy;
4421 return Ok;
4424 GpStatus WINGDIPAPI GdipGetPageScale(GpGraphics *graphics, REAL *scale)
4426 TRACE("(%p, %p)\n", graphics, scale);
4428 if(!graphics || !scale)
4429 return InvalidParameter;
4431 if(graphics->busy)
4432 return ObjectBusy;
4434 *scale = graphics->scale;
4436 return Ok;
4439 GpStatus WINGDIPAPI GdipGetPageUnit(GpGraphics *graphics, GpUnit *unit)
4441 TRACE("(%p, %p)\n", graphics, unit);
4443 if(!graphics || !unit)
4444 return InvalidParameter;
4446 if(graphics->busy)
4447 return ObjectBusy;
4449 *unit = graphics->unit;
4451 return Ok;
4454 /* FIXME: Pixel offset mode is not used anywhere except the getter/setter. */
4455 GpStatus WINGDIPAPI GdipGetPixelOffsetMode(GpGraphics *graphics, PixelOffsetMode
4456 *mode)
4458 TRACE("(%p, %p)\n", graphics, mode);
4460 if(!graphics || !mode)
4461 return InvalidParameter;
4463 if(graphics->busy)
4464 return ObjectBusy;
4466 *mode = graphics->pixeloffset;
4468 return Ok;
4471 /* FIXME: Smoothing mode is not used anywhere except the getter/setter. */
4472 GpStatus WINGDIPAPI GdipGetSmoothingMode(GpGraphics *graphics, SmoothingMode *mode)
4474 TRACE("(%p, %p)\n", graphics, mode);
4476 if(!graphics || !mode)
4477 return InvalidParameter;
4479 if(graphics->busy)
4480 return ObjectBusy;
4482 *mode = graphics->smoothing;
4484 return Ok;
4487 GpStatus WINGDIPAPI GdipGetTextContrast(GpGraphics *graphics, UINT *contrast)
4489 TRACE("(%p, %p)\n", graphics, contrast);
4491 if(!graphics || !contrast)
4492 return InvalidParameter;
4494 *contrast = graphics->textcontrast;
4496 return Ok;
4499 /* FIXME: Text rendering hint is not used anywhere except the getter/setter. */
4500 GpStatus WINGDIPAPI GdipGetTextRenderingHint(GpGraphics *graphics,
4501 TextRenderingHint *hint)
4503 TRACE("(%p, %p)\n", graphics, hint);
4505 if(!graphics || !hint)
4506 return InvalidParameter;
4508 if(graphics->busy)
4509 return ObjectBusy;
4511 *hint = graphics->texthint;
4513 return Ok;
4516 GpStatus WINGDIPAPI GdipGetVisibleClipBounds(GpGraphics *graphics, GpRectF *rect)
4518 GpRegion *clip_rgn;
4519 GpStatus stat;
4521 TRACE("(%p, %p)\n", graphics, rect);
4523 if(!graphics || !rect)
4524 return InvalidParameter;
4526 if(graphics->busy)
4527 return ObjectBusy;
4529 /* intersect window and graphics clipping regions */
4530 if((stat = GdipCreateRegion(&clip_rgn)) != Ok)
4531 return stat;
4533 if((stat = get_visible_clip_region(graphics, clip_rgn)) != Ok)
4534 goto cleanup;
4536 /* get bounds of the region */
4537 stat = GdipGetRegionBounds(clip_rgn, graphics, rect);
4539 cleanup:
4540 GdipDeleteRegion(clip_rgn);
4542 return stat;
4545 GpStatus WINGDIPAPI GdipGetVisibleClipBoundsI(GpGraphics *graphics, GpRect *rect)
4547 GpRectF rectf;
4548 GpStatus stat;
4550 TRACE("(%p, %p)\n", graphics, rect);
4552 if(!graphics || !rect)
4553 return InvalidParameter;
4555 if((stat = GdipGetVisibleClipBounds(graphics, &rectf)) == Ok)
4557 rect->X = roundr(rectf.X);
4558 rect->Y = roundr(rectf.Y);
4559 rect->Width = roundr(rectf.Width);
4560 rect->Height = roundr(rectf.Height);
4563 return stat;
4566 GpStatus WINGDIPAPI GdipGetWorldTransform(GpGraphics *graphics, GpMatrix *matrix)
4568 TRACE("(%p, %p)\n", graphics, matrix);
4570 if(!graphics || !matrix)
4571 return InvalidParameter;
4573 if(graphics->busy)
4574 return ObjectBusy;
4576 *matrix = *graphics->worldtrans;
4577 return Ok;
4580 GpStatus WINGDIPAPI GdipGraphicsClear(GpGraphics *graphics, ARGB color)
4582 GpSolidFill *brush;
4583 GpStatus stat;
4584 GpRectF wnd_rect;
4586 TRACE("(%p, %x)\n", graphics, color);
4588 if(!graphics)
4589 return InvalidParameter;
4591 if(graphics->busy)
4592 return ObjectBusy;
4594 if((stat = GdipCreateSolidFill(color, &brush)) != Ok)
4595 return stat;
4597 if((stat = get_graphics_bounds(graphics, &wnd_rect)) != Ok){
4598 GdipDeleteBrush((GpBrush*)brush);
4599 return stat;
4602 GdipFillRectangle(graphics, (GpBrush*)brush, wnd_rect.X, wnd_rect.Y,
4603 wnd_rect.Width, wnd_rect.Height);
4605 GdipDeleteBrush((GpBrush*)brush);
4607 return Ok;
4610 GpStatus WINGDIPAPI GdipIsClipEmpty(GpGraphics *graphics, BOOL *res)
4612 TRACE("(%p, %p)\n", graphics, res);
4614 if(!graphics || !res)
4615 return InvalidParameter;
4617 return GdipIsEmptyRegion(graphics->clip, graphics, res);
4620 GpStatus WINGDIPAPI GdipIsVisiblePoint(GpGraphics *graphics, REAL x, REAL y, BOOL *result)
4622 GpStatus stat;
4623 GpRegion* rgn;
4624 GpPointF pt;
4626 TRACE("(%p, %.2f, %.2f, %p)\n", graphics, x, y, result);
4628 if(!graphics || !result)
4629 return InvalidParameter;
4631 if(graphics->busy)
4632 return ObjectBusy;
4634 pt.X = x;
4635 pt.Y = y;
4636 if((stat = GdipTransformPoints(graphics, CoordinateSpaceDevice,
4637 CoordinateSpaceWorld, &pt, 1)) != Ok)
4638 return stat;
4640 if((stat = GdipCreateRegion(&rgn)) != Ok)
4641 return stat;
4643 if((stat = get_visible_clip_region(graphics, rgn)) != Ok)
4644 goto cleanup;
4646 stat = GdipIsVisibleRegionPoint(rgn, pt.X, pt.Y, graphics, result);
4648 cleanup:
4649 GdipDeleteRegion(rgn);
4650 return stat;
4653 GpStatus WINGDIPAPI GdipIsVisiblePointI(GpGraphics *graphics, INT x, INT y, BOOL *result)
4655 return GdipIsVisiblePoint(graphics, (REAL)x, (REAL)y, result);
4658 GpStatus WINGDIPAPI GdipIsVisibleRect(GpGraphics *graphics, REAL x, REAL y, REAL width, REAL height, BOOL *result)
4660 GpStatus stat;
4661 GpRegion* rgn;
4662 GpPointF pts[2];
4664 TRACE("(%p %.2f %.2f %.2f %.2f %p)\n", graphics, x, y, width, height, result);
4666 if(!graphics || !result)
4667 return InvalidParameter;
4669 if(graphics->busy)
4670 return ObjectBusy;
4672 pts[0].X = x;
4673 pts[0].Y = y;
4674 pts[1].X = x + width;
4675 pts[1].Y = y + height;
4677 if((stat = GdipTransformPoints(graphics, CoordinateSpaceDevice,
4678 CoordinateSpaceWorld, pts, 2)) != Ok)
4679 return stat;
4681 pts[1].X -= pts[0].X;
4682 pts[1].Y -= pts[0].Y;
4684 if((stat = GdipCreateRegion(&rgn)) != Ok)
4685 return stat;
4687 if((stat = get_visible_clip_region(graphics, rgn)) != Ok)
4688 goto cleanup;
4690 stat = GdipIsVisibleRegionRect(rgn, pts[0].X, pts[0].Y, pts[1].X, pts[1].Y, graphics, result);
4692 cleanup:
4693 GdipDeleteRegion(rgn);
4694 return stat;
4697 GpStatus WINGDIPAPI GdipIsVisibleRectI(GpGraphics *graphics, INT x, INT y, INT width, INT height, BOOL *result)
4699 return GdipIsVisibleRect(graphics, (REAL)x, (REAL)y, (REAL)width, (REAL)height, result);
4702 GpStatus gdip_format_string(HDC hdc,
4703 GDIPCONST WCHAR *string, INT length, GDIPCONST GpFont *font,
4704 GDIPCONST RectF *rect, GDIPCONST GpStringFormat *format,
4705 gdip_format_string_callback callback, void *user_data)
4707 WCHAR* stringdup;
4708 int sum = 0, height = 0, fit, fitcpy, i, j, lret, nwidth,
4709 nheight, lineend, lineno = 0;
4710 RectF bounds;
4711 StringAlignment halign;
4712 GpStatus stat = Ok;
4713 SIZE size;
4714 HotkeyPrefix hkprefix;
4715 INT *hotkeyprefix_offsets=NULL;
4716 INT hotkeyprefix_count=0;
4717 INT hotkeyprefix_pos=0, hotkeyprefix_end_pos=0;
4718 int seen_prefix=0;
4720 if(length == -1) length = lstrlenW(string);
4722 stringdup = GdipAlloc((length + 1) * sizeof(WCHAR));
4723 if(!stringdup) return OutOfMemory;
4725 nwidth = roundr(rect->Width);
4726 nheight = roundr(rect->Height);
4728 if (rect->Width >= INT_MAX || rect->Width < 0.5) nwidth = INT_MAX;
4729 if (rect->Height >= INT_MAX || rect->Height < 0.5) nheight = INT_MAX;
4731 if (format)
4732 hkprefix = format->hkprefix;
4733 else
4734 hkprefix = HotkeyPrefixNone;
4736 if (hkprefix == HotkeyPrefixShow)
4738 for (i=0; i<length; i++)
4740 if (string[i] == '&')
4741 hotkeyprefix_count++;
4745 if (hotkeyprefix_count)
4746 hotkeyprefix_offsets = GdipAlloc(sizeof(INT) * hotkeyprefix_count);
4748 hotkeyprefix_count = 0;
4750 for(i = 0, j = 0; i < length; i++){
4751 /* FIXME: This makes the indexes passed to callback inaccurate. */
4752 if(!isprintW(string[i]) && (string[i] != '\n'))
4753 continue;
4755 if (seen_prefix && hkprefix == HotkeyPrefixShow && string[i] != '&')
4756 hotkeyprefix_offsets[hotkeyprefix_count++] = j;
4757 else if (!seen_prefix && hkprefix != HotkeyPrefixNone && string[i] == '&')
4759 seen_prefix = 1;
4760 continue;
4763 seen_prefix = 0;
4765 stringdup[j] = string[i];
4766 j++;
4769 length = j;
4771 if (format) halign = format->align;
4772 else halign = StringAlignmentNear;
4774 while(sum < length){
4775 GetTextExtentExPointW(hdc, stringdup + sum, length - sum,
4776 nwidth, &fit, NULL, &size);
4777 fitcpy = fit;
4779 if(fit == 0)
4780 break;
4782 for(lret = 0; lret < fit; lret++)
4783 if(*(stringdup + sum + lret) == '\n')
4784 break;
4786 /* Line break code (may look strange, but it imitates windows). */
4787 if(lret < fit)
4788 lineend = fit = lret; /* this is not an off-by-one error */
4789 else if(fit < (length - sum)){
4790 if(*(stringdup + sum + fit) == ' ')
4791 while(*(stringdup + sum + fit) == ' ')
4792 fit++;
4793 else
4794 while(*(stringdup + sum + fit - 1) != ' '){
4795 fit--;
4797 if(*(stringdup + sum + fit) == '\t')
4798 break;
4800 if(fit == 0){
4801 fit = fitcpy;
4802 break;
4805 lineend = fit;
4806 while(*(stringdup + sum + lineend - 1) == ' ' ||
4807 *(stringdup + sum + lineend - 1) == '\t')
4808 lineend--;
4810 else
4811 lineend = fit;
4813 GetTextExtentExPointW(hdc, stringdup + sum, lineend,
4814 nwidth, &j, NULL, &size);
4816 bounds.Width = size.cx;
4818 if(height + size.cy > nheight)
4819 bounds.Height = nheight - (height + size.cy);
4820 else
4821 bounds.Height = size.cy;
4823 bounds.Y = rect->Y + height;
4825 switch (halign)
4827 case StringAlignmentNear:
4828 default:
4829 bounds.X = rect->X;
4830 break;
4831 case StringAlignmentCenter:
4832 bounds.X = rect->X + (rect->Width/2) - (bounds.Width/2);
4833 break;
4834 case StringAlignmentFar:
4835 bounds.X = rect->X + rect->Width - bounds.Width;
4836 break;
4839 for (hotkeyprefix_end_pos=hotkeyprefix_pos; hotkeyprefix_end_pos<hotkeyprefix_count; hotkeyprefix_end_pos++)
4840 if (hotkeyprefix_offsets[hotkeyprefix_end_pos] >= sum + lineend)
4841 break;
4843 stat = callback(hdc, stringdup, sum, lineend,
4844 font, rect, format, lineno, &bounds,
4845 &hotkeyprefix_offsets[hotkeyprefix_pos],
4846 hotkeyprefix_end_pos-hotkeyprefix_pos, user_data);
4848 if (stat != Ok)
4849 break;
4851 sum += fit + (lret < fitcpy ? 1 : 0);
4852 height += size.cy;
4853 lineno++;
4855 hotkeyprefix_pos = hotkeyprefix_end_pos;
4857 if(height > nheight)
4858 break;
4860 /* Stop if this was a linewrap (but not if it was a linebreak). */
4861 if((lret == fitcpy) && format && (format->attr & StringFormatFlagsNoWrap))
4862 break;
4865 GdipFree(stringdup);
4866 GdipFree(hotkeyprefix_offsets);
4868 return stat;
4871 struct measure_ranges_args {
4872 GpRegion **regions;
4875 static GpStatus measure_ranges_callback(HDC hdc,
4876 GDIPCONST WCHAR *string, INT index, INT length, GDIPCONST GpFont *font,
4877 GDIPCONST RectF *rect, GDIPCONST GpStringFormat *format,
4878 INT lineno, const RectF *bounds, INT *underlined_indexes,
4879 INT underlined_index_count, void *user_data)
4881 int i;
4882 GpStatus stat = Ok;
4883 struct measure_ranges_args *args = user_data;
4885 for (i=0; i<format->range_count; i++)
4887 INT range_start = max(index, format->character_ranges[i].First);
4888 INT range_end = min(index+length, format->character_ranges[i].First+format->character_ranges[i].Length);
4889 if (range_start < range_end)
4891 GpRectF range_rect;
4892 SIZE range_size;
4894 range_rect.Y = bounds->Y;
4895 range_rect.Height = bounds->Height;
4897 GetTextExtentExPointW(hdc, string + index, range_start - index,
4898 INT_MAX, NULL, NULL, &range_size);
4899 range_rect.X = bounds->X + range_size.cx;
4901 GetTextExtentExPointW(hdc, string + index, range_end - index,
4902 INT_MAX, NULL, NULL, &range_size);
4903 range_rect.Width = (bounds->X + range_size.cx) - range_rect.X;
4905 stat = GdipCombineRegionRect(args->regions[i], &range_rect, CombineModeUnion);
4906 if (stat != Ok)
4907 break;
4911 return stat;
4914 GpStatus WINGDIPAPI GdipMeasureCharacterRanges(GpGraphics* graphics,
4915 GDIPCONST WCHAR* string, INT length, GDIPCONST GpFont* font,
4916 GDIPCONST RectF* layoutRect, GDIPCONST GpStringFormat *stringFormat,
4917 INT regionCount, GpRegion** regions)
4919 GpStatus stat;
4920 int i;
4921 LOGFONTW lfw;
4922 HFONT oldfont;
4923 struct measure_ranges_args args;
4924 HDC hdc, temp_hdc=NULL;
4926 TRACE("(%p %s %d %p %s %p %d %p)\n", graphics, debugstr_w(string),
4927 length, font, debugstr_rectf(layoutRect), stringFormat, regionCount, regions);
4929 if (!(graphics && string && font && layoutRect && stringFormat && regions))
4930 return InvalidParameter;
4932 if (regionCount < stringFormat->range_count)
4933 return InvalidParameter;
4935 get_log_fontW(font, graphics, &lfw);
4937 if(!graphics->hdc)
4939 hdc = temp_hdc = CreateCompatibleDC(0);
4940 if (!temp_hdc) return OutOfMemory;
4942 else
4943 hdc = graphics->hdc;
4945 if (stringFormat->attr)
4946 TRACE("may be ignoring some format flags: attr %x\n", stringFormat->attr);
4948 oldfont = SelectObject(hdc, CreateFontIndirectW(&lfw));
4950 for (i=0; i<stringFormat->range_count; i++)
4952 stat = GdipSetEmpty(regions[i]);
4953 if (stat != Ok)
4954 return stat;
4957 args.regions = regions;
4959 stat = gdip_format_string(hdc, string, length, font, layoutRect, stringFormat,
4960 measure_ranges_callback, &args);
4962 DeleteObject(SelectObject(hdc, oldfont));
4964 if (temp_hdc)
4965 DeleteDC(temp_hdc);
4967 return stat;
4970 struct measure_string_args {
4971 RectF *bounds;
4972 INT *codepointsfitted;
4973 INT *linesfilled;
4974 REAL rel_width, rel_height;
4977 static GpStatus measure_string_callback(HDC hdc,
4978 GDIPCONST WCHAR *string, INT index, INT length, GDIPCONST GpFont *font,
4979 GDIPCONST RectF *rect, GDIPCONST GpStringFormat *format,
4980 INT lineno, const RectF *bounds, INT *underlined_indexes,
4981 INT underlined_index_count, void *user_data)
4983 struct measure_string_args *args = user_data;
4984 REAL new_width, new_height;
4986 new_width = bounds->Width / args->rel_width;
4987 new_height = (bounds->Height + bounds->Y) / args->rel_height - args->bounds->Y;
4989 if (new_width > args->bounds->Width)
4990 args->bounds->Width = new_width;
4992 if (new_height > args->bounds->Height)
4993 args->bounds->Height = new_height;
4995 if (args->codepointsfitted)
4996 *args->codepointsfitted = index + length;
4998 if (args->linesfilled)
4999 (*args->linesfilled)++;
5001 return Ok;
5004 /* Find the smallest rectangle that bounds the text when it is printed in rect
5005 * according to the format options listed in format. If rect has 0 width and
5006 * height, then just find the smallest rectangle that bounds the text when it's
5007 * printed at location (rect->X, rect-Y). */
5008 GpStatus WINGDIPAPI GdipMeasureString(GpGraphics *graphics,
5009 GDIPCONST WCHAR *string, INT length, GDIPCONST GpFont *font,
5010 GDIPCONST RectF *rect, GDIPCONST GpStringFormat *format, RectF *bounds,
5011 INT *codepointsfitted, INT *linesfilled)
5013 HFONT oldfont, gdifont;
5014 struct measure_string_args args;
5015 HDC temp_hdc=NULL, hdc;
5016 GpPointF pt[3];
5017 RectF scaled_rect;
5019 TRACE("(%p, %s, %i, %p, %s, %p, %p, %p, %p)\n", graphics,
5020 debugstr_wn(string, length), length, font, debugstr_rectf(rect), format,
5021 bounds, codepointsfitted, linesfilled);
5023 if(!graphics || !string || !font || !rect || !bounds)
5024 return InvalidParameter;
5026 if(!graphics->hdc)
5028 hdc = temp_hdc = CreateCompatibleDC(0);
5029 if (!temp_hdc) return OutOfMemory;
5031 else
5032 hdc = graphics->hdc;
5034 if(linesfilled) *linesfilled = 0;
5035 if(codepointsfitted) *codepointsfitted = 0;
5037 if(format)
5038 TRACE("may be ignoring some format flags: attr %x\n", format->attr);
5040 pt[0].X = 0.0;
5041 pt[0].Y = 0.0;
5042 pt[1].X = 1.0;
5043 pt[1].Y = 0.0;
5044 pt[2].X = 0.0;
5045 pt[2].Y = 1.0;
5046 GdipTransformPoints(graphics, CoordinateSpaceDevice, CoordinateSpaceWorld, pt, 3);
5047 args.rel_width = sqrt((pt[1].Y-pt[0].Y)*(pt[1].Y-pt[0].Y)+
5048 (pt[1].X-pt[0].X)*(pt[1].X-pt[0].X));
5049 args.rel_height = sqrt((pt[2].Y-pt[0].Y)*(pt[2].Y-pt[0].Y)+
5050 (pt[2].X-pt[0].X)*(pt[2].X-pt[0].X));
5052 get_font_hfont(graphics, font, &gdifont);
5053 oldfont = SelectObject(hdc, gdifont);
5055 scaled_rect.X = rect->X * args.rel_width;
5056 scaled_rect.Y = rect->Y * args.rel_height;
5057 scaled_rect.Width = rect->Width * args.rel_width;
5058 scaled_rect.Height = rect->Height * args.rel_height;
5060 bounds->X = rect->X;
5061 bounds->Y = rect->Y;
5062 bounds->Width = 0.0;
5063 bounds->Height = 0.0;
5065 args.bounds = bounds;
5066 args.codepointsfitted = codepointsfitted;
5067 args.linesfilled = linesfilled;
5069 gdip_format_string(hdc, string, length, font, &scaled_rect, format,
5070 measure_string_callback, &args);
5072 SelectObject(hdc, oldfont);
5073 DeleteObject(gdifont);
5075 if (temp_hdc)
5076 DeleteDC(temp_hdc);
5078 return Ok;
5081 struct draw_string_args {
5082 GpGraphics *graphics;
5083 GDIPCONST GpBrush *brush;
5084 REAL x, y, rel_width, rel_height, ascent;
5087 static GpStatus draw_string_callback(HDC hdc,
5088 GDIPCONST WCHAR *string, INT index, INT length, GDIPCONST GpFont *font,
5089 GDIPCONST RectF *rect, GDIPCONST GpStringFormat *format,
5090 INT lineno, const RectF *bounds, INT *underlined_indexes,
5091 INT underlined_index_count, void *user_data)
5093 struct draw_string_args *args = user_data;
5094 PointF position;
5095 GpStatus stat;
5097 position.X = args->x + bounds->X / args->rel_width;
5098 position.Y = args->y + bounds->Y / args->rel_height + args->ascent;
5100 stat = GdipDrawDriverString(args->graphics, &string[index], length, font,
5101 args->brush, &position,
5102 DriverStringOptionsCmapLookup|DriverStringOptionsRealizedAdvance, NULL);
5104 if (stat == Ok && underlined_index_count)
5106 OUTLINETEXTMETRICW otm;
5107 REAL underline_y, underline_height;
5108 int i;
5110 GetOutlineTextMetricsW(hdc, sizeof(otm), &otm);
5112 underline_height = otm.otmsUnderscoreSize / args->rel_height;
5113 underline_y = position.Y - otm.otmsUnderscorePosition / args->rel_height - underline_height / 2;
5115 for (i=0; i<underlined_index_count; i++)
5117 REAL start_x, end_x;
5118 SIZE text_size;
5119 INT ofs = underlined_indexes[i] - index;
5121 GetTextExtentExPointW(hdc, string + index, ofs, INT_MAX, NULL, NULL, &text_size);
5122 start_x = text_size.cx / args->rel_width;
5124 GetTextExtentExPointW(hdc, string + index, ofs+1, INT_MAX, NULL, NULL, &text_size);
5125 end_x = text_size.cx / args->rel_width;
5127 GdipFillRectangle(args->graphics, (GpBrush*)args->brush, position.X+start_x, underline_y, end_x-start_x, underline_height);
5131 return stat;
5134 GpStatus WINGDIPAPI GdipDrawString(GpGraphics *graphics, GDIPCONST WCHAR *string,
5135 INT length, GDIPCONST GpFont *font, GDIPCONST RectF *rect,
5136 GDIPCONST GpStringFormat *format, GDIPCONST GpBrush *brush)
5138 HRGN rgn = NULL;
5139 HFONT gdifont;
5140 GpPointF pt[3], rectcpy[4];
5141 POINT corners[4];
5142 REAL rel_width, rel_height;
5143 INT save_state;
5144 REAL offsety = 0.0;
5145 struct draw_string_args args;
5146 RectF scaled_rect;
5147 HDC hdc, temp_hdc=NULL;
5148 TEXTMETRICW textmetric;
5150 TRACE("(%p, %s, %i, %p, %s, %p, %p)\n", graphics, debugstr_wn(string, length),
5151 length, font, debugstr_rectf(rect), format, brush);
5153 if(!graphics || !string || !font || !brush || !rect)
5154 return InvalidParameter;
5156 if(graphics->hdc)
5158 hdc = graphics->hdc;
5160 else
5162 hdc = temp_hdc = CreateCompatibleDC(0);
5165 if(format){
5166 TRACE("may be ignoring some format flags: attr %x\n", format->attr);
5168 /* Should be no need to explicitly test for StringAlignmentNear as
5169 * that is default behavior if no alignment is passed. */
5170 if(format->vertalign != StringAlignmentNear){
5171 RectF bounds, in_rect = *rect;
5172 in_rect.Height = 0.0; /* avoid height clipping */
5173 GdipMeasureString(graphics, string, length, font, &in_rect, format, &bounds, 0, 0);
5175 TRACE("bounds %s\n", debugstr_rectf(&bounds));
5177 if(format->vertalign == StringAlignmentCenter)
5178 offsety = (rect->Height - bounds.Height) / 2;
5179 else if(format->vertalign == StringAlignmentFar)
5180 offsety = (rect->Height - bounds.Height);
5182 TRACE("vertical align %d, offsety %f\n", format->vertalign, offsety);
5185 save_state = SaveDC(hdc);
5187 pt[0].X = 0.0;
5188 pt[0].Y = 0.0;
5189 pt[1].X = 1.0;
5190 pt[1].Y = 0.0;
5191 pt[2].X = 0.0;
5192 pt[2].Y = 1.0;
5193 GdipTransformPoints(graphics, CoordinateSpaceDevice, CoordinateSpaceWorld, pt, 3);
5194 rel_width = sqrt((pt[1].Y-pt[0].Y)*(pt[1].Y-pt[0].Y)+
5195 (pt[1].X-pt[0].X)*(pt[1].X-pt[0].X));
5196 rel_height = sqrt((pt[2].Y-pt[0].Y)*(pt[2].Y-pt[0].Y)+
5197 (pt[2].X-pt[0].X)*(pt[2].X-pt[0].X));
5199 rectcpy[3].X = rectcpy[0].X = rect->X;
5200 rectcpy[1].Y = rectcpy[0].Y = rect->Y;
5201 rectcpy[2].X = rectcpy[1].X = rect->X + rect->Width;
5202 rectcpy[3].Y = rectcpy[2].Y = rect->Y + rect->Height;
5203 transform_and_round_points(graphics, corners, rectcpy, 4);
5205 scaled_rect.X = 0.0;
5206 scaled_rect.Y = 0.0;
5207 scaled_rect.Width = rel_width * rect->Width;
5208 scaled_rect.Height = rel_height * rect->Height;
5210 if (roundr(scaled_rect.Width) != 0 && roundr(scaled_rect.Height) != 0)
5212 /* FIXME: If only the width or only the height is 0, we should probably still clip */
5213 rgn = CreatePolygonRgn(corners, 4, ALTERNATE);
5214 SelectClipRgn(hdc, rgn);
5217 get_font_hfont(graphics, font, &gdifont);
5218 SelectObject(hdc, gdifont);
5220 args.graphics = graphics;
5221 args.brush = brush;
5223 args.x = rect->X;
5224 args.y = rect->Y + offsety;
5226 args.rel_width = rel_width;
5227 args.rel_height = rel_height;
5229 GetTextMetricsW(hdc, &textmetric);
5230 args.ascent = textmetric.tmAscent / rel_height;
5232 gdip_format_string(hdc, string, length, font, &scaled_rect, format,
5233 draw_string_callback, &args);
5235 DeleteObject(rgn);
5236 DeleteObject(gdifont);
5238 RestoreDC(hdc, save_state);
5240 DeleteDC(temp_hdc);
5242 return Ok;
5245 GpStatus WINGDIPAPI GdipResetClip(GpGraphics *graphics)
5247 TRACE("(%p)\n", graphics);
5249 if(!graphics)
5250 return InvalidParameter;
5252 if(graphics->busy)
5253 return ObjectBusy;
5255 return GdipSetInfinite(graphics->clip);
5258 GpStatus WINGDIPAPI GdipResetWorldTransform(GpGraphics *graphics)
5260 TRACE("(%p)\n", graphics);
5262 if(!graphics)
5263 return InvalidParameter;
5265 if(graphics->busy)
5266 return ObjectBusy;
5268 graphics->worldtrans->matrix[0] = 1.0;
5269 graphics->worldtrans->matrix[1] = 0.0;
5270 graphics->worldtrans->matrix[2] = 0.0;
5271 graphics->worldtrans->matrix[3] = 1.0;
5272 graphics->worldtrans->matrix[4] = 0.0;
5273 graphics->worldtrans->matrix[5] = 0.0;
5275 return Ok;
5278 GpStatus WINGDIPAPI GdipRestoreGraphics(GpGraphics *graphics, GraphicsState state)
5280 return GdipEndContainer(graphics, state);
5283 GpStatus WINGDIPAPI GdipRotateWorldTransform(GpGraphics *graphics, REAL angle,
5284 GpMatrixOrder order)
5286 TRACE("(%p, %.2f, %d)\n", graphics, angle, order);
5288 if(!graphics)
5289 return InvalidParameter;
5291 if(graphics->busy)
5292 return ObjectBusy;
5294 return GdipRotateMatrix(graphics->worldtrans, angle, order);
5297 GpStatus WINGDIPAPI GdipSaveGraphics(GpGraphics *graphics, GraphicsState *state)
5299 return GdipBeginContainer2(graphics, state);
5302 GpStatus WINGDIPAPI GdipBeginContainer2(GpGraphics *graphics,
5303 GraphicsContainer *state)
5305 GraphicsContainerItem *container;
5306 GpStatus sts;
5308 TRACE("(%p, %p)\n", graphics, state);
5310 if(!graphics || !state)
5311 return InvalidParameter;
5313 sts = init_container(&container, graphics);
5314 if(sts != Ok)
5315 return sts;
5317 list_add_head(&graphics->containers, &container->entry);
5318 *state = graphics->contid = container->contid;
5320 return Ok;
5323 GpStatus WINGDIPAPI GdipBeginContainer(GpGraphics *graphics, GDIPCONST GpRectF *dstrect, GDIPCONST GpRectF *srcrect, GpUnit unit, GraphicsContainer *state)
5325 FIXME("(%p, %p, %p, %d, %p): stub\n", graphics, dstrect, srcrect, unit, state);
5326 return NotImplemented;
5329 GpStatus WINGDIPAPI GdipBeginContainerI(GpGraphics *graphics, GDIPCONST GpRect *dstrect, GDIPCONST GpRect *srcrect, GpUnit unit, GraphicsContainer *state)
5331 FIXME("(%p, %p, %p, %d, %p): stub\n", graphics, dstrect, srcrect, unit, state);
5332 return NotImplemented;
5335 GpStatus WINGDIPAPI GdipComment(GpGraphics *graphics, UINT sizeData, GDIPCONST BYTE *data)
5337 FIXME("(%p, %d, %p): stub\n", graphics, sizeData, data);
5338 return NotImplemented;
5341 GpStatus WINGDIPAPI GdipEndContainer(GpGraphics *graphics, GraphicsContainer state)
5343 GpStatus sts;
5344 GraphicsContainerItem *container, *container2;
5346 TRACE("(%p, %x)\n", graphics, state);
5348 if(!graphics)
5349 return InvalidParameter;
5351 LIST_FOR_EACH_ENTRY(container, &graphics->containers, GraphicsContainerItem, entry){
5352 if(container->contid == state)
5353 break;
5356 /* did not find a matching container */
5357 if(&container->entry == &graphics->containers)
5358 return Ok;
5360 sts = restore_container(graphics, container);
5361 if(sts != Ok)
5362 return sts;
5364 /* remove all of the containers on top of the found container */
5365 LIST_FOR_EACH_ENTRY_SAFE(container, container2, &graphics->containers, GraphicsContainerItem, entry){
5366 if(container->contid == state)
5367 break;
5368 list_remove(&container->entry);
5369 delete_container(container);
5372 list_remove(&container->entry);
5373 delete_container(container);
5375 return Ok;
5378 GpStatus WINGDIPAPI GdipScaleWorldTransform(GpGraphics *graphics, REAL sx,
5379 REAL sy, GpMatrixOrder order)
5381 TRACE("(%p, %.2f, %.2f, %d)\n", graphics, sx, sy, order);
5383 if(!graphics)
5384 return InvalidParameter;
5386 if(graphics->busy)
5387 return ObjectBusy;
5389 return GdipScaleMatrix(graphics->worldtrans, sx, sy, order);
5392 GpStatus WINGDIPAPI GdipSetClipGraphics(GpGraphics *graphics, GpGraphics *srcgraphics,
5393 CombineMode mode)
5395 TRACE("(%p, %p, %d)\n", graphics, srcgraphics, mode);
5397 if(!graphics || !srcgraphics)
5398 return InvalidParameter;
5400 return GdipCombineRegionRegion(graphics->clip, srcgraphics->clip, mode);
5403 GpStatus WINGDIPAPI GdipSetCompositingMode(GpGraphics *graphics,
5404 CompositingMode mode)
5406 TRACE("(%p, %d)\n", graphics, mode);
5408 if(!graphics)
5409 return InvalidParameter;
5411 if(graphics->busy)
5412 return ObjectBusy;
5414 graphics->compmode = mode;
5416 return Ok;
5419 GpStatus WINGDIPAPI GdipSetCompositingQuality(GpGraphics *graphics,
5420 CompositingQuality quality)
5422 TRACE("(%p, %d)\n", graphics, quality);
5424 if(!graphics)
5425 return InvalidParameter;
5427 if(graphics->busy)
5428 return ObjectBusy;
5430 graphics->compqual = quality;
5432 return Ok;
5435 GpStatus WINGDIPAPI GdipSetInterpolationMode(GpGraphics *graphics,
5436 InterpolationMode mode)
5438 TRACE("(%p, %d)\n", graphics, mode);
5440 if(!graphics || mode == InterpolationModeInvalid || mode > InterpolationModeHighQualityBicubic)
5441 return InvalidParameter;
5443 if(graphics->busy)
5444 return ObjectBusy;
5446 if (mode == InterpolationModeDefault || mode == InterpolationModeLowQuality)
5447 mode = InterpolationModeBilinear;
5449 if (mode == InterpolationModeHighQuality)
5450 mode = InterpolationModeHighQualityBicubic;
5452 graphics->interpolation = mode;
5454 return Ok;
5457 GpStatus WINGDIPAPI GdipSetPageScale(GpGraphics *graphics, REAL scale)
5459 TRACE("(%p, %.2f)\n", graphics, scale);
5461 if(!graphics || (scale <= 0.0))
5462 return InvalidParameter;
5464 if(graphics->busy)
5465 return ObjectBusy;
5467 graphics->scale = scale;
5469 return Ok;
5472 GpStatus WINGDIPAPI GdipSetPageUnit(GpGraphics *graphics, GpUnit unit)
5474 TRACE("(%p, %d)\n", graphics, unit);
5476 if(!graphics)
5477 return InvalidParameter;
5479 if(graphics->busy)
5480 return ObjectBusy;
5482 if(unit == UnitWorld)
5483 return InvalidParameter;
5485 graphics->unit = unit;
5487 return Ok;
5490 GpStatus WINGDIPAPI GdipSetPixelOffsetMode(GpGraphics *graphics, PixelOffsetMode
5491 mode)
5493 TRACE("(%p, %d)\n", graphics, mode);
5495 if(!graphics)
5496 return InvalidParameter;
5498 if(graphics->busy)
5499 return ObjectBusy;
5501 graphics->pixeloffset = mode;
5503 return Ok;
5506 GpStatus WINGDIPAPI GdipSetRenderingOrigin(GpGraphics *graphics, INT x, INT y)
5508 static int calls;
5510 TRACE("(%p,%i,%i)\n", graphics, x, y);
5512 if (!(calls++))
5513 FIXME("value is unused in rendering\n");
5515 if (!graphics)
5516 return InvalidParameter;
5518 graphics->origin_x = x;
5519 graphics->origin_y = y;
5521 return Ok;
5524 GpStatus WINGDIPAPI GdipGetRenderingOrigin(GpGraphics *graphics, INT *x, INT *y)
5526 TRACE("(%p,%p,%p)\n", graphics, x, y);
5528 if (!graphics || !x || !y)
5529 return InvalidParameter;
5531 *x = graphics->origin_x;
5532 *y = graphics->origin_y;
5534 return Ok;
5537 GpStatus WINGDIPAPI GdipSetSmoothingMode(GpGraphics *graphics, SmoothingMode mode)
5539 TRACE("(%p, %d)\n", graphics, mode);
5541 if(!graphics)
5542 return InvalidParameter;
5544 if(graphics->busy)
5545 return ObjectBusy;
5547 graphics->smoothing = mode;
5549 return Ok;
5552 GpStatus WINGDIPAPI GdipSetTextContrast(GpGraphics *graphics, UINT contrast)
5554 TRACE("(%p, %d)\n", graphics, contrast);
5556 if(!graphics)
5557 return InvalidParameter;
5559 graphics->textcontrast = contrast;
5561 return Ok;
5564 GpStatus WINGDIPAPI GdipSetTextRenderingHint(GpGraphics *graphics,
5565 TextRenderingHint hint)
5567 TRACE("(%p, %d)\n", graphics, hint);
5569 if(!graphics || hint > TextRenderingHintClearTypeGridFit)
5570 return InvalidParameter;
5572 if(graphics->busy)
5573 return ObjectBusy;
5575 graphics->texthint = hint;
5577 return Ok;
5580 GpStatus WINGDIPAPI GdipSetWorldTransform(GpGraphics *graphics, GpMatrix *matrix)
5582 TRACE("(%p, %p)\n", graphics, matrix);
5584 if(!graphics || !matrix)
5585 return InvalidParameter;
5587 if(graphics->busy)
5588 return ObjectBusy;
5590 TRACE("%f,%f,%f,%f,%f,%f\n",
5591 matrix->matrix[0], matrix->matrix[1], matrix->matrix[2],
5592 matrix->matrix[3], matrix->matrix[4], matrix->matrix[5]);
5594 GdipDeleteMatrix(graphics->worldtrans);
5595 return GdipCloneMatrix(matrix, &graphics->worldtrans);
5598 GpStatus WINGDIPAPI GdipTranslateWorldTransform(GpGraphics *graphics, REAL dx,
5599 REAL dy, GpMatrixOrder order)
5601 TRACE("(%p, %.2f, %.2f, %d)\n", graphics, dx, dy, order);
5603 if(!graphics)
5604 return InvalidParameter;
5606 if(graphics->busy)
5607 return ObjectBusy;
5609 return GdipTranslateMatrix(graphics->worldtrans, dx, dy, order);
5612 /*****************************************************************************
5613 * GdipSetClipHrgn [GDIPLUS.@]
5615 GpStatus WINGDIPAPI GdipSetClipHrgn(GpGraphics *graphics, HRGN hrgn, CombineMode mode)
5617 GpRegion *region;
5618 GpStatus status;
5620 TRACE("(%p, %p, %d)\n", graphics, hrgn, mode);
5622 if(!graphics)
5623 return InvalidParameter;
5625 status = GdipCreateRegionHrgn(hrgn, &region);
5626 if(status != Ok)
5627 return status;
5629 status = GdipSetClipRegion(graphics, region, mode);
5631 GdipDeleteRegion(region);
5632 return status;
5635 GpStatus WINGDIPAPI GdipSetClipPath(GpGraphics *graphics, GpPath *path, CombineMode mode)
5637 TRACE("(%p, %p, %d)\n", graphics, path, mode);
5639 if(!graphics)
5640 return InvalidParameter;
5642 if(graphics->busy)
5643 return ObjectBusy;
5645 return GdipCombineRegionPath(graphics->clip, path, mode);
5648 GpStatus WINGDIPAPI GdipSetClipRect(GpGraphics *graphics, REAL x, REAL y,
5649 REAL width, REAL height,
5650 CombineMode mode)
5652 GpRectF rect;
5654 TRACE("(%p, %.2f, %.2f, %.2f, %.2f, %d)\n", graphics, x, y, width, height, mode);
5656 if(!graphics)
5657 return InvalidParameter;
5659 if(graphics->busy)
5660 return ObjectBusy;
5662 rect.X = x;
5663 rect.Y = y;
5664 rect.Width = width;
5665 rect.Height = height;
5667 return GdipCombineRegionRect(graphics->clip, &rect, mode);
5670 GpStatus WINGDIPAPI GdipSetClipRectI(GpGraphics *graphics, INT x, INT y,
5671 INT width, INT height,
5672 CombineMode mode)
5674 TRACE("(%p, %d, %d, %d, %d, %d)\n", graphics, x, y, width, height, mode);
5676 if(!graphics)
5677 return InvalidParameter;
5679 if(graphics->busy)
5680 return ObjectBusy;
5682 return GdipSetClipRect(graphics, (REAL)x, (REAL)y, (REAL)width, (REAL)height, mode);
5685 GpStatus WINGDIPAPI GdipSetClipRegion(GpGraphics *graphics, GpRegion *region,
5686 CombineMode mode)
5688 TRACE("(%p, %p, %d)\n", graphics, region, mode);
5690 if(!graphics || !region)
5691 return InvalidParameter;
5693 if(graphics->busy)
5694 return ObjectBusy;
5696 return GdipCombineRegionRegion(graphics->clip, region, mode);
5699 GpStatus WINGDIPAPI GdipSetMetafileDownLevelRasterizationLimit(GpMetafile *metafile,
5700 UINT limitDpi)
5702 static int calls;
5704 TRACE("(%p,%u)\n", metafile, limitDpi);
5706 if(!(calls++))
5707 FIXME("not implemented\n");
5709 return NotImplemented;
5712 GpStatus WINGDIPAPI GdipDrawPolygon(GpGraphics *graphics,GpPen *pen,GDIPCONST GpPointF *points,
5713 INT count)
5715 INT save_state;
5716 POINT *pti;
5718 TRACE("(%p, %p, %d)\n", graphics, points, count);
5720 if(!graphics || !pen || count<=0)
5721 return InvalidParameter;
5723 if(graphics->busy)
5724 return ObjectBusy;
5726 if (!graphics->hdc)
5728 FIXME("graphics object has no HDC\n");
5729 return Ok;
5732 pti = GdipAlloc(sizeof(POINT) * count);
5734 save_state = prepare_dc(graphics, pen);
5735 SelectObject(graphics->hdc, GetStockObject(NULL_BRUSH));
5737 transform_and_round_points(graphics, pti, (GpPointF*)points, count);
5738 Polygon(graphics->hdc, pti, count);
5740 restore_dc(graphics, save_state);
5741 GdipFree(pti);
5743 return Ok;
5746 GpStatus WINGDIPAPI GdipDrawPolygonI(GpGraphics *graphics,GpPen *pen,GDIPCONST GpPoint *points,
5747 INT count)
5749 GpStatus ret;
5750 GpPointF *ptf;
5751 INT i;
5753 TRACE("(%p, %p, %p, %d)\n", graphics, pen, points, count);
5755 if(count<=0) return InvalidParameter;
5756 ptf = GdipAlloc(sizeof(GpPointF) * count);
5758 for(i = 0;i < count; i++){
5759 ptf[i].X = (REAL)points[i].X;
5760 ptf[i].Y = (REAL)points[i].Y;
5763 ret = GdipDrawPolygon(graphics,pen,ptf,count);
5764 GdipFree(ptf);
5766 return ret;
5769 GpStatus WINGDIPAPI GdipGetDpiX(GpGraphics *graphics, REAL* dpi)
5771 TRACE("(%p, %p)\n", graphics, dpi);
5773 if(!graphics || !dpi)
5774 return InvalidParameter;
5776 if(graphics->busy)
5777 return ObjectBusy;
5779 *dpi = graphics->xres;
5780 return Ok;
5783 GpStatus WINGDIPAPI GdipGetDpiY(GpGraphics *graphics, REAL* dpi)
5785 TRACE("(%p, %p)\n", graphics, dpi);
5787 if(!graphics || !dpi)
5788 return InvalidParameter;
5790 if(graphics->busy)
5791 return ObjectBusy;
5793 *dpi = graphics->yres;
5794 return Ok;
5797 GpStatus WINGDIPAPI GdipMultiplyWorldTransform(GpGraphics *graphics, GDIPCONST GpMatrix *matrix,
5798 GpMatrixOrder order)
5800 GpMatrix m;
5801 GpStatus ret;
5803 TRACE("(%p, %p, %d)\n", graphics, matrix, order);
5805 if(!graphics || !matrix)
5806 return InvalidParameter;
5808 if(graphics->busy)
5809 return ObjectBusy;
5811 m = *(graphics->worldtrans);
5813 ret = GdipMultiplyMatrix(&m, matrix, order);
5814 if(ret == Ok)
5815 *(graphics->worldtrans) = m;
5817 return ret;
5820 /* Color used to fill bitmaps so we can tell which parts have been drawn over by gdi32. */
5821 static const COLORREF DC_BACKGROUND_KEY = 0x0c0b0d;
5823 GpStatus WINGDIPAPI GdipGetDC(GpGraphics *graphics, HDC *hdc)
5825 GpStatus stat=Ok;
5827 TRACE("(%p, %p)\n", graphics, hdc);
5829 if(!graphics || !hdc)
5830 return InvalidParameter;
5832 if(graphics->busy)
5833 return ObjectBusy;
5835 if (graphics->image && graphics->image->type == ImageTypeMetafile)
5837 stat = METAFILE_GetDC((GpMetafile*)graphics->image, hdc);
5839 else if (!graphics->hdc ||
5840 (graphics->image && graphics->image->type == ImageTypeBitmap && ((GpBitmap*)graphics->image)->format & PixelFormatAlpha))
5842 /* Create a fake HDC and fill it with a constant color. */
5843 HDC temp_hdc;
5844 HBITMAP hbitmap;
5845 GpRectF bounds;
5846 BITMAPINFOHEADER bmih;
5847 int i;
5849 stat = get_graphics_bounds(graphics, &bounds);
5850 if (stat != Ok)
5851 return stat;
5853 graphics->temp_hbitmap_width = bounds.Width;
5854 graphics->temp_hbitmap_height = bounds.Height;
5856 bmih.biSize = sizeof(bmih);
5857 bmih.biWidth = graphics->temp_hbitmap_width;
5858 bmih.biHeight = -graphics->temp_hbitmap_height;
5859 bmih.biPlanes = 1;
5860 bmih.biBitCount = 32;
5861 bmih.biCompression = BI_RGB;
5862 bmih.biSizeImage = 0;
5863 bmih.biXPelsPerMeter = 0;
5864 bmih.biYPelsPerMeter = 0;
5865 bmih.biClrUsed = 0;
5866 bmih.biClrImportant = 0;
5868 hbitmap = CreateDIBSection(NULL, (BITMAPINFO*)&bmih, DIB_RGB_COLORS,
5869 (void**)&graphics->temp_bits, NULL, 0);
5870 if (!hbitmap)
5871 return GenericError;
5873 temp_hdc = CreateCompatibleDC(0);
5874 if (!temp_hdc)
5876 DeleteObject(hbitmap);
5877 return GenericError;
5880 for (i=0; i<(graphics->temp_hbitmap_width * graphics->temp_hbitmap_height); i++)
5881 ((DWORD*)graphics->temp_bits)[i] = DC_BACKGROUND_KEY;
5883 SelectObject(temp_hdc, hbitmap);
5885 graphics->temp_hbitmap = hbitmap;
5886 *hdc = graphics->temp_hdc = temp_hdc;
5888 else
5890 *hdc = graphics->hdc;
5893 if (stat == Ok)
5894 graphics->busy = TRUE;
5896 return stat;
5899 GpStatus WINGDIPAPI GdipReleaseDC(GpGraphics *graphics, HDC hdc)
5901 GpStatus stat=Ok;
5903 TRACE("(%p, %p)\n", graphics, hdc);
5905 if(!graphics || !hdc || !graphics->busy)
5906 return InvalidParameter;
5908 if (graphics->image && graphics->image->type == ImageTypeMetafile)
5910 stat = METAFILE_ReleaseDC((GpMetafile*)graphics->image, hdc);
5912 else if (graphics->temp_hdc == hdc)
5914 DWORD* pos;
5915 int i;
5917 /* Find the pixels that have changed, and mark them as opaque. */
5918 pos = (DWORD*)graphics->temp_bits;
5919 for (i=0; i<(graphics->temp_hbitmap_width * graphics->temp_hbitmap_height); i++)
5921 if (*pos != DC_BACKGROUND_KEY)
5923 *pos |= 0xff000000;
5925 pos++;
5928 /* Write the changed pixels to the real target. */
5929 alpha_blend_pixels(graphics, 0, 0, graphics->temp_bits,
5930 graphics->temp_hbitmap_width, graphics->temp_hbitmap_height,
5931 graphics->temp_hbitmap_width * 4);
5933 /* Clean up. */
5934 DeleteDC(graphics->temp_hdc);
5935 DeleteObject(graphics->temp_hbitmap);
5936 graphics->temp_hdc = NULL;
5937 graphics->temp_hbitmap = NULL;
5939 else if (hdc != graphics->hdc)
5941 stat = InvalidParameter;
5944 if (stat == Ok)
5945 graphics->busy = FALSE;
5947 return stat;
5950 GpStatus WINGDIPAPI GdipGetClip(GpGraphics *graphics, GpRegion *region)
5952 GpRegion *clip;
5953 GpStatus status;
5955 TRACE("(%p, %p)\n", graphics, region);
5957 if(!graphics || !region)
5958 return InvalidParameter;
5960 if(graphics->busy)
5961 return ObjectBusy;
5963 if((status = GdipCloneRegion(graphics->clip, &clip)) != Ok)
5964 return status;
5966 /* free everything except root node and header */
5967 delete_element(&region->node);
5968 memcpy(region, clip, sizeof(GpRegion));
5969 GdipFree(clip);
5971 return Ok;
5974 static GpStatus get_graphics_transform(GpGraphics *graphics, GpCoordinateSpace dst_space,
5975 GpCoordinateSpace src_space, GpMatrix **matrix)
5977 GpStatus stat = GdipCreateMatrix(matrix);
5978 REAL scale_x, scale_y;
5980 if (dst_space != src_space && stat == Ok)
5982 scale_x = units_to_pixels(1.0, graphics->unit, graphics->xres);
5983 scale_y = units_to_pixels(1.0, graphics->unit, graphics->yres);
5985 if(graphics->unit != UnitDisplay)
5987 scale_x *= graphics->scale;
5988 scale_y *= graphics->scale;
5991 /* transform from src_space to CoordinateSpacePage */
5992 switch (src_space)
5994 case CoordinateSpaceWorld:
5995 GdipMultiplyMatrix(*matrix, graphics->worldtrans, MatrixOrderAppend);
5996 break;
5997 case CoordinateSpacePage:
5998 break;
5999 case CoordinateSpaceDevice:
6000 GdipScaleMatrix(*matrix, 1.0/scale_x, 1.0/scale_y, MatrixOrderAppend);
6001 break;
6004 /* transform from CoordinateSpacePage to dst_space */
6005 switch (dst_space)
6007 case CoordinateSpaceWorld:
6009 GpMatrix *inverted_transform;
6010 stat = GdipCloneMatrix(graphics->worldtrans, &inverted_transform);
6011 if (stat == Ok)
6013 stat = GdipInvertMatrix(inverted_transform);
6014 if (stat == Ok)
6015 GdipMultiplyMatrix(*matrix, inverted_transform, MatrixOrderAppend);
6016 GdipDeleteMatrix(inverted_transform);
6018 break;
6020 case CoordinateSpacePage:
6021 break;
6022 case CoordinateSpaceDevice:
6023 GdipScaleMatrix(*matrix, scale_x, scale_y, MatrixOrderAppend);
6024 break;
6027 return stat;
6030 GpStatus WINGDIPAPI GdipTransformPoints(GpGraphics *graphics, GpCoordinateSpace dst_space,
6031 GpCoordinateSpace src_space, GpPointF *points, INT count)
6033 GpMatrix *matrix;
6034 GpStatus stat;
6036 if(!graphics || !points || count <= 0)
6037 return InvalidParameter;
6039 if(graphics->busy)
6040 return ObjectBusy;
6042 TRACE("(%p, %d, %d, %p, %d)\n", graphics, dst_space, src_space, points, count);
6044 if (src_space == dst_space) return Ok;
6046 stat = get_graphics_transform(graphics, dst_space, src_space, &matrix);
6048 if (stat == Ok)
6050 stat = GdipTransformMatrixPoints(matrix, points, count);
6052 GdipDeleteMatrix(matrix);
6055 return stat;
6058 GpStatus WINGDIPAPI GdipTransformPointsI(GpGraphics *graphics, GpCoordinateSpace dst_space,
6059 GpCoordinateSpace src_space, GpPoint *points, INT count)
6061 GpPointF *pointsF;
6062 GpStatus ret;
6063 INT i;
6065 TRACE("(%p, %d, %d, %p, %d)\n", graphics, dst_space, src_space, points, count);
6067 if(count <= 0)
6068 return InvalidParameter;
6070 pointsF = GdipAlloc(sizeof(GpPointF) * count);
6071 if(!pointsF)
6072 return OutOfMemory;
6074 for(i = 0; i < count; i++){
6075 pointsF[i].X = (REAL)points[i].X;
6076 pointsF[i].Y = (REAL)points[i].Y;
6079 ret = GdipTransformPoints(graphics, dst_space, src_space, pointsF, count);
6081 if(ret == Ok)
6082 for(i = 0; i < count; i++){
6083 points[i].X = roundr(pointsF[i].X);
6084 points[i].Y = roundr(pointsF[i].Y);
6086 GdipFree(pointsF);
6088 return ret;
6091 HPALETTE WINGDIPAPI GdipCreateHalftonePalette(void)
6093 static int calls;
6095 TRACE("\n");
6097 if (!calls++)
6098 FIXME("stub\n");
6100 return NULL;
6103 /*****************************************************************************
6104 * GdipTranslateClip [GDIPLUS.@]
6106 GpStatus WINGDIPAPI GdipTranslateClip(GpGraphics *graphics, REAL dx, REAL dy)
6108 TRACE("(%p, %.2f, %.2f)\n", graphics, dx, dy);
6110 if(!graphics)
6111 return InvalidParameter;
6113 if(graphics->busy)
6114 return ObjectBusy;
6116 return GdipTranslateRegion(graphics->clip, dx, dy);
6119 /*****************************************************************************
6120 * GdipTranslateClipI [GDIPLUS.@]
6122 GpStatus WINGDIPAPI GdipTranslateClipI(GpGraphics *graphics, INT dx, INT dy)
6124 TRACE("(%p, %d, %d)\n", graphics, dx, dy);
6126 if(!graphics)
6127 return InvalidParameter;
6129 if(graphics->busy)
6130 return ObjectBusy;
6132 return GdipTranslateRegion(graphics->clip, (REAL)dx, (REAL)dy);
6136 /*****************************************************************************
6137 * GdipMeasureDriverString [GDIPLUS.@]
6139 GpStatus WINGDIPAPI GdipMeasureDriverString(GpGraphics *graphics, GDIPCONST UINT16 *text, INT length,
6140 GDIPCONST GpFont *font, GDIPCONST PointF *positions,
6141 INT flags, GDIPCONST GpMatrix *matrix, RectF *boundingBox)
6143 static const INT unsupported_flags = ~(DriverStringOptionsCmapLookup|DriverStringOptionsRealizedAdvance);
6144 HFONT hfont;
6145 HDC hdc;
6146 REAL min_x, min_y, max_x, max_y, x, y;
6147 int i;
6148 TEXTMETRICW textmetric;
6149 const WORD *glyph_indices;
6150 WORD *dynamic_glyph_indices=NULL;
6151 REAL rel_width, rel_height, ascent, descent;
6152 GpPointF pt[3];
6154 TRACE("(%p %p %d %p %p %d %p %p)\n", graphics, text, length, font, positions, flags, matrix, boundingBox);
6156 if (!graphics || !text || !font || !positions || !boundingBox)
6157 return InvalidParameter;
6159 if (length == -1)
6160 length = strlenW(text);
6162 if (length == 0)
6164 boundingBox->X = 0.0;
6165 boundingBox->Y = 0.0;
6166 boundingBox->Width = 0.0;
6167 boundingBox->Height = 0.0;
6170 if (flags & unsupported_flags)
6171 FIXME("Ignoring flags %x\n", flags & unsupported_flags);
6173 if (matrix)
6174 FIXME("Ignoring matrix\n");
6176 get_font_hfont(graphics, font, &hfont);
6178 hdc = CreateCompatibleDC(0);
6179 SelectObject(hdc, hfont);
6181 GetTextMetricsW(hdc, &textmetric);
6183 pt[0].X = 0.0;
6184 pt[0].Y = 0.0;
6185 pt[1].X = 1.0;
6186 pt[1].Y = 0.0;
6187 pt[2].X = 0.0;
6188 pt[2].Y = 1.0;
6189 GdipTransformPoints(graphics, CoordinateSpaceDevice, CoordinateSpaceWorld, pt, 3);
6190 rel_width = sqrt((pt[1].Y-pt[0].Y)*(pt[1].Y-pt[0].Y)+
6191 (pt[1].X-pt[0].X)*(pt[1].X-pt[0].X));
6192 rel_height = sqrt((pt[2].Y-pt[0].Y)*(pt[2].Y-pt[0].Y)+
6193 (pt[2].X-pt[0].X)*(pt[2].X-pt[0].X));
6195 if (flags & DriverStringOptionsCmapLookup)
6197 glyph_indices = dynamic_glyph_indices = GdipAlloc(sizeof(WORD) * length);
6198 if (!glyph_indices)
6200 DeleteDC(hdc);
6201 DeleteObject(hfont);
6202 return OutOfMemory;
6205 GetGlyphIndicesW(hdc, text, length, dynamic_glyph_indices, 0);
6207 else
6208 glyph_indices = text;
6210 min_x = max_x = x = positions[0].X;
6211 min_y = max_y = y = positions[0].Y;
6213 ascent = textmetric.tmAscent / rel_height;
6214 descent = textmetric.tmDescent / rel_height;
6216 for (i=0; i<length; i++)
6218 int char_width;
6219 ABC abc;
6221 if (!(flags & DriverStringOptionsRealizedAdvance))
6223 x = positions[i].X;
6224 y = positions[i].Y;
6227 GetCharABCWidthsW(hdc, glyph_indices[i], glyph_indices[i], &abc);
6228 char_width = abc.abcA + abc.abcB + abc.abcB;
6230 if (min_y > y - ascent) min_y = y - ascent;
6231 if (max_y < y + descent) max_y = y + descent;
6232 if (min_x > x) min_x = x;
6234 x += char_width / rel_width;
6236 if (max_x < x) max_x = x;
6239 GdipFree(dynamic_glyph_indices);
6240 DeleteDC(hdc);
6241 DeleteObject(hfont);
6243 boundingBox->X = min_x;
6244 boundingBox->Y = min_y;
6245 boundingBox->Width = max_x - min_x;
6246 boundingBox->Height = max_y - min_y;
6248 return Ok;
6251 static GpStatus GDI32_GdipDrawDriverString(GpGraphics *graphics, GDIPCONST UINT16 *text, INT length,
6252 GDIPCONST GpFont *font, GDIPCONST GpBrush *brush,
6253 GDIPCONST PointF *positions, INT flags,
6254 GDIPCONST GpMatrix *matrix )
6256 static const INT unsupported_flags = ~(DriverStringOptionsRealizedAdvance|DriverStringOptionsCmapLookup);
6257 INT save_state;
6258 GpPointF pt;
6259 HFONT hfont;
6260 UINT eto_flags=0;
6262 if (flags & unsupported_flags)
6263 FIXME("Ignoring flags %x\n", flags & unsupported_flags);
6265 if (matrix)
6266 FIXME("Ignoring matrix\n");
6268 if (!(flags & DriverStringOptionsCmapLookup))
6269 eto_flags |= ETO_GLYPH_INDEX;
6271 save_state = SaveDC(graphics->hdc);
6272 SetBkMode(graphics->hdc, TRANSPARENT);
6273 SetTextColor(graphics->hdc, get_gdi_brush_color(brush));
6275 pt = positions[0];
6276 GdipTransformPoints(graphics, CoordinateSpaceDevice, CoordinateSpaceWorld, &pt, 1);
6278 get_font_hfont(graphics, font, &hfont);
6279 SelectObject(graphics->hdc, hfont);
6281 SetTextAlign(graphics->hdc, TA_BASELINE|TA_LEFT);
6283 ExtTextOutW(graphics->hdc, roundr(pt.X), roundr(pt.Y), eto_flags, NULL, text, length, NULL);
6285 RestoreDC(graphics->hdc, save_state);
6287 DeleteObject(hfont);
6289 return Ok;
6292 static GpStatus SOFTWARE_GdipDrawDriverString(GpGraphics *graphics, GDIPCONST UINT16 *text, INT length,
6293 GDIPCONST GpFont *font, GDIPCONST GpBrush *brush,
6294 GDIPCONST PointF *positions, INT flags,
6295 GDIPCONST GpMatrix *matrix )
6297 static const INT unsupported_flags = ~(DriverStringOptionsCmapLookup|DriverStringOptionsRealizedAdvance);
6298 GpStatus stat;
6299 PointF *real_positions, real_position;
6300 POINT *pti;
6301 HFONT hfont;
6302 HDC hdc;
6303 int min_x=INT_MAX, min_y=INT_MAX, max_x=INT_MIN, max_y=INT_MIN, i, x, y;
6304 DWORD max_glyphsize=0;
6305 GLYPHMETRICS glyphmetrics;
6306 static const MAT2 identity = {{0,1}, {0,0}, {0,0}, {0,1}};
6307 BYTE *glyph_mask;
6308 BYTE *text_mask;
6309 int text_mask_stride;
6310 BYTE *pixel_data;
6311 int pixel_data_stride;
6312 GpRect pixel_area;
6313 UINT ggo_flags = GGO_GRAY8_BITMAP;
6315 if (length <= 0)
6316 return Ok;
6318 if (!(flags & DriverStringOptionsCmapLookup))
6319 ggo_flags |= GGO_GLYPH_INDEX;
6321 if (flags & unsupported_flags)
6322 FIXME("Ignoring flags %x\n", flags & unsupported_flags);
6324 if (matrix)
6325 FIXME("Ignoring matrix\n");
6327 pti = GdipAlloc(sizeof(POINT) * length);
6328 if (!pti)
6329 return OutOfMemory;
6331 if (flags & DriverStringOptionsRealizedAdvance)
6333 real_position = positions[0];
6335 transform_and_round_points(graphics, pti, &real_position, 1);
6337 else
6339 real_positions = GdipAlloc(sizeof(PointF) * length);
6340 if (!real_positions)
6342 GdipFree(pti);
6343 return OutOfMemory;
6346 memcpy(real_positions, positions, sizeof(PointF) * length);
6348 transform_and_round_points(graphics, pti, real_positions, length);
6350 GdipFree(real_positions);
6353 get_font_hfont(graphics, font, &hfont);
6355 hdc = CreateCompatibleDC(0);
6356 SelectObject(hdc, hfont);
6358 /* Get the boundaries of the text to be drawn */
6359 for (i=0; i<length; i++)
6361 DWORD glyphsize;
6362 int left, top, right, bottom;
6364 glyphsize = GetGlyphOutlineW(hdc, text[i], ggo_flags,
6365 &glyphmetrics, 0, NULL, &identity);
6367 if (glyphsize == GDI_ERROR)
6369 ERR("GetGlyphOutlineW failed\n");
6370 GdipFree(pti);
6371 DeleteDC(hdc);
6372 DeleteObject(hfont);
6373 return GenericError;
6376 if (glyphsize > max_glyphsize)
6377 max_glyphsize = glyphsize;
6379 left = pti[i].x + glyphmetrics.gmptGlyphOrigin.x;
6380 top = pti[i].y - glyphmetrics.gmptGlyphOrigin.y;
6381 right = pti[i].x + glyphmetrics.gmptGlyphOrigin.x + glyphmetrics.gmBlackBoxX;
6382 bottom = pti[i].y - glyphmetrics.gmptGlyphOrigin.y + glyphmetrics.gmBlackBoxY;
6384 if (left < min_x) min_x = left;
6385 if (top < min_y) min_y = top;
6386 if (right > max_x) max_x = right;
6387 if (bottom > max_y) max_y = bottom;
6389 if (i+1 < length && (flags & DriverStringOptionsRealizedAdvance) == DriverStringOptionsRealizedAdvance)
6391 pti[i+1].x = pti[i].x + glyphmetrics.gmCellIncX;
6392 pti[i+1].y = pti[i].y + glyphmetrics.gmCellIncY;
6396 glyph_mask = GdipAlloc(max_glyphsize);
6397 text_mask = GdipAlloc((max_x - min_x) * (max_y - min_y));
6398 text_mask_stride = max_x - min_x;
6400 if (!(glyph_mask && text_mask))
6402 GdipFree(glyph_mask);
6403 GdipFree(text_mask);
6404 GdipFree(pti);
6405 DeleteDC(hdc);
6406 DeleteObject(hfont);
6407 return OutOfMemory;
6410 /* Generate a mask for the text */
6411 for (i=0; i<length; i++)
6413 int left, top, stride;
6415 GetGlyphOutlineW(hdc, text[i], ggo_flags,
6416 &glyphmetrics, max_glyphsize, glyph_mask, &identity);
6418 left = pti[i].x + glyphmetrics.gmptGlyphOrigin.x;
6419 top = pti[i].y - glyphmetrics.gmptGlyphOrigin.y;
6420 stride = (glyphmetrics.gmBlackBoxX + 3) & (~3);
6422 for (y=0; y<glyphmetrics.gmBlackBoxY; y++)
6424 BYTE *glyph_val = glyph_mask + y * stride;
6425 BYTE *text_val = text_mask + (left - min_x) + (top - min_y + y) * text_mask_stride;
6426 for (x=0; x<glyphmetrics.gmBlackBoxX; x++)
6428 *text_val = min(64, *text_val + *glyph_val);
6429 glyph_val++;
6430 text_val++;
6435 GdipFree(pti);
6436 DeleteDC(hdc);
6437 DeleteObject(hfont);
6438 GdipFree(glyph_mask);
6440 /* get the brush data */
6441 pixel_data = GdipAlloc(4 * (max_x - min_x) * (max_y - min_y));
6442 if (!pixel_data)
6444 GdipFree(text_mask);
6445 return OutOfMemory;
6448 pixel_area.X = min_x;
6449 pixel_area.Y = min_y;
6450 pixel_area.Width = max_x - min_x;
6451 pixel_area.Height = max_y - min_y;
6452 pixel_data_stride = pixel_area.Width * 4;
6454 stat = brush_fill_pixels(graphics, (GpBrush*)brush, (DWORD*)pixel_data, &pixel_area, pixel_area.Width);
6455 if (stat != Ok)
6457 GdipFree(text_mask);
6458 GdipFree(pixel_data);
6459 return stat;
6462 /* multiply the brush data by the mask */
6463 for (y=0; y<pixel_area.Height; y++)
6465 BYTE *text_val = text_mask + text_mask_stride * y;
6466 BYTE *pixel_val = pixel_data + pixel_data_stride * y + 3;
6467 for (x=0; x<pixel_area.Width; x++)
6469 *pixel_val = (*pixel_val) * (*text_val) / 64;
6470 text_val++;
6471 pixel_val+=4;
6475 GdipFree(text_mask);
6477 /* draw the result */
6478 stat = alpha_blend_pixels(graphics, min_x, min_y, pixel_data, pixel_area.Width,
6479 pixel_area.Height, pixel_data_stride);
6481 GdipFree(pixel_data);
6483 return stat;
6486 /*****************************************************************************
6487 * GdipDrawDriverString [GDIPLUS.@]
6489 GpStatus WINGDIPAPI GdipDrawDriverString(GpGraphics *graphics, GDIPCONST UINT16 *text, INT length,
6490 GDIPCONST GpFont *font, GDIPCONST GpBrush *brush,
6491 GDIPCONST PointF *positions, INT flags,
6492 GDIPCONST GpMatrix *matrix )
6494 GpStatus stat=NotImplemented;
6496 TRACE("(%p %s %p %p %p %d %p)\n", graphics, debugstr_wn(text, length), font, brush, positions, flags, matrix);
6498 if (!graphics || !text || !font || !brush || !positions)
6499 return InvalidParameter;
6501 if (length == -1)
6502 length = strlenW(text);
6504 if (graphics->hdc &&
6505 ((flags & DriverStringOptionsRealizedAdvance) || length <= 1) &&
6506 brush->bt == BrushTypeSolidColor &&
6507 (((GpSolidFill*)brush)->color & 0xff000000) == 0xff000000)
6508 stat = GDI32_GdipDrawDriverString(graphics, text, length, font, brush,
6509 positions, flags, matrix);
6511 if (stat == NotImplemented)
6512 stat = SOFTWARE_GdipDrawDriverString(graphics, text, length, font, brush,
6513 positions, flags, matrix);
6515 return stat;
6518 GpStatus WINGDIPAPI GdipRecordMetafileStream(IStream *stream, HDC hdc, EmfType type, GDIPCONST GpRect *frameRect,
6519 MetafileFrameUnit frameUnit, GDIPCONST WCHAR *desc, GpMetafile **metafile)
6521 FIXME("(%p %p %d %p %d %p %p): stub\n", stream, hdc, type, frameRect, frameUnit, desc, metafile);
6522 return NotImplemented;
6525 /*****************************************************************************
6526 * GdipIsVisibleClipEmpty [GDIPLUS.@]
6528 GpStatus WINGDIPAPI GdipIsVisibleClipEmpty(GpGraphics *graphics, BOOL *res)
6530 GpStatus stat;
6531 GpRegion* rgn;
6533 TRACE("(%p, %p)\n", graphics, res);
6535 if((stat = GdipCreateRegion(&rgn)) != Ok)
6536 return stat;
6538 if((stat = get_visible_clip_region(graphics, rgn)) != Ok)
6539 goto cleanup;
6541 stat = GdipIsEmptyRegion(rgn, graphics, res);
6543 cleanup:
6544 GdipDeleteRegion(rgn);
6545 return stat;
6548 GpStatus WINGDIPAPI GdipResetPageTransform(GpGraphics *graphics)
6550 static int calls;
6552 TRACE("(%p) stub\n", graphics);
6554 if(!(calls++))
6555 FIXME("not implemented\n");
6557 return NotImplemented;