gdiplus: Use clipping region in alpha_blend_pixels.
[wine/multimedia.git] / dlls / gdiplus / graphics.c
blob247b17d9046ec06186ecff77fc76e52c0ff3e6cb
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 static GpStatus draw_driver_string(GpGraphics *graphics, GDIPCONST UINT16 *text, INT length,
50 GDIPCONST GpFont *font, GDIPCONST GpStringFormat *format,
51 GDIPCONST GpBrush *brush, GDIPCONST PointF *positions,
52 INT flags, GDIPCONST GpMatrix *matrix);
54 /* Converts angle (in degrees) to x/y coordinates */
55 static void deg2xy(REAL angle, REAL x_0, REAL y_0, REAL *x, REAL *y)
57 REAL radAngle, hypotenuse;
59 radAngle = deg2rad(angle);
60 hypotenuse = 50.0; /* arbitrary */
62 *x = x_0 + cos(radAngle) * hypotenuse;
63 *y = y_0 + sin(radAngle) * hypotenuse;
66 /* Converts from gdiplus path point type to gdi path point type. */
67 static BYTE convert_path_point_type(BYTE type)
69 BYTE ret;
71 switch(type & PathPointTypePathTypeMask){
72 case PathPointTypeBezier:
73 ret = PT_BEZIERTO;
74 break;
75 case PathPointTypeLine:
76 ret = PT_LINETO;
77 break;
78 case PathPointTypeStart:
79 ret = PT_MOVETO;
80 break;
81 default:
82 ERR("Bad point type\n");
83 return 0;
86 if(type & PathPointTypeCloseSubpath)
87 ret |= PT_CLOSEFIGURE;
89 return ret;
92 static COLORREF get_gdi_brush_color(const GpBrush *brush)
94 ARGB argb;
96 switch (brush->bt)
98 case BrushTypeSolidColor:
100 const GpSolidFill *sf = (const GpSolidFill *)brush;
101 argb = sf->color;
102 break;
104 case BrushTypeHatchFill:
106 const GpHatch *hatch = (const GpHatch *)brush;
107 argb = hatch->forecol;
108 break;
110 case BrushTypeLinearGradient:
112 const GpLineGradient *line = (const GpLineGradient *)brush;
113 argb = line->startcolor;
114 break;
116 case BrushTypePathGradient:
118 const GpPathGradient *grad = (const GpPathGradient *)brush;
119 argb = grad->centercolor;
120 break;
122 default:
123 FIXME("unhandled brush type %d\n", brush->bt);
124 argb = 0;
125 break;
127 return ARGB2COLORREF(argb);
130 static HBITMAP create_hatch_bitmap(const GpHatch *hatch)
132 HBITMAP hbmp;
133 BITMAPINFOHEADER bmih;
134 DWORD *bits;
135 int x, y;
137 bmih.biSize = sizeof(bmih);
138 bmih.biWidth = 8;
139 bmih.biHeight = 8;
140 bmih.biPlanes = 1;
141 bmih.biBitCount = 32;
142 bmih.biCompression = BI_RGB;
143 bmih.biSizeImage = 0;
145 hbmp = CreateDIBSection(0, (BITMAPINFO *)&bmih, DIB_RGB_COLORS, (void **)&bits, NULL, 0);
146 if (hbmp)
148 const char *hatch_data;
150 if (get_hatch_data(hatch->hatchstyle, &hatch_data) == Ok)
152 for (y = 0; y < 8; y++)
154 for (x = 0; x < 8; x++)
156 if (hatch_data[y] & (0x80 >> x))
157 bits[y * 8 + x] = hatch->forecol;
158 else
159 bits[y * 8 + x] = hatch->backcol;
163 else
165 FIXME("Unimplemented hatch style %d\n", hatch->hatchstyle);
167 for (y = 0; y < 64; y++)
168 bits[y] = hatch->forecol;
172 return hbmp;
175 static GpStatus create_gdi_logbrush(const GpBrush *brush, LOGBRUSH *lb)
177 switch (brush->bt)
179 case BrushTypeSolidColor:
181 const GpSolidFill *sf = (const GpSolidFill *)brush;
182 lb->lbStyle = BS_SOLID;
183 lb->lbColor = ARGB2COLORREF(sf->color);
184 lb->lbHatch = 0;
185 return Ok;
188 case BrushTypeHatchFill:
190 const GpHatch *hatch = (const GpHatch *)brush;
191 HBITMAP hbmp;
193 hbmp = create_hatch_bitmap(hatch);
194 if (!hbmp) return OutOfMemory;
196 lb->lbStyle = BS_PATTERN;
197 lb->lbColor = 0;
198 lb->lbHatch = (ULONG_PTR)hbmp;
199 return Ok;
202 default:
203 FIXME("unhandled brush type %d\n", brush->bt);
204 lb->lbStyle = BS_SOLID;
205 lb->lbColor = get_gdi_brush_color(brush);
206 lb->lbHatch = 0;
207 return Ok;
211 static GpStatus free_gdi_logbrush(LOGBRUSH *lb)
213 switch (lb->lbStyle)
215 case BS_PATTERN:
216 DeleteObject((HGDIOBJ)(ULONG_PTR)lb->lbHatch);
217 break;
219 return Ok;
222 static HBRUSH create_gdi_brush(const GpBrush *brush)
224 LOGBRUSH lb;
225 HBRUSH gdibrush;
227 if (create_gdi_logbrush(brush, &lb) != Ok) return 0;
229 gdibrush = CreateBrushIndirect(&lb);
230 free_gdi_logbrush(&lb);
232 return gdibrush;
235 static INT prepare_dc(GpGraphics *graphics, GpPen *pen)
237 LOGBRUSH lb;
238 HPEN gdipen;
239 REAL width;
240 INT save_state, i, numdashes;
241 GpPointF pt[2];
242 DWORD dash_array[MAX_DASHLEN];
244 save_state = SaveDC(graphics->hdc);
246 EndPath(graphics->hdc);
248 if(pen->unit == UnitPixel){
249 width = pen->width;
251 else{
252 /* Get an estimate for the amount the pen width is affected by the world
253 * transform. (This is similar to what some of the wine drivers do.) */
254 pt[0].X = 0.0;
255 pt[0].Y = 0.0;
256 pt[1].X = 1.0;
257 pt[1].Y = 1.0;
258 GdipTransformMatrixPoints(&graphics->worldtrans, pt, 2);
259 width = sqrt((pt[1].X - pt[0].X) * (pt[1].X - pt[0].X) +
260 (pt[1].Y - pt[0].Y) * (pt[1].Y - pt[0].Y)) / sqrt(2.0);
262 width *= units_to_pixels(pen->width, pen->unit == UnitWorld ? graphics->unit : pen->unit, graphics->xres);
265 if(pen->dash == DashStyleCustom){
266 numdashes = min(pen->numdashes, MAX_DASHLEN);
268 TRACE("dashes are: ");
269 for(i = 0; i < numdashes; i++){
270 dash_array[i] = gdip_round(width * pen->dashes[i]);
271 TRACE("%d, ", dash_array[i]);
273 TRACE("\n and the pen style is %x\n", pen->style);
275 create_gdi_logbrush(pen->brush, &lb);
276 gdipen = ExtCreatePen(pen->style, gdip_round(width), &lb,
277 numdashes, dash_array);
278 free_gdi_logbrush(&lb);
280 else
282 create_gdi_logbrush(pen->brush, &lb);
283 gdipen = ExtCreatePen(pen->style, gdip_round(width), &lb, 0, NULL);
284 free_gdi_logbrush(&lb);
287 SelectObject(graphics->hdc, gdipen);
289 return save_state;
292 static void restore_dc(GpGraphics *graphics, INT state)
294 DeleteObject(SelectObject(graphics->hdc, GetStockObject(NULL_PEN)));
295 RestoreDC(graphics->hdc, state);
298 static GpStatus get_graphics_transform(GpGraphics *graphics, GpCoordinateSpace dst_space,
299 GpCoordinateSpace src_space, GpMatrix *matrix);
301 /* This helper applies all the changes that the points listed in ptf need in
302 * order to be drawn on the device context. In the end, this should include at
303 * least:
304 * -scaling by page unit
305 * -applying world transformation
306 * -converting from float to int
307 * Native gdiplus uses gdi32 to do all this (via SetMapMode, SetViewportExtEx,
308 * SetWindowExtEx, SetWorldTransform, etc.) but we cannot because we are using
309 * gdi to draw, and these functions would irreparably mess with line widths.
311 static void transform_and_round_points(GpGraphics *graphics, POINT *pti,
312 GpPointF *ptf, INT count)
314 REAL scale_x, scale_y;
315 GpMatrix matrix;
316 int i;
318 scale_x = units_to_pixels(1.0, graphics->unit, graphics->xres);
319 scale_y = units_to_pixels(1.0, graphics->unit, graphics->yres);
321 /* apply page scale */
322 if(graphics->unit != UnitDisplay)
324 scale_x *= graphics->scale;
325 scale_y *= graphics->scale;
328 matrix = graphics->worldtrans;
329 GdipScaleMatrix(&matrix, scale_x, scale_y, MatrixOrderAppend);
330 GdipTransformMatrixPoints(&matrix, ptf, count);
332 for(i = 0; i < count; i++){
333 pti[i].x = gdip_round(ptf[i].X);
334 pti[i].y = gdip_round(ptf[i].Y);
338 static void gdi_alpha_blend(GpGraphics *graphics, INT dst_x, INT dst_y, INT dst_width, INT dst_height,
339 HDC hdc, INT src_x, INT src_y, INT src_width, INT src_height)
341 if (GetDeviceCaps(graphics->hdc, SHADEBLENDCAPS) == SB_NONE)
343 TRACE("alpha blending not supported by device, fallback to StretchBlt\n");
345 StretchBlt(graphics->hdc, dst_x, dst_y, dst_width, dst_height,
346 hdc, src_x, src_y, src_width, src_height, SRCCOPY);
348 else
350 BLENDFUNCTION bf;
352 bf.BlendOp = AC_SRC_OVER;
353 bf.BlendFlags = 0;
354 bf.SourceConstantAlpha = 255;
355 bf.AlphaFormat = AC_SRC_ALPHA;
357 GdiAlphaBlend(graphics->hdc, dst_x, dst_y, dst_width, dst_height,
358 hdc, src_x, src_y, src_width, src_height, bf);
362 static GpStatus get_clip_hrgn(GpGraphics *graphics, HRGN *hrgn)
364 return GdipGetRegionHRgn(graphics->clip, graphics, hrgn);
367 /* Draw non-premultiplied ARGB data to the given graphics object */
368 static GpStatus alpha_blend_bmp_pixels(GpGraphics *graphics, INT dst_x, INT dst_y,
369 const BYTE *src, INT src_width, INT src_height, INT src_stride)
371 GpBitmap *dst_bitmap = (GpBitmap*)graphics->image;
372 INT x, y;
374 for (x=0; x<src_width; x++)
376 for (y=0; y<src_height; y++)
378 ARGB dst_color, src_color;
379 GdipBitmapGetPixel(dst_bitmap, x+dst_x, y+dst_y, &dst_color);
380 src_color = ((ARGB*)(src + src_stride * y))[x];
381 GdipBitmapSetPixel(dst_bitmap, x+dst_x, y+dst_y, color_over(dst_color, src_color));
385 return Ok;
388 static GpStatus alpha_blend_hdc_pixels(GpGraphics *graphics, INT dst_x, INT dst_y,
389 const BYTE *src, INT src_width, INT src_height, INT src_stride)
391 HDC hdc;
392 HBITMAP hbitmap;
393 BITMAPINFOHEADER bih;
394 BYTE *temp_bits;
396 hdc = CreateCompatibleDC(0);
398 bih.biSize = sizeof(BITMAPINFOHEADER);
399 bih.biWidth = src_width;
400 bih.biHeight = -src_height;
401 bih.biPlanes = 1;
402 bih.biBitCount = 32;
403 bih.biCompression = BI_RGB;
404 bih.biSizeImage = 0;
405 bih.biXPelsPerMeter = 0;
406 bih.biYPelsPerMeter = 0;
407 bih.biClrUsed = 0;
408 bih.biClrImportant = 0;
410 hbitmap = CreateDIBSection(hdc, (BITMAPINFO*)&bih, DIB_RGB_COLORS,
411 (void**)&temp_bits, NULL, 0);
413 convert_32bppARGB_to_32bppPARGB(src_width, src_height, temp_bits,
414 4 * src_width, src, src_stride);
416 SelectObject(hdc, hbitmap);
417 gdi_alpha_blend(graphics, dst_x, dst_y, src_width, src_height,
418 hdc, 0, 0, src_width, src_height);
419 DeleteDC(hdc);
420 DeleteObject(hbitmap);
422 return Ok;
425 static GpStatus alpha_blend_pixels_hrgn(GpGraphics *graphics, INT dst_x, INT dst_y,
426 const BYTE *src, INT src_width, INT src_height, INT src_stride, HRGN hregion)
428 GpStatus stat=Ok;
430 if (graphics->image && graphics->image->type == ImageTypeBitmap)
432 int i, size;
433 RGNDATA *rgndata;
434 RECT *rects;
435 HRGN hrgn, visible_rgn;
437 hrgn = CreateRectRgn(dst_x, dst_y, dst_x + src_width, dst_y + src_height);
438 if (!hrgn)
439 return OutOfMemory;
441 stat = get_clip_hrgn(graphics, &visible_rgn);
442 if (stat != Ok)
444 DeleteObject(hrgn);
445 return stat;
448 if (visible_rgn)
450 CombineRgn(hrgn, hrgn, visible_rgn, RGN_AND);
451 DeleteObject(visible_rgn);
454 if (hregion)
455 CombineRgn(hrgn, hrgn, hregion, RGN_AND);
457 size = GetRegionData(hrgn, 0, NULL);
459 rgndata = GdipAlloc(size);
460 if (!rgndata)
462 DeleteObject(hrgn);
463 return OutOfMemory;
466 GetRegionData(hrgn, size, rgndata);
468 rects = (RECT*)&rgndata->Buffer;
470 for (i=0; stat == Ok && i<rgndata->rdh.nCount; i++)
472 stat = alpha_blend_bmp_pixels(graphics, rects[i].left, rects[i].top,
473 &src[(rects[i].left - dst_x) * 4 + (rects[i].top - dst_y) * src_stride],
474 rects[i].right - rects[i].left, rects[i].bottom - rects[i].top,
475 src_stride);
478 GdipFree(rgndata);
480 DeleteObject(hrgn);
482 return stat;
484 else if (graphics->image && graphics->image->type == ImageTypeMetafile)
486 ERR("This should not be used for metafiles; fix caller\n");
487 return NotImplemented;
489 else
491 HRGN hrgn;
492 int save;
494 stat = get_clip_hrgn(graphics, &hrgn);
496 if (stat != Ok)
497 return stat;
499 save = SaveDC(graphics->hdc);
501 if (hrgn)
502 ExtSelectClipRgn(graphics->hdc, hrgn, RGN_AND);
504 if (hregion)
505 ExtSelectClipRgn(graphics->hdc, hregion, RGN_AND);
507 stat = alpha_blend_hdc_pixels(graphics, dst_x, dst_y, src, src_width,
508 src_height, src_stride);
510 RestoreDC(graphics->hdc, save);
512 DeleteObject(hrgn);
514 return stat;
518 static GpStatus alpha_blend_pixels(GpGraphics *graphics, INT dst_x, INT dst_y,
519 const BYTE *src, INT src_width, INT src_height, INT src_stride)
521 return alpha_blend_pixels_hrgn(graphics, dst_x, dst_y, src, src_width, src_height, src_stride, NULL);
524 static ARGB blend_colors(ARGB start, ARGB end, REAL position)
526 ARGB result=0;
527 ARGB i;
528 INT a1, a2, a3;
530 a1 = (start >> 24) & 0xff;
531 a2 = (end >> 24) & 0xff;
533 a3 = (int)(a1*(1.0f - position)+a2*(position));
535 result |= a3 << 24;
537 for (i=0xff; i<=0xff0000; i = i << 8)
538 result |= (int)((start&i)*(1.0f - position)+(end&i)*(position))&i;
539 return result;
542 static ARGB blend_line_gradient(GpLineGradient* brush, REAL position)
544 REAL blendfac;
546 /* clamp to between 0.0 and 1.0, using the wrap mode */
547 if (brush->wrap == WrapModeTile)
549 position = fmodf(position, 1.0f);
550 if (position < 0.0f) position += 1.0f;
552 else /* WrapModeFlip* */
554 position = fmodf(position, 2.0f);
555 if (position < 0.0f) position += 2.0f;
556 if (position > 1.0f) position = 2.0f - position;
559 if (brush->blendcount == 1)
560 blendfac = position;
561 else
563 int i=1;
564 REAL left_blendpos, left_blendfac, right_blendpos, right_blendfac;
565 REAL range;
567 /* locate the blend positions surrounding this position */
568 while (position > brush->blendpos[i])
569 i++;
571 /* interpolate between the blend positions */
572 left_blendpos = brush->blendpos[i-1];
573 left_blendfac = brush->blendfac[i-1];
574 right_blendpos = brush->blendpos[i];
575 right_blendfac = brush->blendfac[i];
576 range = right_blendpos - left_blendpos;
577 blendfac = (left_blendfac * (right_blendpos - position) +
578 right_blendfac * (position - left_blendpos)) / range;
581 if (brush->pblendcount == 0)
582 return blend_colors(brush->startcolor, brush->endcolor, blendfac);
583 else
585 int i=1;
586 ARGB left_blendcolor, right_blendcolor;
587 REAL left_blendpos, right_blendpos;
589 /* locate the blend colors surrounding this position */
590 while (blendfac > brush->pblendpos[i])
591 i++;
593 /* interpolate between the blend colors */
594 left_blendpos = brush->pblendpos[i-1];
595 left_blendcolor = brush->pblendcolor[i-1];
596 right_blendpos = brush->pblendpos[i];
597 right_blendcolor = brush->pblendcolor[i];
598 blendfac = (blendfac - left_blendpos) / (right_blendpos - left_blendpos);
599 return blend_colors(left_blendcolor, right_blendcolor, blendfac);
603 static ARGB transform_color(ARGB color, const ColorMatrix *matrix)
605 REAL val[5], res[4];
606 int i, j;
607 unsigned char a, r, g, b;
609 val[0] = ((color >> 16) & 0xff) / 255.0; /* red */
610 val[1] = ((color >> 8) & 0xff) / 255.0; /* green */
611 val[2] = (color & 0xff) / 255.0; /* blue */
612 val[3] = ((color >> 24) & 0xff) / 255.0; /* alpha */
613 val[4] = 1.0; /* translation */
615 for (i=0; i<4; i++)
617 res[i] = 0.0;
619 for (j=0; j<5; j++)
620 res[i] += matrix->m[j][i] * val[j];
623 a = min(max(floorf(res[3]*255.0), 0.0), 255.0);
624 r = min(max(floorf(res[0]*255.0), 0.0), 255.0);
625 g = min(max(floorf(res[1]*255.0), 0.0), 255.0);
626 b = min(max(floorf(res[2]*255.0), 0.0), 255.0);
628 return (a << 24) | (r << 16) | (g << 8) | b;
631 static int color_is_gray(ARGB color)
633 unsigned char r, g, b;
635 r = (color >> 16) & 0xff;
636 g = (color >> 8) & 0xff;
637 b = color & 0xff;
639 return (r == g) && (g == b);
642 static void apply_image_attributes(const GpImageAttributes *attributes, LPBYTE data,
643 UINT width, UINT height, INT stride, ColorAdjustType type)
645 UINT x, y, i;
647 if (attributes->colorkeys[type].enabled ||
648 attributes->colorkeys[ColorAdjustTypeDefault].enabled)
650 const struct color_key *key;
651 BYTE min_blue, min_green, min_red;
652 BYTE max_blue, max_green, max_red;
654 if (attributes->colorkeys[type].enabled)
655 key = &attributes->colorkeys[type];
656 else
657 key = &attributes->colorkeys[ColorAdjustTypeDefault];
659 min_blue = key->low&0xff;
660 min_green = (key->low>>8)&0xff;
661 min_red = (key->low>>16)&0xff;
663 max_blue = key->high&0xff;
664 max_green = (key->high>>8)&0xff;
665 max_red = (key->high>>16)&0xff;
667 for (x=0; x<width; x++)
668 for (y=0; y<height; y++)
670 ARGB *src_color;
671 BYTE blue, green, red;
672 src_color = (ARGB*)(data + stride * y + sizeof(ARGB) * x);
673 blue = *src_color&0xff;
674 green = (*src_color>>8)&0xff;
675 red = (*src_color>>16)&0xff;
676 if (blue >= min_blue && green >= min_green && red >= min_red &&
677 blue <= max_blue && green <= max_green && red <= max_red)
678 *src_color = 0x00000000;
682 if (attributes->colorremaptables[type].enabled ||
683 attributes->colorremaptables[ColorAdjustTypeDefault].enabled)
685 const struct color_remap_table *table;
687 if (attributes->colorremaptables[type].enabled)
688 table = &attributes->colorremaptables[type];
689 else
690 table = &attributes->colorremaptables[ColorAdjustTypeDefault];
692 for (x=0; x<width; x++)
693 for (y=0; y<height; y++)
695 ARGB *src_color;
696 src_color = (ARGB*)(data + stride * y + sizeof(ARGB) * x);
697 for (i=0; i<table->mapsize; i++)
699 if (*src_color == table->colormap[i].oldColor.Argb)
701 *src_color = table->colormap[i].newColor.Argb;
702 break;
708 if (attributes->colormatrices[type].enabled ||
709 attributes->colormatrices[ColorAdjustTypeDefault].enabled)
711 const struct color_matrix *colormatrices;
713 if (attributes->colormatrices[type].enabled)
714 colormatrices = &attributes->colormatrices[type];
715 else
716 colormatrices = &attributes->colormatrices[ColorAdjustTypeDefault];
718 for (x=0; x<width; x++)
719 for (y=0; y<height; y++)
721 ARGB *src_color;
722 src_color = (ARGB*)(data + stride * y + sizeof(ARGB) * x);
724 if (colormatrices->flags == ColorMatrixFlagsDefault ||
725 !color_is_gray(*src_color))
727 *src_color = transform_color(*src_color, &colormatrices->colormatrix);
729 else if (colormatrices->flags == ColorMatrixFlagsAltGray)
731 *src_color = transform_color(*src_color, &colormatrices->graymatrix);
736 if (attributes->gamma_enabled[type] ||
737 attributes->gamma_enabled[ColorAdjustTypeDefault])
739 REAL gamma;
741 if (attributes->gamma_enabled[type])
742 gamma = attributes->gamma[type];
743 else
744 gamma = attributes->gamma[ColorAdjustTypeDefault];
746 for (x=0; x<width; x++)
747 for (y=0; y<height; y++)
749 ARGB *src_color;
750 BYTE blue, green, red;
751 src_color = (ARGB*)(data + stride * y + sizeof(ARGB) * x);
753 blue = *src_color&0xff;
754 green = (*src_color>>8)&0xff;
755 red = (*src_color>>16)&0xff;
757 /* FIXME: We should probably use a table for this. */
758 blue = floorf(powf(blue / 255.0, gamma) * 255.0);
759 green = floorf(powf(green / 255.0, gamma) * 255.0);
760 red = floorf(powf(red / 255.0, gamma) * 255.0);
762 *src_color = (*src_color & 0xff000000) | (red << 16) | (green << 8) | blue;
767 /* Given a bitmap and its source rectangle, find the smallest rectangle in the
768 * bitmap that contains all the pixels we may need to draw it. */
769 static void get_bitmap_sample_size(InterpolationMode interpolation, WrapMode wrap,
770 GpBitmap* bitmap, REAL srcx, REAL srcy, REAL srcwidth, REAL srcheight,
771 GpRect *rect)
773 INT left, top, right, bottom;
775 switch (interpolation)
777 case InterpolationModeHighQualityBilinear:
778 case InterpolationModeHighQualityBicubic:
779 /* FIXME: Include a greater range for the prefilter? */
780 case InterpolationModeBicubic:
781 case InterpolationModeBilinear:
782 left = (INT)(floorf(srcx));
783 top = (INT)(floorf(srcy));
784 right = (INT)(ceilf(srcx+srcwidth));
785 bottom = (INT)(ceilf(srcy+srcheight));
786 break;
787 case InterpolationModeNearestNeighbor:
788 default:
789 left = gdip_round(srcx);
790 top = gdip_round(srcy);
791 right = gdip_round(srcx+srcwidth);
792 bottom = gdip_round(srcy+srcheight);
793 break;
796 if (wrap == WrapModeClamp)
798 if (left < 0)
799 left = 0;
800 if (top < 0)
801 top = 0;
802 if (right >= bitmap->width)
803 right = bitmap->width-1;
804 if (bottom >= bitmap->height)
805 bottom = bitmap->height-1;
807 else
809 /* In some cases we can make the rectangle smaller here, but the logic
810 * is hard to get right, and tiling suggests we're likely to use the
811 * entire source image. */
812 if (left < 0 || right >= bitmap->width)
814 left = 0;
815 right = bitmap->width-1;
818 if (top < 0 || bottom >= bitmap->height)
820 top = 0;
821 bottom = bitmap->height-1;
825 rect->X = left;
826 rect->Y = top;
827 rect->Width = right - left + 1;
828 rect->Height = bottom - top + 1;
831 static ARGB sample_bitmap_pixel(GDIPCONST GpRect *src_rect, LPBYTE bits, UINT width,
832 UINT height, INT x, INT y, GDIPCONST GpImageAttributes *attributes)
834 if (attributes->wrap == WrapModeClamp)
836 if (x < 0 || y < 0 || x >= width || y >= height)
837 return attributes->outside_color;
839 else
841 /* Tiling. Make sure co-ordinates are positive as it simplifies the math. */
842 if (x < 0)
843 x = width*2 + x % (width * 2);
844 if (y < 0)
845 y = height*2 + y % (height * 2);
847 if ((attributes->wrap & 1) == 1)
849 /* Flip X */
850 if ((x / width) % 2 == 0)
851 x = x % width;
852 else
853 x = width - 1 - x % width;
855 else
856 x = x % width;
858 if ((attributes->wrap & 2) == 2)
860 /* Flip Y */
861 if ((y / height) % 2 == 0)
862 y = y % height;
863 else
864 y = height - 1 - y % height;
866 else
867 y = y % height;
870 if (x < src_rect->X || y < src_rect->Y || x >= src_rect->X + src_rect->Width || y >= src_rect->Y + src_rect->Height)
872 ERR("out of range pixel requested\n");
873 return 0xffcd0084;
876 return ((DWORD*)(bits))[(x - src_rect->X) + (y - src_rect->Y) * src_rect->Width];
879 static ARGB resample_bitmap_pixel(GDIPCONST GpRect *src_rect, LPBYTE bits, UINT width,
880 UINT height, GpPointF *point, GDIPCONST GpImageAttributes *attributes,
881 InterpolationMode interpolation, PixelOffsetMode offset_mode)
883 static int fixme;
885 switch (interpolation)
887 default:
888 if (!fixme++)
889 FIXME("Unimplemented interpolation %i\n", interpolation);
890 /* fall-through */
891 case InterpolationModeBilinear:
893 REAL leftxf, topyf;
894 INT leftx, rightx, topy, bottomy;
895 ARGB topleft, topright, bottomleft, bottomright;
896 ARGB top, bottom;
897 float x_offset;
899 leftxf = floorf(point->X);
900 leftx = (INT)leftxf;
901 rightx = (INT)ceilf(point->X);
902 topyf = floorf(point->Y);
903 topy = (INT)topyf;
904 bottomy = (INT)ceilf(point->Y);
906 if (leftx == rightx && topy == bottomy)
907 return sample_bitmap_pixel(src_rect, bits, width, height,
908 leftx, topy, attributes);
910 topleft = sample_bitmap_pixel(src_rect, bits, width, height,
911 leftx, topy, attributes);
912 topright = sample_bitmap_pixel(src_rect, bits, width, height,
913 rightx, topy, attributes);
914 bottomleft = sample_bitmap_pixel(src_rect, bits, width, height,
915 leftx, bottomy, attributes);
916 bottomright = sample_bitmap_pixel(src_rect, bits, width, height,
917 rightx, bottomy, attributes);
919 x_offset = point->X - leftxf;
920 top = blend_colors(topleft, topright, x_offset);
921 bottom = blend_colors(bottomleft, bottomright, x_offset);
923 return blend_colors(top, bottom, point->Y - topyf);
925 case InterpolationModeNearestNeighbor:
927 FLOAT pixel_offset;
928 switch (offset_mode)
930 default:
931 case PixelOffsetModeNone:
932 case PixelOffsetModeHighSpeed:
933 pixel_offset = 0.5;
934 break;
936 case PixelOffsetModeHalf:
937 case PixelOffsetModeHighQuality:
938 pixel_offset = 0.0;
939 break;
941 return sample_bitmap_pixel(src_rect, bits, width, height,
942 floorf(point->X + pixel_offset), floorf(point->Y + pixel_offset), attributes);
948 static REAL intersect_line_scanline(const GpPointF *p1, const GpPointF *p2, REAL y)
950 return (p1->X - p2->X) * (p2->Y - y) / (p2->Y - p1->Y) + p2->X;
953 static INT brush_can_fill_path(GpBrush *brush)
955 switch (brush->bt)
957 case BrushTypeSolidColor:
958 return 1;
959 case BrushTypeHatchFill:
961 GpHatch *hatch = (GpHatch*)brush;
962 return ((hatch->forecol & 0xff000000) == 0xff000000) &&
963 ((hatch->backcol & 0xff000000) == 0xff000000);
965 case BrushTypeLinearGradient:
966 case BrushTypeTextureFill:
967 /* Gdi32 isn't much help with these, so we should use brush_fill_pixels instead. */
968 default:
969 return 0;
973 static void brush_fill_path(GpGraphics *graphics, GpBrush* brush)
975 switch (brush->bt)
977 case BrushTypeSolidColor:
979 GpSolidFill *fill = (GpSolidFill*)brush;
980 HBITMAP bmp = ARGB2BMP(fill->color);
982 if (bmp)
984 RECT rc;
985 /* partially transparent fill */
987 SelectClipPath(graphics->hdc, RGN_AND);
988 if (GetClipBox(graphics->hdc, &rc) != NULLREGION)
990 HDC hdc = CreateCompatibleDC(NULL);
992 if (!hdc) break;
994 SelectObject(hdc, bmp);
995 gdi_alpha_blend(graphics, rc.left, rc.top, rc.right - rc.left, rc.bottom - rc.top,
996 hdc, 0, 0, 1, 1);
997 DeleteDC(hdc);
1000 DeleteObject(bmp);
1001 break;
1003 /* else fall through */
1005 default:
1007 HBRUSH gdibrush, old_brush;
1009 gdibrush = create_gdi_brush(brush);
1010 if (!gdibrush) return;
1012 old_brush = SelectObject(graphics->hdc, gdibrush);
1013 FillPath(graphics->hdc);
1014 SelectObject(graphics->hdc, old_brush);
1015 DeleteObject(gdibrush);
1016 break;
1021 static INT brush_can_fill_pixels(GpBrush *brush)
1023 switch (brush->bt)
1025 case BrushTypeSolidColor:
1026 case BrushTypeHatchFill:
1027 case BrushTypeLinearGradient:
1028 case BrushTypeTextureFill:
1029 case BrushTypePathGradient:
1030 return 1;
1031 default:
1032 return 0;
1036 static GpStatus brush_fill_pixels(GpGraphics *graphics, GpBrush *brush,
1037 DWORD *argb_pixels, GpRect *fill_area, UINT cdwStride)
1039 switch (brush->bt)
1041 case BrushTypeSolidColor:
1043 int x, y;
1044 GpSolidFill *fill = (GpSolidFill*)brush;
1045 for (x=0; x<fill_area->Width; x++)
1046 for (y=0; y<fill_area->Height; y++)
1047 argb_pixels[x + y*cdwStride] = fill->color;
1048 return Ok;
1050 case BrushTypeHatchFill:
1052 int x, y;
1053 GpHatch *fill = (GpHatch*)brush;
1054 const char *hatch_data;
1056 if (get_hatch_data(fill->hatchstyle, &hatch_data) != Ok)
1057 return NotImplemented;
1059 for (x=0; x<fill_area->Width; x++)
1060 for (y=0; y<fill_area->Height; y++)
1062 int hx, hy;
1064 /* FIXME: Account for the rendering origin */
1065 hx = (x + fill_area->X) % 8;
1066 hy = (y + fill_area->Y) % 8;
1068 if ((hatch_data[7-hy] & (0x80 >> hx)) != 0)
1069 argb_pixels[x + y*cdwStride] = fill->forecol;
1070 else
1071 argb_pixels[x + y*cdwStride] = fill->backcol;
1074 return Ok;
1076 case BrushTypeLinearGradient:
1078 GpLineGradient *fill = (GpLineGradient*)brush;
1079 GpPointF draw_points[3], line_points[3];
1080 GpStatus stat;
1081 static const GpRectF box_1 = { 0.0, 0.0, 1.0, 1.0 };
1082 GpMatrix *world_to_gradient; /* FIXME: Store this in the brush? */
1083 int x, y;
1085 draw_points[0].X = fill_area->X;
1086 draw_points[0].Y = fill_area->Y;
1087 draw_points[1].X = fill_area->X+1;
1088 draw_points[1].Y = fill_area->Y;
1089 draw_points[2].X = fill_area->X;
1090 draw_points[2].Y = fill_area->Y+1;
1092 /* Transform the points to a co-ordinate space where X is the point's
1093 * position in the gradient, 0.0 being the start point and 1.0 the
1094 * end point. */
1095 stat = GdipTransformPoints(graphics, CoordinateSpaceWorld,
1096 CoordinateSpaceDevice, draw_points, 3);
1098 if (stat == Ok)
1100 line_points[0] = fill->startpoint;
1101 line_points[1] = fill->endpoint;
1102 line_points[2].X = fill->startpoint.X + (fill->startpoint.Y - fill->endpoint.Y);
1103 line_points[2].Y = fill->startpoint.Y + (fill->endpoint.X - fill->startpoint.X);
1105 stat = GdipCreateMatrix3(&box_1, line_points, &world_to_gradient);
1108 if (stat == Ok)
1110 stat = GdipInvertMatrix(world_to_gradient);
1112 if (stat == Ok)
1113 stat = GdipTransformMatrixPoints(world_to_gradient, draw_points, 3);
1115 GdipDeleteMatrix(world_to_gradient);
1118 if (stat == Ok)
1120 REAL x_delta = draw_points[1].X - draw_points[0].X;
1121 REAL y_delta = draw_points[2].X - draw_points[0].X;
1123 for (y=0; y<fill_area->Height; y++)
1125 for (x=0; x<fill_area->Width; x++)
1127 REAL pos = draw_points[0].X + x * x_delta + y * y_delta;
1129 argb_pixels[x + y*cdwStride] = blend_line_gradient(fill, pos);
1134 return stat;
1136 case BrushTypeTextureFill:
1138 GpTexture *fill = (GpTexture*)brush;
1139 GpPointF draw_points[3];
1140 GpStatus stat;
1141 int x, y;
1142 GpBitmap *bitmap;
1143 int src_stride;
1144 GpRect src_area;
1146 if (fill->image->type != ImageTypeBitmap)
1148 FIXME("metafile texture brushes not implemented\n");
1149 return NotImplemented;
1152 bitmap = (GpBitmap*)fill->image;
1153 src_stride = sizeof(ARGB) * bitmap->width;
1155 src_area.X = src_area.Y = 0;
1156 src_area.Width = bitmap->width;
1157 src_area.Height = bitmap->height;
1159 draw_points[0].X = fill_area->X;
1160 draw_points[0].Y = fill_area->Y;
1161 draw_points[1].X = fill_area->X+1;
1162 draw_points[1].Y = fill_area->Y;
1163 draw_points[2].X = fill_area->X;
1164 draw_points[2].Y = fill_area->Y+1;
1166 /* Transform the points to the co-ordinate space of the bitmap. */
1167 stat = GdipTransformPoints(graphics, CoordinateSpaceWorld,
1168 CoordinateSpaceDevice, draw_points, 3);
1170 if (stat == Ok)
1172 GpMatrix world_to_texture = fill->transform;
1174 stat = GdipInvertMatrix(&world_to_texture);
1175 if (stat == Ok)
1176 stat = GdipTransformMatrixPoints(&world_to_texture, draw_points, 3);
1179 if (stat == Ok && !fill->bitmap_bits)
1181 BitmapData lockeddata;
1183 fill->bitmap_bits = GdipAlloc(sizeof(ARGB) * bitmap->width * bitmap->height);
1184 if (!fill->bitmap_bits)
1185 stat = OutOfMemory;
1187 if (stat == Ok)
1189 lockeddata.Width = bitmap->width;
1190 lockeddata.Height = bitmap->height;
1191 lockeddata.Stride = src_stride;
1192 lockeddata.PixelFormat = PixelFormat32bppARGB;
1193 lockeddata.Scan0 = fill->bitmap_bits;
1195 stat = GdipBitmapLockBits(bitmap, &src_area, ImageLockModeRead|ImageLockModeUserInputBuf,
1196 PixelFormat32bppARGB, &lockeddata);
1199 if (stat == Ok)
1200 stat = GdipBitmapUnlockBits(bitmap, &lockeddata);
1202 if (stat == Ok)
1203 apply_image_attributes(fill->imageattributes, fill->bitmap_bits,
1204 bitmap->width, bitmap->height,
1205 src_stride, ColorAdjustTypeBitmap);
1207 if (stat != Ok)
1209 GdipFree(fill->bitmap_bits);
1210 fill->bitmap_bits = NULL;
1214 if (stat == Ok)
1216 REAL x_dx = draw_points[1].X - draw_points[0].X;
1217 REAL x_dy = draw_points[1].Y - draw_points[0].Y;
1218 REAL y_dx = draw_points[2].X - draw_points[0].X;
1219 REAL y_dy = draw_points[2].Y - draw_points[0].Y;
1221 for (y=0; y<fill_area->Height; y++)
1223 for (x=0; x<fill_area->Width; x++)
1225 GpPointF point;
1226 point.X = draw_points[0].X + x * x_dx + y * y_dx;
1227 point.Y = draw_points[0].Y + y * x_dy + y * y_dy;
1229 argb_pixels[x + y*cdwStride] = resample_bitmap_pixel(
1230 &src_area, fill->bitmap_bits, bitmap->width, bitmap->height,
1231 &point, fill->imageattributes, graphics->interpolation,
1232 graphics->pixeloffset);
1237 return stat;
1239 case BrushTypePathGradient:
1241 GpPathGradient *fill = (GpPathGradient*)brush;
1242 GpPath *flat_path;
1243 GpMatrix world_to_device;
1244 GpStatus stat;
1245 int i, figure_start=0;
1246 GpPointF start_point, end_point, center_point;
1247 BYTE type;
1248 REAL min_yf, max_yf, line1_xf, line2_xf;
1249 INT min_y, max_y, min_x, max_x;
1250 INT x, y;
1251 ARGB outer_color;
1252 static int transform_fixme_once;
1254 if (fill->focus.X != 0.0 || fill->focus.Y != 0.0)
1256 static int once;
1257 if (!once++)
1258 FIXME("path gradient focus not implemented\n");
1261 if (fill->gamma)
1263 static int once;
1264 if (!once++)
1265 FIXME("path gradient gamma correction not implemented\n");
1268 if (fill->blendcount)
1270 static int once;
1271 if (!once++)
1272 FIXME("path gradient blend not implemented\n");
1275 if (fill->pblendcount)
1277 static int once;
1278 if (!once++)
1279 FIXME("path gradient preset blend not implemented\n");
1282 if (!transform_fixme_once)
1284 BOOL is_identity=TRUE;
1285 GdipIsMatrixIdentity(&fill->transform, &is_identity);
1286 if (!is_identity)
1288 FIXME("path gradient transform not implemented\n");
1289 transform_fixme_once = 1;
1293 stat = GdipClonePath(fill->path, &flat_path);
1295 if (stat != Ok)
1296 return stat;
1298 stat = get_graphics_transform(graphics, CoordinateSpaceDevice,
1299 CoordinateSpaceWorld, &world_to_device);
1300 if (stat == Ok)
1302 stat = GdipTransformPath(flat_path, &world_to_device);
1304 if (stat == Ok)
1306 center_point = fill->center;
1307 stat = GdipTransformMatrixPoints(&world_to_device, &center_point, 1);
1310 if (stat == Ok)
1311 stat = GdipFlattenPath(flat_path, NULL, 0.5);
1314 if (stat != Ok)
1316 GdipDeletePath(flat_path);
1317 return stat;
1320 for (i=0; i<flat_path->pathdata.Count; i++)
1322 int start_center_line=0, end_center_line=0;
1323 int seen_start=0, seen_end=0, seen_center=0;
1324 REAL center_distance;
1325 ARGB start_color, end_color;
1326 REAL dy, dx;
1328 type = flat_path->pathdata.Types[i];
1330 if ((type&PathPointTypePathTypeMask) == PathPointTypeStart)
1331 figure_start = i;
1333 start_point = flat_path->pathdata.Points[i];
1335 start_color = fill->surroundcolors[min(i, fill->surroundcolorcount-1)];
1337 if ((type&PathPointTypeCloseSubpath) == PathPointTypeCloseSubpath || i+1 >= flat_path->pathdata.Count)
1339 end_point = flat_path->pathdata.Points[figure_start];
1340 end_color = fill->surroundcolors[min(figure_start, fill->surroundcolorcount-1)];
1342 else if ((flat_path->pathdata.Types[i+1] & PathPointTypePathTypeMask) == PathPointTypeLine)
1344 end_point = flat_path->pathdata.Points[i+1];
1345 end_color = fill->surroundcolors[min(i+1, fill->surroundcolorcount-1)];
1347 else
1348 continue;
1350 outer_color = start_color;
1352 min_yf = center_point.Y;
1353 if (min_yf > start_point.Y) min_yf = start_point.Y;
1354 if (min_yf > end_point.Y) min_yf = end_point.Y;
1356 if (min_yf < fill_area->Y)
1357 min_y = fill_area->Y;
1358 else
1359 min_y = (INT)ceil(min_yf);
1361 max_yf = center_point.Y;
1362 if (max_yf < start_point.Y) max_yf = start_point.Y;
1363 if (max_yf < end_point.Y) max_yf = end_point.Y;
1365 if (max_yf > fill_area->Y + fill_area->Height)
1366 max_y = fill_area->Y + fill_area->Height;
1367 else
1368 max_y = (INT)ceil(max_yf);
1370 dy = end_point.Y - start_point.Y;
1371 dx = end_point.X - start_point.X;
1373 /* This is proportional to the distance from start-end line to center point. */
1374 center_distance = dy * (start_point.X - center_point.X) +
1375 dx * (center_point.Y - start_point.Y);
1377 for (y=min_y; y<max_y; y++)
1379 REAL yf = (REAL)y;
1381 if (!seen_start && yf >= start_point.Y)
1383 seen_start = 1;
1384 start_center_line ^= 1;
1386 if (!seen_end && yf >= end_point.Y)
1388 seen_end = 1;
1389 end_center_line ^= 1;
1391 if (!seen_center && yf >= center_point.Y)
1393 seen_center = 1;
1394 start_center_line ^= 1;
1395 end_center_line ^= 1;
1398 if (start_center_line)
1399 line1_xf = intersect_line_scanline(&start_point, &center_point, yf);
1400 else
1401 line1_xf = intersect_line_scanline(&start_point, &end_point, yf);
1403 if (end_center_line)
1404 line2_xf = intersect_line_scanline(&end_point, &center_point, yf);
1405 else
1406 line2_xf = intersect_line_scanline(&start_point, &end_point, yf);
1408 if (line1_xf < line2_xf)
1410 min_x = (INT)ceil(line1_xf);
1411 max_x = (INT)ceil(line2_xf);
1413 else
1415 min_x = (INT)ceil(line2_xf);
1416 max_x = (INT)ceil(line1_xf);
1419 if (min_x < fill_area->X)
1420 min_x = fill_area->X;
1421 if (max_x > fill_area->X + fill_area->Width)
1422 max_x = fill_area->X + fill_area->Width;
1424 for (x=min_x; x<max_x; x++)
1426 REAL xf = (REAL)x;
1427 REAL distance;
1429 if (start_color != end_color)
1431 REAL blend_amount, pdy, pdx;
1432 pdy = yf - center_point.Y;
1433 pdx = xf - center_point.X;
1434 blend_amount = ( (center_point.Y - start_point.Y) * pdx + (start_point.X - center_point.X) * pdy ) / ( dy * pdx - dx * pdy );
1435 outer_color = blend_colors(start_color, end_color, blend_amount);
1438 distance = (end_point.Y - start_point.Y) * (start_point.X - xf) +
1439 (end_point.X - start_point.X) * (yf - start_point.Y);
1441 distance = distance / center_distance;
1443 argb_pixels[(x-fill_area->X) + (y-fill_area->Y)*cdwStride] =
1444 blend_colors(outer_color, fill->centercolor, distance);
1449 GdipDeletePath(flat_path);
1450 return stat;
1452 default:
1453 return NotImplemented;
1457 /* GdipDrawPie/GdipFillPie helper function */
1458 static void draw_pie(GpGraphics *graphics, REAL x, REAL y, REAL width,
1459 REAL height, REAL startAngle, REAL sweepAngle)
1461 GpPointF ptf[4];
1462 POINT pti[4];
1464 ptf[0].X = x;
1465 ptf[0].Y = y;
1466 ptf[1].X = x + width;
1467 ptf[1].Y = y + height;
1469 deg2xy(startAngle+sweepAngle, x + width / 2.0, y + width / 2.0, &ptf[2].X, &ptf[2].Y);
1470 deg2xy(startAngle, x + width / 2.0, y + width / 2.0, &ptf[3].X, &ptf[3].Y);
1472 transform_and_round_points(graphics, pti, ptf, 4);
1474 Pie(graphics->hdc, pti[0].x, pti[0].y, pti[1].x, pti[1].y, pti[2].x,
1475 pti[2].y, pti[3].x, pti[3].y);
1478 /* Draws the linecap the specified color and size on the hdc. The linecap is in
1479 * direction of the line from x1, y1 to x2, y2 and is anchored on x2, y2. Probably
1480 * should not be called on an hdc that has a path you care about. */
1481 static void draw_cap(GpGraphics *graphics, COLORREF color, GpLineCap cap, REAL size,
1482 const GpCustomLineCap *custom, REAL x1, REAL y1, REAL x2, REAL y2)
1484 HGDIOBJ oldbrush = NULL, oldpen = NULL;
1485 GpMatrix matrix;
1486 HBRUSH brush = NULL;
1487 HPEN pen = NULL;
1488 PointF ptf[4], *custptf = NULL;
1489 POINT pt[4], *custpt = NULL;
1490 BYTE *tp = NULL;
1491 REAL theta, dsmall, dbig, dx, dy = 0.0;
1492 INT i, count;
1493 LOGBRUSH lb;
1494 BOOL customstroke;
1496 if((x1 == x2) && (y1 == y2))
1497 return;
1499 theta = gdiplus_atan2(y2 - y1, x2 - x1);
1501 customstroke = (cap == LineCapCustom) && custom && (!custom->fill);
1502 if(!customstroke){
1503 brush = CreateSolidBrush(color);
1504 lb.lbStyle = BS_SOLID;
1505 lb.lbColor = color;
1506 lb.lbHatch = 0;
1507 pen = ExtCreatePen(PS_GEOMETRIC | PS_SOLID | PS_ENDCAP_FLAT |
1508 PS_JOIN_MITER, 1, &lb, 0,
1509 NULL);
1510 oldbrush = SelectObject(graphics->hdc, brush);
1511 oldpen = SelectObject(graphics->hdc, pen);
1514 switch(cap){
1515 case LineCapFlat:
1516 break;
1517 case LineCapSquare:
1518 case LineCapSquareAnchor:
1519 case LineCapDiamondAnchor:
1520 size = size * (cap & LineCapNoAnchor ? ANCHOR_WIDTH : 1.0) / 2.0;
1521 if(cap == LineCapDiamondAnchor){
1522 dsmall = cos(theta + M_PI_2) * size;
1523 dbig = sin(theta + M_PI_2) * size;
1525 else{
1526 dsmall = cos(theta + M_PI_4) * size;
1527 dbig = sin(theta + M_PI_4) * size;
1530 ptf[0].X = x2 - dsmall;
1531 ptf[1].X = x2 + dbig;
1533 ptf[0].Y = y2 - dbig;
1534 ptf[3].Y = y2 + dsmall;
1536 ptf[1].Y = y2 - dsmall;
1537 ptf[2].Y = y2 + dbig;
1539 ptf[3].X = x2 - dbig;
1540 ptf[2].X = x2 + dsmall;
1542 transform_and_round_points(graphics, pt, ptf, 4);
1543 Polygon(graphics->hdc, pt, 4);
1545 break;
1546 case LineCapArrowAnchor:
1547 size = size * 4.0 / sqrt(3.0);
1549 dx = cos(M_PI / 6.0 + theta) * size;
1550 dy = sin(M_PI / 6.0 + theta) * size;
1552 ptf[0].X = x2 - dx;
1553 ptf[0].Y = y2 - dy;
1555 dx = cos(- M_PI / 6.0 + theta) * size;
1556 dy = sin(- M_PI / 6.0 + theta) * size;
1558 ptf[1].X = x2 - dx;
1559 ptf[1].Y = y2 - dy;
1561 ptf[2].X = x2;
1562 ptf[2].Y = y2;
1564 transform_and_round_points(graphics, pt, ptf, 3);
1565 Polygon(graphics->hdc, pt, 3);
1567 break;
1568 case LineCapRoundAnchor:
1569 dx = dy = ANCHOR_WIDTH * size / 2.0;
1571 ptf[0].X = x2 - dx;
1572 ptf[0].Y = y2 - dy;
1573 ptf[1].X = x2 + dx;
1574 ptf[1].Y = y2 + dy;
1576 transform_and_round_points(graphics, pt, ptf, 2);
1577 Ellipse(graphics->hdc, pt[0].x, pt[0].y, pt[1].x, pt[1].y);
1579 break;
1580 case LineCapTriangle:
1581 size = size / 2.0;
1582 dx = cos(M_PI_2 + theta) * size;
1583 dy = sin(M_PI_2 + theta) * size;
1585 ptf[0].X = x2 - dx;
1586 ptf[0].Y = y2 - dy;
1587 ptf[1].X = x2 + dx;
1588 ptf[1].Y = y2 + dy;
1590 dx = cos(theta) * size;
1591 dy = sin(theta) * size;
1593 ptf[2].X = x2 + dx;
1594 ptf[2].Y = y2 + dy;
1596 transform_and_round_points(graphics, pt, ptf, 3);
1597 Polygon(graphics->hdc, pt, 3);
1599 break;
1600 case LineCapRound:
1601 dx = dy = size / 2.0;
1603 ptf[0].X = x2 - dx;
1604 ptf[0].Y = y2 - dy;
1605 ptf[1].X = x2 + dx;
1606 ptf[1].Y = y2 + dy;
1608 dx = -cos(M_PI_2 + theta) * size;
1609 dy = -sin(M_PI_2 + theta) * size;
1611 ptf[2].X = x2 - dx;
1612 ptf[2].Y = y2 - dy;
1613 ptf[3].X = x2 + dx;
1614 ptf[3].Y = y2 + dy;
1616 transform_and_round_points(graphics, pt, ptf, 4);
1617 Pie(graphics->hdc, pt[0].x, pt[0].y, pt[1].x, pt[1].y, pt[2].x,
1618 pt[2].y, pt[3].x, pt[3].y);
1620 break;
1621 case LineCapCustom:
1622 if(!custom)
1623 break;
1625 count = custom->pathdata.Count;
1626 custptf = GdipAlloc(count * sizeof(PointF));
1627 custpt = GdipAlloc(count * sizeof(POINT));
1628 tp = GdipAlloc(count);
1630 if(!custptf || !custpt || !tp)
1631 goto custend;
1633 memcpy(custptf, custom->pathdata.Points, count * sizeof(PointF));
1635 GdipSetMatrixElements(&matrix, 1.0, 0.0, 0.0, 1.0, 0.0, 0.0);
1636 GdipScaleMatrix(&matrix, size, size, MatrixOrderAppend);
1637 GdipRotateMatrix(&matrix, (180.0 / M_PI) * (theta - M_PI_2),
1638 MatrixOrderAppend);
1639 GdipTranslateMatrix(&matrix, x2, y2, MatrixOrderAppend);
1640 GdipTransformMatrixPoints(&matrix, custptf, count);
1642 transform_and_round_points(graphics, custpt, custptf, count);
1644 for(i = 0; i < count; i++)
1645 tp[i] = convert_path_point_type(custom->pathdata.Types[i]);
1647 if(custom->fill){
1648 BeginPath(graphics->hdc);
1649 PolyDraw(graphics->hdc, custpt, tp, count);
1650 EndPath(graphics->hdc);
1651 StrokeAndFillPath(graphics->hdc);
1653 else
1654 PolyDraw(graphics->hdc, custpt, tp, count);
1656 custend:
1657 GdipFree(custptf);
1658 GdipFree(custpt);
1659 GdipFree(tp);
1660 break;
1661 default:
1662 break;
1665 if(!customstroke){
1666 SelectObject(graphics->hdc, oldbrush);
1667 SelectObject(graphics->hdc, oldpen);
1668 DeleteObject(brush);
1669 DeleteObject(pen);
1673 /* Shortens the line by the given percent by changing x2, y2.
1674 * If percent is > 1.0 then the line will change direction.
1675 * If percent is negative it can lengthen the line. */
1676 static void shorten_line_percent(REAL x1, REAL y1, REAL *x2, REAL *y2, REAL percent)
1678 REAL dist, theta, dx, dy;
1680 if((y1 == *y2) && (x1 == *x2))
1681 return;
1683 dist = sqrt((*x2 - x1) * (*x2 - x1) + (*y2 - y1) * (*y2 - y1)) * -percent;
1684 theta = gdiplus_atan2((*y2 - y1), (*x2 - x1));
1685 dx = cos(theta) * dist;
1686 dy = sin(theta) * dist;
1688 *x2 = *x2 + dx;
1689 *y2 = *y2 + dy;
1692 /* Shortens the line by the given amount by changing x2, y2.
1693 * If the amount is greater than the distance, the line will become length 0.
1694 * If the amount is negative, it can lengthen the line. */
1695 static void shorten_line_amt(REAL x1, REAL y1, REAL *x2, REAL *y2, REAL amt)
1697 REAL dx, dy, percent;
1699 dx = *x2 - x1;
1700 dy = *y2 - y1;
1701 if(dx == 0 && dy == 0)
1702 return;
1704 percent = amt / sqrt(dx * dx + dy * dy);
1705 if(percent >= 1.0){
1706 *x2 = x1;
1707 *y2 = y1;
1708 return;
1711 shorten_line_percent(x1, y1, x2, y2, percent);
1714 /* Draws lines between the given points, and if caps is true then draws an endcap
1715 * at the end of the last line. */
1716 static GpStatus draw_polyline(GpGraphics *graphics, GpPen *pen,
1717 GDIPCONST GpPointF * pt, INT count, BOOL caps)
1719 POINT *pti = NULL;
1720 GpPointF *ptcopy = NULL;
1721 GpStatus status = GenericError;
1723 if(!count)
1724 return Ok;
1726 pti = GdipAlloc(count * sizeof(POINT));
1727 ptcopy = GdipAlloc(count * sizeof(GpPointF));
1729 if(!pti || !ptcopy){
1730 status = OutOfMemory;
1731 goto end;
1734 memcpy(ptcopy, pt, count * sizeof(GpPointF));
1736 if(caps){
1737 if(pen->endcap == LineCapArrowAnchor)
1738 shorten_line_amt(ptcopy[count-2].X, ptcopy[count-2].Y,
1739 &ptcopy[count-1].X, &ptcopy[count-1].Y, pen->width);
1740 else if((pen->endcap == LineCapCustom) && pen->customend)
1741 shorten_line_amt(ptcopy[count-2].X, ptcopy[count-2].Y,
1742 &ptcopy[count-1].X, &ptcopy[count-1].Y,
1743 pen->customend->inset * pen->width);
1745 if(pen->startcap == LineCapArrowAnchor)
1746 shorten_line_amt(ptcopy[1].X, ptcopy[1].Y,
1747 &ptcopy[0].X, &ptcopy[0].Y, pen->width);
1748 else if((pen->startcap == LineCapCustom) && pen->customstart)
1749 shorten_line_amt(ptcopy[1].X, ptcopy[1].Y,
1750 &ptcopy[0].X, &ptcopy[0].Y,
1751 pen->customstart->inset * pen->width);
1753 draw_cap(graphics, get_gdi_brush_color(pen->brush), pen->endcap, pen->width, pen->customend,
1754 pt[count - 2].X, pt[count - 2].Y, pt[count - 1].X, pt[count - 1].Y);
1755 draw_cap(graphics, get_gdi_brush_color(pen->brush), pen->startcap, pen->width, pen->customstart,
1756 pt[1].X, pt[1].Y, pt[0].X, pt[0].Y);
1759 transform_and_round_points(graphics, pti, ptcopy, count);
1761 if(Polyline(graphics->hdc, pti, count))
1762 status = Ok;
1764 end:
1765 GdipFree(pti);
1766 GdipFree(ptcopy);
1768 return status;
1771 /* Conducts a linear search to find the bezier points that will back off
1772 * the endpoint of the curve by a distance of amt. Linear search works
1773 * better than binary in this case because there are multiple solutions,
1774 * and binary searches often find a bad one. I don't think this is what
1775 * Windows does but short of rendering the bezier without GDI's help it's
1776 * the best we can do. If rev then work from the start of the passed points
1777 * instead of the end. */
1778 static void shorten_bezier_amt(GpPointF * pt, REAL amt, BOOL rev)
1780 GpPointF origpt[4];
1781 REAL percent = 0.00, dx, dy, origx, origy, diff = -1.0;
1782 INT i, first = 0, second = 1, third = 2, fourth = 3;
1784 if(rev){
1785 first = 3;
1786 second = 2;
1787 third = 1;
1788 fourth = 0;
1791 origx = pt[fourth].X;
1792 origy = pt[fourth].Y;
1793 memcpy(origpt, pt, sizeof(GpPointF) * 4);
1795 for(i = 0; (i < MAX_ITERS) && (diff < amt); i++){
1796 /* reset bezier points to original values */
1797 memcpy(pt, origpt, sizeof(GpPointF) * 4);
1798 /* Perform magic on bezier points. Order is important here.*/
1799 shorten_line_percent(pt[third].X, pt[third].Y, &pt[fourth].X, &pt[fourth].Y, percent);
1800 shorten_line_percent(pt[second].X, pt[second].Y, &pt[third].X, &pt[third].Y, percent);
1801 shorten_line_percent(pt[third].X, pt[third].Y, &pt[fourth].X, &pt[fourth].Y, percent);
1802 shorten_line_percent(pt[first].X, pt[first].Y, &pt[second].X, &pt[second].Y, percent);
1803 shorten_line_percent(pt[second].X, pt[second].Y, &pt[third].X, &pt[third].Y, percent);
1804 shorten_line_percent(pt[third].X, pt[third].Y, &pt[fourth].X, &pt[fourth].Y, percent);
1806 dx = pt[fourth].X - origx;
1807 dy = pt[fourth].Y - origy;
1809 diff = sqrt(dx * dx + dy * dy);
1810 percent += 0.0005 * amt;
1814 /* Draws bezier curves between given points, and if caps is true then draws an
1815 * endcap at the end of the last line. */
1816 static GpStatus draw_polybezier(GpGraphics *graphics, GpPen *pen,
1817 GDIPCONST GpPointF * pt, INT count, BOOL caps)
1819 POINT *pti;
1820 GpPointF *ptcopy;
1821 GpStatus status = GenericError;
1823 if(!count)
1824 return Ok;
1826 pti = GdipAlloc(count * sizeof(POINT));
1827 ptcopy = GdipAlloc(count * sizeof(GpPointF));
1829 if(!pti || !ptcopy){
1830 status = OutOfMemory;
1831 goto end;
1834 memcpy(ptcopy, pt, count * sizeof(GpPointF));
1836 if(caps){
1837 if(pen->endcap == LineCapArrowAnchor)
1838 shorten_bezier_amt(&ptcopy[count-4], pen->width, FALSE);
1839 else if((pen->endcap == LineCapCustom) && pen->customend)
1840 shorten_bezier_amt(&ptcopy[count-4], pen->width * pen->customend->inset,
1841 FALSE);
1843 if(pen->startcap == LineCapArrowAnchor)
1844 shorten_bezier_amt(ptcopy, pen->width, TRUE);
1845 else if((pen->startcap == LineCapCustom) && pen->customstart)
1846 shorten_bezier_amt(ptcopy, pen->width * pen->customstart->inset, TRUE);
1848 /* the direction of the line cap is parallel to the direction at the
1849 * end of the bezier (which, if it has been shortened, is not the same
1850 * as the direction from pt[count-2] to pt[count-1]) */
1851 draw_cap(graphics, get_gdi_brush_color(pen->brush), pen->endcap, pen->width, pen->customend,
1852 pt[count - 1].X - (ptcopy[count - 1].X - ptcopy[count - 2].X),
1853 pt[count - 1].Y - (ptcopy[count - 1].Y - ptcopy[count - 2].Y),
1854 pt[count - 1].X, pt[count - 1].Y);
1856 draw_cap(graphics, get_gdi_brush_color(pen->brush), pen->startcap, pen->width, pen->customstart,
1857 pt[0].X - (ptcopy[0].X - ptcopy[1].X),
1858 pt[0].Y - (ptcopy[0].Y - ptcopy[1].Y), pt[0].X, pt[0].Y);
1861 transform_and_round_points(graphics, pti, ptcopy, count);
1863 PolyBezier(graphics->hdc, pti, count);
1865 status = Ok;
1867 end:
1868 GdipFree(pti);
1869 GdipFree(ptcopy);
1871 return status;
1874 /* Draws a combination of bezier curves and lines between points. */
1875 static GpStatus draw_poly(GpGraphics *graphics, GpPen *pen, GDIPCONST GpPointF * pt,
1876 GDIPCONST BYTE * types, INT count, BOOL caps)
1878 POINT *pti = GdipAlloc(count * sizeof(POINT));
1879 BYTE *tp = GdipAlloc(count);
1880 GpPointF *ptcopy = GdipAlloc(count * sizeof(GpPointF));
1881 INT i, j;
1882 GpStatus status = GenericError;
1884 if(!count){
1885 status = Ok;
1886 goto end;
1888 if(!pti || !tp || !ptcopy){
1889 status = OutOfMemory;
1890 goto end;
1893 for(i = 1; i < count; i++){
1894 if((types[i] & PathPointTypePathTypeMask) == PathPointTypeBezier){
1895 if((i + 2 >= count) || !(types[i + 1] & PathPointTypeBezier)
1896 || !(types[i + 1] & PathPointTypeBezier)){
1897 ERR("Bad bezier points\n");
1898 goto end;
1900 i += 2;
1904 memcpy(ptcopy, pt, count * sizeof(GpPointF));
1906 /* If we are drawing caps, go through the points and adjust them accordingly,
1907 * and draw the caps. */
1908 if(caps){
1909 switch(types[count - 1] & PathPointTypePathTypeMask){
1910 case PathPointTypeBezier:
1911 if(pen->endcap == LineCapArrowAnchor)
1912 shorten_bezier_amt(&ptcopy[count - 4], pen->width, FALSE);
1913 else if((pen->endcap == LineCapCustom) && pen->customend)
1914 shorten_bezier_amt(&ptcopy[count - 4],
1915 pen->width * pen->customend->inset, FALSE);
1917 draw_cap(graphics, get_gdi_brush_color(pen->brush), pen->endcap, pen->width, pen->customend,
1918 pt[count - 1].X - (ptcopy[count - 1].X - ptcopy[count - 2].X),
1919 pt[count - 1].Y - (ptcopy[count - 1].Y - ptcopy[count - 2].Y),
1920 pt[count - 1].X, pt[count - 1].Y);
1922 break;
1923 case PathPointTypeLine:
1924 if(pen->endcap == LineCapArrowAnchor)
1925 shorten_line_amt(ptcopy[count - 2].X, ptcopy[count - 2].Y,
1926 &ptcopy[count - 1].X, &ptcopy[count - 1].Y,
1927 pen->width);
1928 else if((pen->endcap == LineCapCustom) && pen->customend)
1929 shorten_line_amt(ptcopy[count - 2].X, ptcopy[count - 2].Y,
1930 &ptcopy[count - 1].X, &ptcopy[count - 1].Y,
1931 pen->customend->inset * pen->width);
1933 draw_cap(graphics, get_gdi_brush_color(pen->brush), pen->endcap, pen->width, pen->customend,
1934 pt[count - 2].X, pt[count - 2].Y, pt[count - 1].X,
1935 pt[count - 1].Y);
1937 break;
1938 default:
1939 ERR("Bad path last point\n");
1940 goto end;
1943 /* Find start of points */
1944 for(j = 1; j < count && ((types[j] & PathPointTypePathTypeMask)
1945 == PathPointTypeStart); j++);
1947 switch(types[j] & PathPointTypePathTypeMask){
1948 case PathPointTypeBezier:
1949 if(pen->startcap == LineCapArrowAnchor)
1950 shorten_bezier_amt(&ptcopy[j - 1], pen->width, TRUE);
1951 else if((pen->startcap == LineCapCustom) && pen->customstart)
1952 shorten_bezier_amt(&ptcopy[j - 1],
1953 pen->width * pen->customstart->inset, TRUE);
1955 draw_cap(graphics, get_gdi_brush_color(pen->brush), pen->startcap, pen->width, pen->customstart,
1956 pt[j - 1].X - (ptcopy[j - 1].X - ptcopy[j].X),
1957 pt[j - 1].Y - (ptcopy[j - 1].Y - ptcopy[j].Y),
1958 pt[j - 1].X, pt[j - 1].Y);
1960 break;
1961 case PathPointTypeLine:
1962 if(pen->startcap == LineCapArrowAnchor)
1963 shorten_line_amt(ptcopy[j].X, ptcopy[j].Y,
1964 &ptcopy[j - 1].X, &ptcopy[j - 1].Y,
1965 pen->width);
1966 else if((pen->startcap == LineCapCustom) && pen->customstart)
1967 shorten_line_amt(ptcopy[j].X, ptcopy[j].Y,
1968 &ptcopy[j - 1].X, &ptcopy[j - 1].Y,
1969 pen->customstart->inset * pen->width);
1971 draw_cap(graphics, get_gdi_brush_color(pen->brush), pen->startcap, pen->width, pen->customstart,
1972 pt[j].X, pt[j].Y, pt[j - 1].X,
1973 pt[j - 1].Y);
1975 break;
1976 default:
1977 ERR("Bad path points\n");
1978 goto end;
1982 transform_and_round_points(graphics, pti, ptcopy, count);
1984 for(i = 0; i < count; i++){
1985 tp[i] = convert_path_point_type(types[i]);
1988 PolyDraw(graphics->hdc, pti, tp, count);
1990 status = Ok;
1992 end:
1993 GdipFree(pti);
1994 GdipFree(ptcopy);
1995 GdipFree(tp);
1997 return status;
2000 GpStatus trace_path(GpGraphics *graphics, GpPath *path)
2002 GpStatus result;
2004 BeginPath(graphics->hdc);
2005 result = draw_poly(graphics, NULL, path->pathdata.Points,
2006 path->pathdata.Types, path->pathdata.Count, FALSE);
2007 EndPath(graphics->hdc);
2008 return result;
2011 typedef struct _GraphicsContainerItem {
2012 struct list entry;
2013 GraphicsContainer contid;
2015 SmoothingMode smoothing;
2016 CompositingQuality compqual;
2017 InterpolationMode interpolation;
2018 CompositingMode compmode;
2019 TextRenderingHint texthint;
2020 REAL scale;
2021 GpUnit unit;
2022 PixelOffsetMode pixeloffset;
2023 UINT textcontrast;
2024 GpMatrix worldtrans;
2025 GpRegion* clip;
2026 INT origin_x, origin_y;
2027 } GraphicsContainerItem;
2029 static GpStatus init_container(GraphicsContainerItem** container,
2030 GDIPCONST GpGraphics* graphics){
2031 GpStatus sts;
2033 *container = GdipAlloc(sizeof(GraphicsContainerItem));
2034 if(!(*container))
2035 return OutOfMemory;
2037 (*container)->contid = graphics->contid + 1;
2039 (*container)->smoothing = graphics->smoothing;
2040 (*container)->compqual = graphics->compqual;
2041 (*container)->interpolation = graphics->interpolation;
2042 (*container)->compmode = graphics->compmode;
2043 (*container)->texthint = graphics->texthint;
2044 (*container)->scale = graphics->scale;
2045 (*container)->unit = graphics->unit;
2046 (*container)->textcontrast = graphics->textcontrast;
2047 (*container)->pixeloffset = graphics->pixeloffset;
2048 (*container)->origin_x = graphics->origin_x;
2049 (*container)->origin_y = graphics->origin_y;
2050 (*container)->worldtrans = graphics->worldtrans;
2052 sts = GdipCloneRegion(graphics->clip, &(*container)->clip);
2053 if(sts != Ok){
2054 GdipFree(*container);
2055 *container = NULL;
2056 return sts;
2059 return Ok;
2062 static void delete_container(GraphicsContainerItem* container)
2064 GdipDeleteRegion(container->clip);
2065 GdipFree(container);
2068 static GpStatus restore_container(GpGraphics* graphics,
2069 GDIPCONST GraphicsContainerItem* container){
2070 GpStatus sts;
2071 GpRegion *newClip;
2073 sts = GdipCloneRegion(container->clip, &newClip);
2074 if(sts != Ok) return sts;
2076 graphics->worldtrans = container->worldtrans;
2078 GdipDeleteRegion(graphics->clip);
2079 graphics->clip = newClip;
2081 graphics->contid = container->contid - 1;
2083 graphics->smoothing = container->smoothing;
2084 graphics->compqual = container->compqual;
2085 graphics->interpolation = container->interpolation;
2086 graphics->compmode = container->compmode;
2087 graphics->texthint = container->texthint;
2088 graphics->scale = container->scale;
2089 graphics->unit = container->unit;
2090 graphics->textcontrast = container->textcontrast;
2091 graphics->pixeloffset = container->pixeloffset;
2092 graphics->origin_x = container->origin_x;
2093 graphics->origin_y = container->origin_y;
2095 return Ok;
2098 static GpStatus get_graphics_bounds(GpGraphics* graphics, GpRectF* rect)
2100 RECT wnd_rect;
2101 GpStatus stat=Ok;
2102 GpUnit unit;
2104 if(graphics->hwnd) {
2105 if(!GetClientRect(graphics->hwnd, &wnd_rect))
2106 return GenericError;
2108 rect->X = wnd_rect.left;
2109 rect->Y = wnd_rect.top;
2110 rect->Width = wnd_rect.right - wnd_rect.left;
2111 rect->Height = wnd_rect.bottom - wnd_rect.top;
2112 }else if (graphics->image){
2113 stat = GdipGetImageBounds(graphics->image, rect, &unit);
2114 if (stat == Ok && unit != UnitPixel)
2115 FIXME("need to convert from unit %i\n", unit);
2116 }else{
2117 rect->X = 0;
2118 rect->Y = 0;
2119 rect->Width = GetDeviceCaps(graphics->hdc, HORZRES);
2120 rect->Height = GetDeviceCaps(graphics->hdc, VERTRES);
2123 return stat;
2126 /* on success, rgn will contain the region of the graphics object which
2127 * is visible after clipping has been applied */
2128 static GpStatus get_visible_clip_region(GpGraphics *graphics, GpRegion *rgn)
2130 GpStatus stat;
2131 GpRectF rectf;
2132 GpRegion* tmp;
2134 if((stat = get_graphics_bounds(graphics, &rectf)) != Ok)
2135 return stat;
2137 if((stat = GdipCreateRegion(&tmp)) != Ok)
2138 return stat;
2140 if((stat = GdipCombineRegionRect(tmp, &rectf, CombineModeReplace)) != Ok)
2141 goto end;
2143 if((stat = GdipCombineRegionRegion(tmp, graphics->clip, CombineModeIntersect)) != Ok)
2144 goto end;
2146 stat = GdipCombineRegionRegion(rgn, tmp, CombineModeReplace);
2148 end:
2149 GdipDeleteRegion(tmp);
2150 return stat;
2153 void get_log_fontW(const GpFont *font, GpGraphics *graphics, LOGFONTW *lf)
2155 REAL height;
2157 if (font->unit == UnitPixel)
2159 height = units_to_pixels(font->emSize, graphics->unit, graphics->yres);
2161 else
2163 if (graphics->unit == UnitDisplay || graphics->unit == UnitPixel)
2164 height = units_to_pixels(font->emSize, font->unit, graphics->xres);
2165 else
2166 height = units_to_pixels(font->emSize, font->unit, graphics->yres);
2169 lf->lfHeight = -(height + 0.5);
2170 lf->lfWidth = 0;
2171 lf->lfEscapement = 0;
2172 lf->lfOrientation = 0;
2173 lf->lfWeight = font->otm.otmTextMetrics.tmWeight;
2174 lf->lfItalic = font->otm.otmTextMetrics.tmItalic ? 1 : 0;
2175 lf->lfUnderline = font->otm.otmTextMetrics.tmUnderlined ? 1 : 0;
2176 lf->lfStrikeOut = font->otm.otmTextMetrics.tmStruckOut ? 1 : 0;
2177 lf->lfCharSet = font->otm.otmTextMetrics.tmCharSet;
2178 lf->lfOutPrecision = OUT_DEFAULT_PRECIS;
2179 lf->lfClipPrecision = CLIP_DEFAULT_PRECIS;
2180 lf->lfQuality = DEFAULT_QUALITY;
2181 lf->lfPitchAndFamily = 0;
2182 strcpyW(lf->lfFaceName, font->family->FamilyName);
2185 static void get_font_hfont(GpGraphics *graphics, GDIPCONST GpFont *font,
2186 GDIPCONST GpStringFormat *format, HFONT *hfont,
2187 GDIPCONST GpMatrix *matrix)
2189 HDC hdc = CreateCompatibleDC(0);
2190 GpPointF pt[3];
2191 REAL angle, rel_width, rel_height, font_height;
2192 LOGFONTW lfw;
2193 HFONT unscaled_font;
2194 TEXTMETRICW textmet;
2196 if (font->unit == UnitPixel)
2197 font_height = font->emSize;
2198 else
2200 REAL unit_scale, res;
2202 res = (graphics->unit == UnitDisplay || graphics->unit == UnitPixel) ? graphics->xres : graphics->yres;
2203 unit_scale = units_scale(font->unit, graphics->unit, res);
2205 font_height = font->emSize * unit_scale;
2208 pt[0].X = 0.0;
2209 pt[0].Y = 0.0;
2210 pt[1].X = 1.0;
2211 pt[1].Y = 0.0;
2212 pt[2].X = 0.0;
2213 pt[2].Y = 1.0;
2214 if (matrix)
2216 GpMatrix xform = *matrix;
2217 GdipTransformMatrixPoints(&xform, pt, 3);
2219 if (graphics)
2220 GdipTransformPoints(graphics, CoordinateSpaceDevice, CoordinateSpaceWorld, pt, 3);
2221 angle = -gdiplus_atan2((pt[1].Y - pt[0].Y), (pt[1].X - pt[0].X));
2222 rel_width = sqrt((pt[1].Y-pt[0].Y)*(pt[1].Y-pt[0].Y)+
2223 (pt[1].X-pt[0].X)*(pt[1].X-pt[0].X));
2224 rel_height = sqrt((pt[2].Y-pt[0].Y)*(pt[2].Y-pt[0].Y)+
2225 (pt[2].X-pt[0].X)*(pt[2].X-pt[0].X));
2227 get_log_fontW(font, graphics, &lfw);
2228 lfw.lfHeight = gdip_round(font_height * rel_height);
2229 unscaled_font = CreateFontIndirectW(&lfw);
2231 SelectObject(hdc, unscaled_font);
2232 GetTextMetricsW(hdc, &textmet);
2234 lfw.lfWidth = gdip_round(textmet.tmAveCharWidth * rel_width / rel_height);
2235 lfw.lfEscapement = lfw.lfOrientation = gdip_round((angle / M_PI) * 1800.0);
2237 *hfont = CreateFontIndirectW(&lfw);
2239 DeleteDC(hdc);
2240 DeleteObject(unscaled_font);
2243 GpStatus WINGDIPAPI GdipCreateFromHDC(HDC hdc, GpGraphics **graphics)
2245 TRACE("(%p, %p)\n", hdc, graphics);
2247 return GdipCreateFromHDC2(hdc, NULL, graphics);
2250 GpStatus WINGDIPAPI GdipCreateFromHDC2(HDC hdc, HANDLE hDevice, GpGraphics **graphics)
2252 GpStatus retval;
2254 TRACE("(%p, %p, %p)\n", hdc, hDevice, graphics);
2256 if(hDevice != NULL) {
2257 FIXME("Don't know how to handle parameter hDevice\n");
2258 return NotImplemented;
2261 if(hdc == NULL)
2262 return OutOfMemory;
2264 if(graphics == NULL)
2265 return InvalidParameter;
2267 *graphics = GdipAlloc(sizeof(GpGraphics));
2268 if(!*graphics) return OutOfMemory;
2270 GdipSetMatrixElements(&(*graphics)->worldtrans, 1.0, 0.0, 0.0, 1.0, 0.0, 0.0);
2272 if((retval = GdipCreateRegion(&(*graphics)->clip)) != Ok){
2273 GdipFree(*graphics);
2274 return retval;
2277 (*graphics)->hdc = hdc;
2278 (*graphics)->hwnd = WindowFromDC(hdc);
2279 (*graphics)->owndc = FALSE;
2280 (*graphics)->smoothing = SmoothingModeDefault;
2281 (*graphics)->compqual = CompositingQualityDefault;
2282 (*graphics)->interpolation = InterpolationModeBilinear;
2283 (*graphics)->pixeloffset = PixelOffsetModeDefault;
2284 (*graphics)->compmode = CompositingModeSourceOver;
2285 (*graphics)->unit = UnitDisplay;
2286 (*graphics)->scale = 1.0;
2287 (*graphics)->xres = GetDeviceCaps(hdc, LOGPIXELSX);
2288 (*graphics)->yres = GetDeviceCaps(hdc, LOGPIXELSY);
2289 (*graphics)->busy = FALSE;
2290 (*graphics)->textcontrast = 4;
2291 list_init(&(*graphics)->containers);
2292 (*graphics)->contid = 0;
2294 TRACE("<-- %p\n", *graphics);
2296 return Ok;
2299 GpStatus graphics_from_image(GpImage *image, GpGraphics **graphics)
2301 GpStatus retval;
2303 *graphics = GdipAlloc(sizeof(GpGraphics));
2304 if(!*graphics) return OutOfMemory;
2306 GdipSetMatrixElements(&(*graphics)->worldtrans, 1.0, 0.0, 0.0, 1.0, 0.0, 0.0);
2308 if((retval = GdipCreateRegion(&(*graphics)->clip)) != Ok){
2309 GdipFree(*graphics);
2310 return retval;
2313 (*graphics)->hdc = NULL;
2314 (*graphics)->hwnd = NULL;
2315 (*graphics)->owndc = FALSE;
2316 (*graphics)->image = image;
2317 (*graphics)->smoothing = SmoothingModeDefault;
2318 (*graphics)->compqual = CompositingQualityDefault;
2319 (*graphics)->interpolation = InterpolationModeBilinear;
2320 (*graphics)->pixeloffset = PixelOffsetModeDefault;
2321 (*graphics)->compmode = CompositingModeSourceOver;
2322 (*graphics)->unit = UnitDisplay;
2323 (*graphics)->scale = 1.0;
2324 (*graphics)->xres = image->xres;
2325 (*graphics)->yres = image->yres;
2326 (*graphics)->busy = FALSE;
2327 (*graphics)->textcontrast = 4;
2328 list_init(&(*graphics)->containers);
2329 (*graphics)->contid = 0;
2331 TRACE("<-- %p\n", *graphics);
2333 return Ok;
2336 GpStatus WINGDIPAPI GdipCreateFromHWND(HWND hwnd, GpGraphics **graphics)
2338 GpStatus ret;
2339 HDC hdc;
2341 TRACE("(%p, %p)\n", hwnd, graphics);
2343 hdc = GetDC(hwnd);
2345 if((ret = GdipCreateFromHDC(hdc, graphics)) != Ok)
2347 ReleaseDC(hwnd, hdc);
2348 return ret;
2351 (*graphics)->hwnd = hwnd;
2352 (*graphics)->owndc = TRUE;
2354 return Ok;
2357 /* FIXME: no icm handling */
2358 GpStatus WINGDIPAPI GdipCreateFromHWNDICM(HWND hwnd, GpGraphics **graphics)
2360 TRACE("(%p, %p)\n", hwnd, graphics);
2362 return GdipCreateFromHWND(hwnd, graphics);
2365 GpStatus WINGDIPAPI GdipCreateMetafileFromEmf(HENHMETAFILE hemf, BOOL delete,
2366 GpMetafile **metafile)
2368 ENHMETAHEADER header;
2369 MetafileType metafile_type;
2371 TRACE("(%p,%i,%p)\n", hemf, delete, metafile);
2373 if(!hemf || !metafile)
2374 return InvalidParameter;
2376 if (GetEnhMetaFileHeader(hemf, sizeof(header), &header) == 0)
2377 return GenericError;
2379 metafile_type = METAFILE_GetEmfType(hemf);
2381 if (metafile_type == MetafileTypeInvalid)
2382 return GenericError;
2384 *metafile = GdipAlloc(sizeof(GpMetafile));
2385 if (!*metafile)
2386 return OutOfMemory;
2388 (*metafile)->image.type = ImageTypeMetafile;
2389 (*metafile)->image.format = ImageFormatEMF;
2390 (*metafile)->image.frame_count = 1;
2391 (*metafile)->image.xres = (REAL)header.szlDevice.cx;
2392 (*metafile)->image.yres = (REAL)header.szlDevice.cy;
2393 (*metafile)->bounds.X = (REAL)header.rclBounds.left;
2394 (*metafile)->bounds.Y = (REAL)header.rclBounds.top;
2395 (*metafile)->bounds.Width = (REAL)(header.rclBounds.right - header.rclBounds.left);
2396 (*metafile)->bounds.Height = (REAL)(header.rclBounds.bottom - header.rclBounds.top);
2397 (*metafile)->unit = UnitPixel;
2398 (*metafile)->metafile_type = metafile_type;
2399 (*metafile)->hemf = hemf;
2400 (*metafile)->preserve_hemf = !delete;
2402 TRACE("<-- %p\n", *metafile);
2404 return Ok;
2407 GpStatus WINGDIPAPI GdipCreateMetafileFromWmf(HMETAFILE hwmf, BOOL delete,
2408 GDIPCONST WmfPlaceableFileHeader * placeable, GpMetafile **metafile)
2410 UINT read;
2411 BYTE *copy;
2412 HENHMETAFILE hemf;
2413 GpStatus retval = Ok;
2415 TRACE("(%p, %d, %p, %p)\n", hwmf, delete, placeable, metafile);
2417 if(!hwmf || !metafile || !placeable)
2418 return InvalidParameter;
2420 *metafile = NULL;
2421 read = GetMetaFileBitsEx(hwmf, 0, NULL);
2422 if(!read)
2423 return GenericError;
2424 copy = GdipAlloc(read);
2425 GetMetaFileBitsEx(hwmf, read, copy);
2427 hemf = SetWinMetaFileBits(read, copy, NULL, NULL);
2428 GdipFree(copy);
2430 /* FIXME: We should store and use hwmf instead of converting to hemf */
2431 retval = GdipCreateMetafileFromEmf(hemf, TRUE, metafile);
2433 if (retval == Ok)
2435 (*metafile)->image.xres = (REAL)placeable->Inch;
2436 (*metafile)->image.yres = (REAL)placeable->Inch;
2437 (*metafile)->bounds.X = ((REAL)placeable->BoundingBox.Left) / ((REAL)placeable->Inch);
2438 (*metafile)->bounds.Y = ((REAL)placeable->BoundingBox.Top) / ((REAL)placeable->Inch);
2439 (*metafile)->bounds.Width = (REAL)(placeable->BoundingBox.Right -
2440 placeable->BoundingBox.Left);
2441 (*metafile)->bounds.Height = (REAL)(placeable->BoundingBox.Bottom -
2442 placeable->BoundingBox.Top);
2443 (*metafile)->metafile_type = MetafileTypeWmfPlaceable;
2444 (*metafile)->image.format = ImageFormatWMF;
2446 if (delete) DeleteMetaFile(hwmf);
2448 else
2449 DeleteEnhMetaFile(hemf);
2450 return retval;
2453 GpStatus WINGDIPAPI GdipCreateMetafileFromWmfFile(GDIPCONST WCHAR *file,
2454 GDIPCONST WmfPlaceableFileHeader * placeable, GpMetafile **metafile)
2456 HMETAFILE hmf = GetMetaFileW(file);
2458 TRACE("(%s, %p, %p)\n", debugstr_w(file), placeable, metafile);
2460 if(!hmf) return InvalidParameter;
2462 return GdipCreateMetafileFromWmf(hmf, TRUE, placeable, metafile);
2465 GpStatus WINGDIPAPI GdipCreateMetafileFromFile(GDIPCONST WCHAR *file,
2466 GpMetafile **metafile)
2468 FIXME("(%p, %p): stub\n", file, metafile);
2469 return NotImplemented;
2472 GpStatus WINGDIPAPI GdipCreateMetafileFromStream(IStream *stream,
2473 GpMetafile **metafile)
2475 FIXME("(%p, %p): stub\n", stream, metafile);
2476 return NotImplemented;
2479 GpStatus WINGDIPAPI GdipCreateStreamOnFile(GDIPCONST WCHAR * filename,
2480 UINT access, IStream **stream)
2482 DWORD dwMode;
2483 HRESULT ret;
2485 TRACE("(%s, %u, %p)\n", debugstr_w(filename), access, stream);
2487 if(!stream || !filename)
2488 return InvalidParameter;
2490 if(access & GENERIC_WRITE)
2491 dwMode = STGM_SHARE_DENY_WRITE | STGM_WRITE | STGM_CREATE;
2492 else if(access & GENERIC_READ)
2493 dwMode = STGM_SHARE_DENY_WRITE | STGM_READ | STGM_FAILIFTHERE;
2494 else
2495 return InvalidParameter;
2497 ret = SHCreateStreamOnFileW(filename, dwMode, stream);
2499 return hresult_to_status(ret);
2502 GpStatus WINGDIPAPI GdipDeleteGraphics(GpGraphics *graphics)
2504 GraphicsContainerItem *cont, *next;
2505 GpStatus stat;
2506 TRACE("(%p)\n", graphics);
2508 if(!graphics) return InvalidParameter;
2509 if(graphics->busy) return ObjectBusy;
2511 if (graphics->image && graphics->image->type == ImageTypeMetafile)
2513 stat = METAFILE_GraphicsDeleted((GpMetafile*)graphics->image);
2514 if (stat != Ok)
2515 return stat;
2518 if(graphics->owndc)
2519 ReleaseDC(graphics->hwnd, graphics->hdc);
2521 LIST_FOR_EACH_ENTRY_SAFE(cont, next, &graphics->containers, GraphicsContainerItem, entry){
2522 list_remove(&cont->entry);
2523 delete_container(cont);
2526 GdipDeleteRegion(graphics->clip);
2527 GdipFree(graphics);
2529 return Ok;
2532 GpStatus WINGDIPAPI GdipDrawArc(GpGraphics *graphics, GpPen *pen, REAL x,
2533 REAL y, REAL width, REAL height, REAL startAngle, REAL sweepAngle)
2535 INT save_state, num_pts;
2536 GpPointF points[MAX_ARC_PTS];
2537 GpStatus retval;
2539 TRACE("(%p, %p, %.2f, %.2f, %.2f, %.2f, %.2f, %.2f)\n", graphics, pen, x, y,
2540 width, height, startAngle, sweepAngle);
2542 if(!graphics || !pen || width <= 0 || height <= 0)
2543 return InvalidParameter;
2545 if(graphics->busy)
2546 return ObjectBusy;
2548 if (!graphics->hdc)
2550 FIXME("graphics object has no HDC\n");
2551 return Ok;
2554 num_pts = arc2polybezier(points, x, y, width, height, startAngle, sweepAngle);
2556 save_state = prepare_dc(graphics, pen);
2558 retval = draw_polybezier(graphics, pen, points, num_pts, TRUE);
2560 restore_dc(graphics, save_state);
2562 return retval;
2565 GpStatus WINGDIPAPI GdipDrawArcI(GpGraphics *graphics, GpPen *pen, INT x,
2566 INT y, INT width, INT height, REAL startAngle, REAL sweepAngle)
2568 TRACE("(%p, %p, %d, %d, %d, %d, %.2f, %.2f)\n", graphics, pen, x, y,
2569 width, height, startAngle, sweepAngle);
2571 return GdipDrawArc(graphics,pen,(REAL)x,(REAL)y,(REAL)width,(REAL)height,startAngle,sweepAngle);
2574 GpStatus WINGDIPAPI GdipDrawBezier(GpGraphics *graphics, GpPen *pen, REAL x1,
2575 REAL y1, REAL x2, REAL y2, REAL x3, REAL y3, REAL x4, REAL y4)
2577 INT save_state;
2578 GpPointF pt[4];
2579 GpStatus retval;
2581 TRACE("(%p, %p, %.2f, %.2f, %.2f, %.2f, %.2f, %.2f, %.2f, %.2f)\n", graphics, pen, x1, y1,
2582 x2, y2, x3, y3, x4, y4);
2584 if(!graphics || !pen)
2585 return InvalidParameter;
2587 if(graphics->busy)
2588 return ObjectBusy;
2590 if (!graphics->hdc)
2592 FIXME("graphics object has no HDC\n");
2593 return Ok;
2596 pt[0].X = x1;
2597 pt[0].Y = y1;
2598 pt[1].X = x2;
2599 pt[1].Y = y2;
2600 pt[2].X = x3;
2601 pt[2].Y = y3;
2602 pt[3].X = x4;
2603 pt[3].Y = y4;
2605 save_state = prepare_dc(graphics, pen);
2607 retval = draw_polybezier(graphics, pen, pt, 4, TRUE);
2609 restore_dc(graphics, save_state);
2611 return retval;
2614 GpStatus WINGDIPAPI GdipDrawBezierI(GpGraphics *graphics, GpPen *pen, INT x1,
2615 INT y1, INT x2, INT y2, INT x3, INT y3, INT x4, INT y4)
2617 INT save_state;
2618 GpPointF pt[4];
2619 GpStatus retval;
2621 TRACE("(%p, %p, %d, %d, %d, %d, %d, %d, %d, %d)\n", graphics, pen, x1, y1,
2622 x2, y2, x3, y3, x4, y4);
2624 if(!graphics || !pen)
2625 return InvalidParameter;
2627 if(graphics->busy)
2628 return ObjectBusy;
2630 if (!graphics->hdc)
2632 FIXME("graphics object has no HDC\n");
2633 return Ok;
2636 pt[0].X = x1;
2637 pt[0].Y = y1;
2638 pt[1].X = x2;
2639 pt[1].Y = y2;
2640 pt[2].X = x3;
2641 pt[2].Y = y3;
2642 pt[3].X = x4;
2643 pt[3].Y = y4;
2645 save_state = prepare_dc(graphics, pen);
2647 retval = draw_polybezier(graphics, pen, pt, 4, TRUE);
2649 restore_dc(graphics, save_state);
2651 return retval;
2654 GpStatus WINGDIPAPI GdipDrawBeziers(GpGraphics *graphics, GpPen *pen,
2655 GDIPCONST GpPointF *points, INT count)
2657 INT i;
2658 GpStatus ret;
2660 TRACE("(%p, %p, %p, %d)\n", graphics, pen, points, count);
2662 if(!graphics || !pen || !points || (count <= 0))
2663 return InvalidParameter;
2665 if(graphics->busy)
2666 return ObjectBusy;
2668 for(i = 0; i < floor(count / 4); i++){
2669 ret = GdipDrawBezier(graphics, pen,
2670 points[4*i].X, points[4*i].Y,
2671 points[4*i + 1].X, points[4*i + 1].Y,
2672 points[4*i + 2].X, points[4*i + 2].Y,
2673 points[4*i + 3].X, points[4*i + 3].Y);
2674 if(ret != Ok)
2675 return ret;
2678 return Ok;
2681 GpStatus WINGDIPAPI GdipDrawBeziersI(GpGraphics *graphics, GpPen *pen,
2682 GDIPCONST GpPoint *points, INT count)
2684 GpPointF *pts;
2685 GpStatus ret;
2686 INT i;
2688 TRACE("(%p, %p, %p, %d)\n", graphics, pen, points, count);
2690 if(!graphics || !pen || !points || (count <= 0))
2691 return InvalidParameter;
2693 if(graphics->busy)
2694 return ObjectBusy;
2696 pts = GdipAlloc(sizeof(GpPointF) * count);
2697 if(!pts)
2698 return OutOfMemory;
2700 for(i = 0; i < count; i++){
2701 pts[i].X = (REAL)points[i].X;
2702 pts[i].Y = (REAL)points[i].Y;
2705 ret = GdipDrawBeziers(graphics,pen,pts,count);
2707 GdipFree(pts);
2709 return ret;
2712 GpStatus WINGDIPAPI GdipDrawClosedCurve(GpGraphics *graphics, GpPen *pen,
2713 GDIPCONST GpPointF *points, INT count)
2715 TRACE("(%p, %p, %p, %d)\n", graphics, pen, points, count);
2717 return GdipDrawClosedCurve2(graphics, pen, points, count, 1.0);
2720 GpStatus WINGDIPAPI GdipDrawClosedCurveI(GpGraphics *graphics, GpPen *pen,
2721 GDIPCONST GpPoint *points, INT count)
2723 TRACE("(%p, %p, %p, %d)\n", graphics, pen, points, count);
2725 return GdipDrawClosedCurve2I(graphics, pen, points, count, 1.0);
2728 GpStatus WINGDIPAPI GdipDrawClosedCurve2(GpGraphics *graphics, GpPen *pen,
2729 GDIPCONST GpPointF *points, INT count, REAL tension)
2731 GpPath *path;
2732 GpStatus stat;
2734 TRACE("(%p, %p, %p, %d, %.2f)\n", graphics, pen, points, count, tension);
2736 if(!graphics || !pen || !points || count <= 0)
2737 return InvalidParameter;
2739 if(graphics->busy)
2740 return ObjectBusy;
2742 if((stat = GdipCreatePath(FillModeAlternate, &path)) != Ok)
2743 return stat;
2745 stat = GdipAddPathClosedCurve2(path, points, count, tension);
2746 if(stat != Ok){
2747 GdipDeletePath(path);
2748 return stat;
2751 stat = GdipDrawPath(graphics, pen, path);
2753 GdipDeletePath(path);
2755 return stat;
2758 GpStatus WINGDIPAPI GdipDrawClosedCurve2I(GpGraphics *graphics, GpPen *pen,
2759 GDIPCONST GpPoint *points, INT count, REAL tension)
2761 GpPointF *ptf;
2762 GpStatus stat;
2763 INT i;
2765 TRACE("(%p, %p, %p, %d, %.2f)\n", graphics, pen, points, count, tension);
2767 if(!points || count <= 0)
2768 return InvalidParameter;
2770 ptf = GdipAlloc(sizeof(GpPointF)*count);
2771 if(!ptf)
2772 return OutOfMemory;
2774 for(i = 0; i < count; i++){
2775 ptf[i].X = (REAL)points[i].X;
2776 ptf[i].Y = (REAL)points[i].Y;
2779 stat = GdipDrawClosedCurve2(graphics, pen, ptf, count, tension);
2781 GdipFree(ptf);
2783 return stat;
2786 GpStatus WINGDIPAPI GdipDrawCurve(GpGraphics *graphics, GpPen *pen,
2787 GDIPCONST GpPointF *points, INT count)
2789 TRACE("(%p, %p, %p, %d)\n", graphics, pen, points, count);
2791 return GdipDrawCurve2(graphics,pen,points,count,1.0);
2794 GpStatus WINGDIPAPI GdipDrawCurveI(GpGraphics *graphics, GpPen *pen,
2795 GDIPCONST GpPoint *points, INT count)
2797 GpPointF *pointsF;
2798 GpStatus ret;
2799 INT i;
2801 TRACE("(%p, %p, %p, %d)\n", graphics, pen, points, count);
2803 if(!points)
2804 return InvalidParameter;
2806 pointsF = GdipAlloc(sizeof(GpPointF)*count);
2807 if(!pointsF)
2808 return OutOfMemory;
2810 for(i = 0; i < count; i++){
2811 pointsF[i].X = (REAL)points[i].X;
2812 pointsF[i].Y = (REAL)points[i].Y;
2815 ret = GdipDrawCurve(graphics,pen,pointsF,count);
2816 GdipFree(pointsF);
2818 return ret;
2821 /* Approximates cardinal spline with Bezier curves. */
2822 GpStatus WINGDIPAPI GdipDrawCurve2(GpGraphics *graphics, GpPen *pen,
2823 GDIPCONST GpPointF *points, INT count, REAL tension)
2825 /* PolyBezier expects count*3-2 points. */
2826 INT i, len_pt = count*3-2, save_state;
2827 GpPointF *pt;
2828 REAL x1, x2, y1, y2;
2829 GpStatus retval;
2831 TRACE("(%p, %p, %p, %d, %.2f)\n", graphics, pen, points, count, tension);
2833 if(!graphics || !pen)
2834 return InvalidParameter;
2836 if(graphics->busy)
2837 return ObjectBusy;
2839 if(count < 2)
2840 return InvalidParameter;
2842 if (!graphics->hdc)
2844 FIXME("graphics object has no HDC\n");
2845 return Ok;
2848 pt = GdipAlloc(len_pt * sizeof(GpPointF));
2849 if(!pt)
2850 return OutOfMemory;
2852 tension = tension * TENSION_CONST;
2854 calc_curve_bezier_endp(points[0].X, points[0].Y, points[1].X, points[1].Y,
2855 tension, &x1, &y1);
2857 pt[0].X = points[0].X;
2858 pt[0].Y = points[0].Y;
2859 pt[1].X = x1;
2860 pt[1].Y = y1;
2862 for(i = 0; i < count-2; i++){
2863 calc_curve_bezier(&(points[i]), tension, &x1, &y1, &x2, &y2);
2865 pt[3*i+2].X = x1;
2866 pt[3*i+2].Y = y1;
2867 pt[3*i+3].X = points[i+1].X;
2868 pt[3*i+3].Y = points[i+1].Y;
2869 pt[3*i+4].X = x2;
2870 pt[3*i+4].Y = y2;
2873 calc_curve_bezier_endp(points[count-1].X, points[count-1].Y,
2874 points[count-2].X, points[count-2].Y, tension, &x1, &y1);
2876 pt[len_pt-2].X = x1;
2877 pt[len_pt-2].Y = y1;
2878 pt[len_pt-1].X = points[count-1].X;
2879 pt[len_pt-1].Y = points[count-1].Y;
2881 save_state = prepare_dc(graphics, pen);
2883 retval = draw_polybezier(graphics, pen, pt, len_pt, TRUE);
2885 GdipFree(pt);
2886 restore_dc(graphics, save_state);
2888 return retval;
2891 GpStatus WINGDIPAPI GdipDrawCurve2I(GpGraphics *graphics, GpPen *pen,
2892 GDIPCONST GpPoint *points, INT count, REAL tension)
2894 GpPointF *pointsF;
2895 GpStatus ret;
2896 INT i;
2898 TRACE("(%p, %p, %p, %d, %.2f)\n", graphics, pen, points, count, tension);
2900 if(!points)
2901 return InvalidParameter;
2903 pointsF = GdipAlloc(sizeof(GpPointF)*count);
2904 if(!pointsF)
2905 return OutOfMemory;
2907 for(i = 0; i < count; i++){
2908 pointsF[i].X = (REAL)points[i].X;
2909 pointsF[i].Y = (REAL)points[i].Y;
2912 ret = GdipDrawCurve2(graphics,pen,pointsF,count,tension);
2913 GdipFree(pointsF);
2915 return ret;
2918 GpStatus WINGDIPAPI GdipDrawCurve3(GpGraphics *graphics, GpPen *pen,
2919 GDIPCONST GpPointF *points, INT count, INT offset, INT numberOfSegments,
2920 REAL tension)
2922 TRACE("(%p, %p, %p, %d, %d, %d, %.2f)\n", graphics, pen, points, count, offset, numberOfSegments, tension);
2924 if(offset >= count || numberOfSegments > count - offset - 1 || numberOfSegments <= 0){
2925 return InvalidParameter;
2928 return GdipDrawCurve2(graphics, pen, points + offset, numberOfSegments + 1, tension);
2931 GpStatus WINGDIPAPI GdipDrawCurve3I(GpGraphics *graphics, GpPen *pen,
2932 GDIPCONST GpPoint *points, INT count, INT offset, INT numberOfSegments,
2933 REAL tension)
2935 TRACE("(%p, %p, %p, %d, %d, %d, %.2f)\n", graphics, pen, points, count, offset, numberOfSegments, tension);
2937 if(count < 0){
2938 return OutOfMemory;
2941 if(offset >= count || numberOfSegments > count - offset - 1 || numberOfSegments <= 0){
2942 return InvalidParameter;
2945 return GdipDrawCurve2I(graphics, pen, points + offset, numberOfSegments + 1, tension);
2948 GpStatus WINGDIPAPI GdipDrawEllipse(GpGraphics *graphics, GpPen *pen, REAL x,
2949 REAL y, REAL width, REAL height)
2951 INT save_state;
2952 GpPointF ptf[2];
2953 POINT pti[2];
2955 TRACE("(%p, %p, %.2f, %.2f, %.2f, %.2f)\n", graphics, pen, x, y, width, height);
2957 if(!graphics || !pen)
2958 return InvalidParameter;
2960 if(graphics->busy)
2961 return ObjectBusy;
2963 if (!graphics->hdc)
2965 FIXME("graphics object has no HDC\n");
2966 return Ok;
2969 ptf[0].X = x;
2970 ptf[0].Y = y;
2971 ptf[1].X = x + width;
2972 ptf[1].Y = y + height;
2974 save_state = prepare_dc(graphics, pen);
2975 SelectObject(graphics->hdc, GetStockObject(NULL_BRUSH));
2977 transform_and_round_points(graphics, pti, ptf, 2);
2979 Ellipse(graphics->hdc, pti[0].x, pti[0].y, pti[1].x, pti[1].y);
2981 restore_dc(graphics, save_state);
2983 return Ok;
2986 GpStatus WINGDIPAPI GdipDrawEllipseI(GpGraphics *graphics, GpPen *pen, INT x,
2987 INT y, INT width, INT height)
2989 TRACE("(%p, %p, %d, %d, %d, %d)\n", graphics, pen, x, y, width, height);
2991 return GdipDrawEllipse(graphics,pen,(REAL)x,(REAL)y,(REAL)width,(REAL)height);
2995 GpStatus WINGDIPAPI GdipDrawImage(GpGraphics *graphics, GpImage *image, REAL x, REAL y)
2997 UINT width, height;
2999 TRACE("(%p, %p, %.2f, %.2f)\n", graphics, image, x, y);
3001 if(!graphics || !image)
3002 return InvalidParameter;
3004 GdipGetImageWidth(image, &width);
3005 GdipGetImageHeight(image, &height);
3007 return GdipDrawImagePointRect(graphics, image, x, y,
3008 0.0, 0.0, (REAL)width, (REAL)height, UnitPixel);
3011 GpStatus WINGDIPAPI GdipDrawImageI(GpGraphics *graphics, GpImage *image, INT x,
3012 INT y)
3014 TRACE("(%p, %p, %d, %d)\n", graphics, image, x, y);
3016 return GdipDrawImage(graphics, image, (REAL)x, (REAL)y);
3019 GpStatus WINGDIPAPI GdipDrawImagePointRect(GpGraphics *graphics, GpImage *image,
3020 REAL x, REAL y, REAL srcx, REAL srcy, REAL srcwidth, REAL srcheight,
3021 GpUnit srcUnit)
3023 GpPointF points[3];
3024 REAL scale_x, scale_y, width, height;
3026 TRACE("(%p, %p, %f, %f, %f, %f, %f, %f, %d)\n", graphics, image, x, y, srcx, srcy, srcwidth, srcheight, srcUnit);
3028 scale_x = units_scale(srcUnit, graphics->unit, graphics->xres);
3029 scale_x *= graphics->xres / image->xres;
3030 scale_y = units_scale(srcUnit, graphics->unit, graphics->yres);
3031 scale_y *= graphics->yres / image->yres;
3032 width = srcwidth * scale_x;
3033 height = srcheight * scale_y;
3035 points[0].X = points[2].X = x;
3036 points[0].Y = points[1].Y = y;
3037 points[1].X = x + width;
3038 points[2].Y = y + height;
3040 return GdipDrawImagePointsRect(graphics, image, points, 3, srcx, srcy,
3041 srcwidth, srcheight, srcUnit, NULL, NULL, NULL);
3044 GpStatus WINGDIPAPI GdipDrawImagePointRectI(GpGraphics *graphics, GpImage *image,
3045 INT x, INT y, INT srcx, INT srcy, INT srcwidth, INT srcheight,
3046 GpUnit srcUnit)
3048 return GdipDrawImagePointRect(graphics, image, x, y, srcx, srcy, srcwidth, srcheight, srcUnit);
3051 GpStatus WINGDIPAPI GdipDrawImagePoints(GpGraphics *graphics, GpImage *image,
3052 GDIPCONST GpPointF *dstpoints, INT count)
3054 UINT width, height;
3056 TRACE("(%p, %p, %p, %d)\n", graphics, image, dstpoints, count);
3058 if(!image)
3059 return InvalidParameter;
3061 GdipGetImageWidth(image, &width);
3062 GdipGetImageHeight(image, &height);
3064 return GdipDrawImagePointsRect(graphics, image, dstpoints, count, 0, 0,
3065 width, height, UnitPixel, NULL, NULL, NULL);
3068 GpStatus WINGDIPAPI GdipDrawImagePointsI(GpGraphics *graphics, GpImage *image,
3069 GDIPCONST GpPoint *dstpoints, INT count)
3071 GpPointF ptf[3];
3073 TRACE("(%p, %p, %p, %d)\n", graphics, image, dstpoints, count);
3075 if (count != 3 || !dstpoints)
3076 return InvalidParameter;
3078 ptf[0].X = (REAL)dstpoints[0].X;
3079 ptf[0].Y = (REAL)dstpoints[0].Y;
3080 ptf[1].X = (REAL)dstpoints[1].X;
3081 ptf[1].Y = (REAL)dstpoints[1].Y;
3082 ptf[2].X = (REAL)dstpoints[2].X;
3083 ptf[2].Y = (REAL)dstpoints[2].Y;
3085 return GdipDrawImagePoints(graphics, image, ptf, count);
3088 static BOOL CALLBACK play_metafile_proc(EmfPlusRecordType record_type, unsigned int flags,
3089 unsigned int dataSize, const unsigned char *pStr, void *userdata)
3091 GdipPlayMetafileRecord(userdata, record_type, flags, dataSize, pStr);
3092 return TRUE;
3095 GpStatus WINGDIPAPI GdipDrawImagePointsRect(GpGraphics *graphics, GpImage *image,
3096 GDIPCONST GpPointF *points, INT count, REAL srcx, REAL srcy, REAL srcwidth,
3097 REAL srcheight, GpUnit srcUnit, GDIPCONST GpImageAttributes* imageAttributes,
3098 DrawImageAbort callback, VOID * callbackData)
3100 GpPointF ptf[4];
3101 POINT pti[4];
3102 GpStatus stat;
3104 TRACE("(%p, %p, %p, %d, %f, %f, %f, %f, %d, %p, %p, %p)\n", graphics, image, points,
3105 count, srcx, srcy, srcwidth, srcheight, srcUnit, imageAttributes, callback,
3106 callbackData);
3108 if (count > 3)
3109 return NotImplemented;
3111 if(!graphics || !image || !points || count != 3)
3112 return InvalidParameter;
3114 TRACE("%s %s %s\n", debugstr_pointf(&points[0]), debugstr_pointf(&points[1]),
3115 debugstr_pointf(&points[2]));
3117 memcpy(ptf, points, 3 * sizeof(GpPointF));
3118 ptf[3].X = ptf[2].X + ptf[1].X - ptf[0].X;
3119 ptf[3].Y = ptf[2].Y + ptf[1].Y - ptf[0].Y;
3120 if (!srcwidth || !srcheight || ptf[3].X == ptf[0].X || ptf[3].Y == ptf[0].Y)
3121 return Ok;
3122 transform_and_round_points(graphics, pti, ptf, 4);
3124 TRACE("%s %s %s %s\n", wine_dbgstr_point(&pti[0]), wine_dbgstr_point(&pti[1]),
3125 wine_dbgstr_point(&pti[2]), wine_dbgstr_point(&pti[3]));
3127 srcx = units_to_pixels(srcx, srcUnit, image->xres);
3128 srcy = units_to_pixels(srcy, srcUnit, image->yres);
3129 srcwidth = units_to_pixels(srcwidth, srcUnit, image->xres);
3130 srcheight = units_to_pixels(srcheight, srcUnit, image->yres);
3131 TRACE("src pixels: %f,%f %fx%f\n", srcx, srcy, srcwidth, srcheight);
3133 if (image->picture)
3135 if (!graphics->hdc)
3137 FIXME("graphics object has no HDC\n");
3140 if(IPicture_Render(image->picture, graphics->hdc,
3141 pti[0].x, pti[0].y, pti[1].x - pti[0].x, pti[2].y - pti[0].y,
3142 srcx, srcy, srcwidth, srcheight, NULL) != S_OK)
3144 if(callback)
3145 callback(callbackData);
3146 return GenericError;
3149 else if (image->type == ImageTypeBitmap)
3151 GpBitmap* bitmap = (GpBitmap*)image;
3152 int use_software=0;
3154 TRACE("graphics: %.2fx%.2f dpi, fmt %#x, scale %f, image: %.2fx%.2f dpi, fmt %#x, color %08x\n",
3155 graphics->xres, graphics->yres,
3156 graphics->image && graphics->image->type == ImageTypeBitmap ? ((GpBitmap *)graphics->image)->format : 0,
3157 graphics->scale, image->xres, image->yres, bitmap->format,
3158 imageAttributes ? imageAttributes->outside_color : 0);
3160 if (imageAttributes ||
3161 (graphics->image && graphics->image->type == ImageTypeBitmap) ||
3162 ptf[1].Y != ptf[0].Y || ptf[2].X != ptf[0].X ||
3163 ptf[1].X - ptf[0].X != srcwidth || ptf[2].Y - ptf[0].Y != srcheight ||
3164 srcx < 0 || srcy < 0 ||
3165 srcx + srcwidth > bitmap->width || srcy + srcheight > bitmap->height)
3166 use_software = 1;
3168 if (use_software)
3170 RECT dst_area;
3171 GpRect src_area;
3172 int i, x, y, src_stride, dst_stride;
3173 GpMatrix dst_to_src;
3174 REAL m11, m12, m21, m22, mdx, mdy;
3175 LPBYTE src_data, dst_data;
3176 BitmapData lockeddata;
3177 InterpolationMode interpolation = graphics->interpolation;
3178 PixelOffsetMode offset_mode = graphics->pixeloffset;
3179 GpPointF dst_to_src_points[3] = {{0.0, 0.0}, {1.0, 0.0}, {0.0, 1.0}};
3180 REAL x_dx, x_dy, y_dx, y_dy;
3181 static const GpImageAttributes defaultImageAttributes = {WrapModeClamp, 0, FALSE};
3183 if (!imageAttributes)
3184 imageAttributes = &defaultImageAttributes;
3186 dst_area.left = dst_area.right = pti[0].x;
3187 dst_area.top = dst_area.bottom = pti[0].y;
3188 for (i=1; i<4; i++)
3190 if (dst_area.left > pti[i].x) dst_area.left = pti[i].x;
3191 if (dst_area.right < pti[i].x) dst_area.right = pti[i].x;
3192 if (dst_area.top > pti[i].y) dst_area.top = pti[i].y;
3193 if (dst_area.bottom < pti[i].y) dst_area.bottom = pti[i].y;
3196 TRACE("dst_area: %s\n", wine_dbgstr_rect(&dst_area));
3198 m11 = (ptf[1].X - ptf[0].X) / srcwidth;
3199 m21 = (ptf[2].X - ptf[0].X) / srcheight;
3200 mdx = ptf[0].X - m11 * srcx - m21 * srcy;
3201 m12 = (ptf[1].Y - ptf[0].Y) / srcwidth;
3202 m22 = (ptf[2].Y - ptf[0].Y) / srcheight;
3203 mdy = ptf[0].Y - m12 * srcx - m22 * srcy;
3205 GdipSetMatrixElements(&dst_to_src, m11, m12, m21, m22, mdx, mdy);
3207 stat = GdipInvertMatrix(&dst_to_src);
3208 if (stat != Ok) return stat;
3210 dst_data = GdipAlloc(sizeof(ARGB) * (dst_area.right - dst_area.left) * (dst_area.bottom - dst_area.top));
3211 if (!dst_data) return OutOfMemory;
3213 dst_stride = sizeof(ARGB) * (dst_area.right - dst_area.left);
3215 get_bitmap_sample_size(interpolation, imageAttributes->wrap,
3216 bitmap, srcx, srcy, srcwidth, srcheight, &src_area);
3218 TRACE("src_area: %d x %d\n", src_area.Width, src_area.Height);
3220 src_data = GdipAlloc(sizeof(ARGB) * src_area.Width * src_area.Height);
3221 if (!src_data)
3223 GdipFree(dst_data);
3224 return OutOfMemory;
3226 src_stride = sizeof(ARGB) * src_area.Width;
3228 /* Read the bits we need from the source bitmap into an ARGB buffer. */
3229 lockeddata.Width = src_area.Width;
3230 lockeddata.Height = src_area.Height;
3231 lockeddata.Stride = src_stride;
3232 lockeddata.PixelFormat = PixelFormat32bppARGB;
3233 lockeddata.Scan0 = src_data;
3235 stat = GdipBitmapLockBits(bitmap, &src_area, ImageLockModeRead|ImageLockModeUserInputBuf,
3236 PixelFormat32bppARGB, &lockeddata);
3238 if (stat == Ok)
3239 stat = GdipBitmapUnlockBits(bitmap, &lockeddata);
3241 if (stat != Ok)
3243 if (src_data != dst_data)
3244 GdipFree(src_data);
3245 GdipFree(dst_data);
3246 return stat;
3249 apply_image_attributes(imageAttributes, src_data,
3250 src_area.Width, src_area.Height,
3251 src_stride, ColorAdjustTypeBitmap);
3253 /* Transform the bits as needed to the destination. */
3254 GdipTransformMatrixPoints(&dst_to_src, dst_to_src_points, 3);
3256 x_dx = dst_to_src_points[1].X - dst_to_src_points[0].X;
3257 x_dy = dst_to_src_points[1].Y - dst_to_src_points[0].Y;
3258 y_dx = dst_to_src_points[2].X - dst_to_src_points[0].X;
3259 y_dy = dst_to_src_points[2].Y - dst_to_src_points[0].Y;
3261 for (x=dst_area.left; x<dst_area.right; x++)
3263 for (y=dst_area.top; y<dst_area.bottom; y++)
3265 GpPointF src_pointf;
3266 ARGB *dst_color;
3268 src_pointf.X = dst_to_src_points[0].X + x * x_dx + y * y_dx;
3269 src_pointf.Y = dst_to_src_points[0].Y + x * x_dy + y * y_dy;
3271 dst_color = (ARGB*)(dst_data + dst_stride * (y - dst_area.top) + sizeof(ARGB) * (x - dst_area.left));
3273 if (src_pointf.X >= srcx && src_pointf.X < srcx + srcwidth && src_pointf.Y >= srcy && src_pointf.Y < srcy+srcheight)
3274 *dst_color = resample_bitmap_pixel(&src_area, src_data, bitmap->width, bitmap->height, &src_pointf,
3275 imageAttributes, interpolation, offset_mode);
3276 else
3277 *dst_color = 0;
3281 GdipFree(src_data);
3283 stat = alpha_blend_pixels(graphics, dst_area.left, dst_area.top,
3284 dst_data, dst_area.right - dst_area.left, dst_area.bottom - dst_area.top, dst_stride);
3286 GdipFree(dst_data);
3288 return stat;
3290 else
3292 HDC hdc;
3293 int temp_hdc=0, temp_bitmap=0;
3294 HBITMAP hbitmap, old_hbm=NULL;
3296 if (!(bitmap->format == PixelFormat16bppRGB555 ||
3297 bitmap->format == PixelFormat24bppRGB ||
3298 bitmap->format == PixelFormat32bppRGB ||
3299 bitmap->format == PixelFormat32bppPARGB))
3301 BITMAPINFOHEADER bih;
3302 BYTE *temp_bits;
3303 PixelFormat dst_format;
3305 /* we can't draw a bitmap of this format directly */
3306 hdc = CreateCompatibleDC(0);
3307 temp_hdc = 1;
3308 temp_bitmap = 1;
3310 bih.biSize = sizeof(BITMAPINFOHEADER);
3311 bih.biWidth = bitmap->width;
3312 bih.biHeight = -bitmap->height;
3313 bih.biPlanes = 1;
3314 bih.biBitCount = 32;
3315 bih.biCompression = BI_RGB;
3316 bih.biSizeImage = 0;
3317 bih.biXPelsPerMeter = 0;
3318 bih.biYPelsPerMeter = 0;
3319 bih.biClrUsed = 0;
3320 bih.biClrImportant = 0;
3322 hbitmap = CreateDIBSection(hdc, (BITMAPINFO*)&bih, DIB_RGB_COLORS,
3323 (void**)&temp_bits, NULL, 0);
3325 if (bitmap->format & (PixelFormatAlpha|PixelFormatPAlpha))
3326 dst_format = PixelFormat32bppPARGB;
3327 else
3328 dst_format = PixelFormat32bppRGB;
3330 convert_pixels(bitmap->width, bitmap->height,
3331 bitmap->width*4, temp_bits, dst_format,
3332 bitmap->stride, bitmap->bits, bitmap->format,
3333 bitmap->image.palette);
3335 else
3337 if (bitmap->hbitmap)
3338 hbitmap = bitmap->hbitmap;
3339 else
3341 GdipCreateHBITMAPFromBitmap(bitmap, &hbitmap, 0);
3342 temp_bitmap = 1;
3345 hdc = bitmap->hdc;
3346 temp_hdc = (hdc == 0);
3349 if (temp_hdc)
3351 if (!hdc) hdc = CreateCompatibleDC(0);
3352 old_hbm = SelectObject(hdc, hbitmap);
3355 if (bitmap->format & (PixelFormatAlpha|PixelFormatPAlpha))
3357 gdi_alpha_blend(graphics, pti[0].x, pti[0].y, pti[1].x - pti[0].x, pti[2].y - pti[0].y,
3358 hdc, srcx, srcy, srcwidth, srcheight);
3360 else
3362 StretchBlt(graphics->hdc, pti[0].x, pti[0].y, pti[1].x-pti[0].x, pti[2].y-pti[0].y,
3363 hdc, srcx, srcy, srcwidth, srcheight, SRCCOPY);
3366 if (temp_hdc)
3368 SelectObject(hdc, old_hbm);
3369 DeleteDC(hdc);
3372 if (temp_bitmap)
3373 DeleteObject(hbitmap);
3376 else if (image->type == ImageTypeMetafile && ((GpMetafile*)image)->hemf)
3378 GpRectF rc;
3380 rc.X = srcx;
3381 rc.Y = srcy;
3382 rc.Width = srcwidth;
3383 rc.Height = srcheight;
3385 return GdipEnumerateMetafileSrcRectDestPoints(graphics, (GpMetafile*)image,
3386 points, count, &rc, srcUnit, play_metafile_proc, image, imageAttributes);
3388 else
3390 WARN("GpImage with nothing we can draw (metafile in wrong state?)\n");
3391 return InvalidParameter;
3394 return Ok;
3397 GpStatus WINGDIPAPI GdipDrawImagePointsRectI(GpGraphics *graphics, GpImage *image,
3398 GDIPCONST GpPoint *points, INT count, INT srcx, INT srcy, INT srcwidth,
3399 INT srcheight, GpUnit srcUnit, GDIPCONST GpImageAttributes* imageAttributes,
3400 DrawImageAbort callback, VOID * callbackData)
3402 GpPointF pointsF[3];
3403 INT i;
3405 TRACE("(%p, %p, %p, %d, %d, %d, %d, %d, %d, %p, %p, %p)\n", graphics, image, points, count,
3406 srcx, srcy, srcwidth, srcheight, srcUnit, imageAttributes, callback,
3407 callbackData);
3409 if(!points || count!=3)
3410 return InvalidParameter;
3412 for(i = 0; i < count; i++){
3413 pointsF[i].X = (REAL)points[i].X;
3414 pointsF[i].Y = (REAL)points[i].Y;
3417 return GdipDrawImagePointsRect(graphics, image, pointsF, count, (REAL)srcx, (REAL)srcy,
3418 (REAL)srcwidth, (REAL)srcheight, srcUnit, imageAttributes,
3419 callback, callbackData);
3422 GpStatus WINGDIPAPI GdipDrawImageRectRect(GpGraphics *graphics, GpImage *image,
3423 REAL dstx, REAL dsty, REAL dstwidth, REAL dstheight, REAL srcx, REAL srcy,
3424 REAL srcwidth, REAL srcheight, GpUnit srcUnit,
3425 GDIPCONST GpImageAttributes* imageattr, DrawImageAbort callback,
3426 VOID * callbackData)
3428 GpPointF points[3];
3430 TRACE("(%p, %p, %.2f, %.2f, %.2f, %.2f, %.2f, %.2f, %.2f, %.2f, %d, %p, %p, %p)\n",
3431 graphics, image, dstx, dsty, dstwidth, dstheight, srcx, srcy,
3432 srcwidth, srcheight, srcUnit, imageattr, callback, callbackData);
3434 points[0].X = dstx;
3435 points[0].Y = dsty;
3436 points[1].X = dstx + dstwidth;
3437 points[1].Y = dsty;
3438 points[2].X = dstx;
3439 points[2].Y = dsty + dstheight;
3441 return GdipDrawImagePointsRect(graphics, image, points, 3, srcx, srcy,
3442 srcwidth, srcheight, srcUnit, imageattr, callback, callbackData);
3445 GpStatus WINGDIPAPI GdipDrawImageRectRectI(GpGraphics *graphics, GpImage *image,
3446 INT dstx, INT dsty, INT dstwidth, INT dstheight, INT srcx, INT srcy,
3447 INT srcwidth, INT srcheight, GpUnit srcUnit,
3448 GDIPCONST GpImageAttributes* imageAttributes, DrawImageAbort callback,
3449 VOID * callbackData)
3451 GpPointF points[3];
3453 TRACE("(%p, %p, %d, %d, %d, %d, %d, %d, %d, %d, %d, %p, %p, %p)\n",
3454 graphics, image, dstx, dsty, dstwidth, dstheight, srcx, srcy,
3455 srcwidth, srcheight, srcUnit, imageAttributes, callback, callbackData);
3457 points[0].X = dstx;
3458 points[0].Y = dsty;
3459 points[1].X = dstx + dstwidth;
3460 points[1].Y = dsty;
3461 points[2].X = dstx;
3462 points[2].Y = dsty + dstheight;
3464 return GdipDrawImagePointsRect(graphics, image, points, 3, srcx, srcy,
3465 srcwidth, srcheight, srcUnit, imageAttributes, callback, callbackData);
3468 GpStatus WINGDIPAPI GdipDrawImageRect(GpGraphics *graphics, GpImage *image,
3469 REAL x, REAL y, REAL width, REAL height)
3471 RectF bounds;
3472 GpUnit unit;
3473 GpStatus ret;
3475 TRACE("(%p, %p, %.2f, %.2f, %.2f, %.2f)\n", graphics, image, x, y, width, height);
3477 if(!graphics || !image)
3478 return InvalidParameter;
3480 ret = GdipGetImageBounds(image, &bounds, &unit);
3481 if(ret != Ok)
3482 return ret;
3484 return GdipDrawImageRectRect(graphics, image, x, y, width, height,
3485 bounds.X, bounds.Y, bounds.Width, bounds.Height,
3486 unit, NULL, NULL, NULL);
3489 GpStatus WINGDIPAPI GdipDrawImageRectI(GpGraphics *graphics, GpImage *image,
3490 INT x, INT y, INT width, INT height)
3492 TRACE("(%p, %p, %d, %d, %d, %d)\n", graphics, image, x, y, width, height);
3494 return GdipDrawImageRect(graphics, image, (REAL)x, (REAL)y, (REAL)width, (REAL)height);
3497 GpStatus WINGDIPAPI GdipDrawLine(GpGraphics *graphics, GpPen *pen, REAL x1,
3498 REAL y1, REAL x2, REAL y2)
3500 INT save_state;
3501 GpPointF pt[2];
3502 GpStatus retval;
3504 TRACE("(%p, %p, %.2f, %.2f, %.2f, %.2f)\n", graphics, pen, x1, y1, x2, y2);
3506 if(!pen || !graphics)
3507 return InvalidParameter;
3509 if(graphics->busy)
3510 return ObjectBusy;
3512 if (!graphics->hdc)
3514 FIXME("graphics object has no HDC\n");
3515 return Ok;
3518 pt[0].X = x1;
3519 pt[0].Y = y1;
3520 pt[1].X = x2;
3521 pt[1].Y = y2;
3523 save_state = prepare_dc(graphics, pen);
3525 retval = draw_polyline(graphics, pen, pt, 2, TRUE);
3527 restore_dc(graphics, save_state);
3529 return retval;
3532 GpStatus WINGDIPAPI GdipDrawLineI(GpGraphics *graphics, GpPen *pen, INT x1,
3533 INT y1, INT x2, INT y2)
3535 INT save_state;
3536 GpPointF pt[2];
3537 GpStatus retval;
3539 TRACE("(%p, %p, %d, %d, %d, %d)\n", graphics, pen, x1, y1, x2, y2);
3541 if(!pen || !graphics)
3542 return InvalidParameter;
3544 if(graphics->busy)
3545 return ObjectBusy;
3547 if (!graphics->hdc)
3549 FIXME("graphics object has no HDC\n");
3550 return Ok;
3553 pt[0].X = (REAL)x1;
3554 pt[0].Y = (REAL)y1;
3555 pt[1].X = (REAL)x2;
3556 pt[1].Y = (REAL)y2;
3558 save_state = prepare_dc(graphics, pen);
3560 retval = draw_polyline(graphics, pen, pt, 2, TRUE);
3562 restore_dc(graphics, save_state);
3564 return retval;
3567 GpStatus WINGDIPAPI GdipDrawLines(GpGraphics *graphics, GpPen *pen, GDIPCONST
3568 GpPointF *points, INT count)
3570 INT save_state;
3571 GpStatus retval;
3573 TRACE("(%p, %p, %p, %d)\n", graphics, pen, points, count);
3575 if(!pen || !graphics || (count < 2))
3576 return InvalidParameter;
3578 if(graphics->busy)
3579 return ObjectBusy;
3581 if (!graphics->hdc)
3583 FIXME("graphics object has no HDC\n");
3584 return Ok;
3587 save_state = prepare_dc(graphics, pen);
3589 retval = draw_polyline(graphics, pen, points, count, TRUE);
3591 restore_dc(graphics, save_state);
3593 return retval;
3596 GpStatus WINGDIPAPI GdipDrawLinesI(GpGraphics *graphics, GpPen *pen, GDIPCONST
3597 GpPoint *points, INT count)
3599 INT save_state;
3600 GpStatus retval;
3601 GpPointF *ptf = NULL;
3602 int i;
3604 TRACE("(%p, %p, %p, %d)\n", graphics, pen, points, count);
3606 if(!pen || !graphics || (count < 2))
3607 return InvalidParameter;
3609 if(graphics->busy)
3610 return ObjectBusy;
3612 if (!graphics->hdc)
3614 FIXME("graphics object has no HDC\n");
3615 return Ok;
3618 ptf = GdipAlloc(count * sizeof(GpPointF));
3619 if(!ptf) return OutOfMemory;
3621 for(i = 0; i < count; i ++){
3622 ptf[i].X = (REAL) points[i].X;
3623 ptf[i].Y = (REAL) points[i].Y;
3626 save_state = prepare_dc(graphics, pen);
3628 retval = draw_polyline(graphics, pen, ptf, count, TRUE);
3630 restore_dc(graphics, save_state);
3632 GdipFree(ptf);
3633 return retval;
3636 GpStatus WINGDIPAPI GdipDrawPath(GpGraphics *graphics, GpPen *pen, GpPath *path)
3638 INT save_state;
3639 GpStatus retval;
3641 TRACE("(%p, %p, %p)\n", graphics, pen, path);
3643 if(!pen || !graphics)
3644 return InvalidParameter;
3646 if(graphics->busy)
3647 return ObjectBusy;
3649 if (!graphics->hdc)
3651 FIXME("graphics object has no HDC\n");
3652 return Ok;
3655 save_state = prepare_dc(graphics, pen);
3657 retval = draw_poly(graphics, pen, path->pathdata.Points,
3658 path->pathdata.Types, path->pathdata.Count, TRUE);
3660 restore_dc(graphics, save_state);
3662 return retval;
3665 GpStatus WINGDIPAPI GdipDrawPie(GpGraphics *graphics, GpPen *pen, REAL x,
3666 REAL y, REAL width, REAL height, REAL startAngle, REAL sweepAngle)
3668 INT save_state;
3670 TRACE("(%p, %p, %.2f, %.2f, %.2f, %.2f, %.2f, %.2f)\n", graphics, pen, x, y,
3671 width, height, startAngle, sweepAngle);
3673 if(!graphics || !pen)
3674 return InvalidParameter;
3676 if(graphics->busy)
3677 return ObjectBusy;
3679 if (!graphics->hdc)
3681 FIXME("graphics object has no HDC\n");
3682 return Ok;
3685 save_state = prepare_dc(graphics, pen);
3686 SelectObject(graphics->hdc, GetStockObject(NULL_BRUSH));
3688 draw_pie(graphics, x, y, width, height, startAngle, sweepAngle);
3690 restore_dc(graphics, save_state);
3692 return Ok;
3695 GpStatus WINGDIPAPI GdipDrawPieI(GpGraphics *graphics, GpPen *pen, INT x,
3696 INT y, INT width, INT height, REAL startAngle, REAL sweepAngle)
3698 TRACE("(%p, %p, %d, %d, %d, %d, %.2f, %.2f)\n", graphics, pen, x, y,
3699 width, height, startAngle, sweepAngle);
3701 return GdipDrawPie(graphics,pen,(REAL)x,(REAL)y,(REAL)width,(REAL)height,startAngle,sweepAngle);
3704 GpStatus WINGDIPAPI GdipDrawRectangle(GpGraphics *graphics, GpPen *pen, REAL x,
3705 REAL y, REAL width, REAL height)
3707 INT save_state;
3708 GpPointF ptf[4];
3709 POINT pti[4];
3711 TRACE("(%p, %p, %.2f, %.2f, %.2f, %.2f)\n", graphics, pen, x, y, width, height);
3713 if(!pen || !graphics)
3714 return InvalidParameter;
3716 if(graphics->busy)
3717 return ObjectBusy;
3719 if (!graphics->hdc)
3721 FIXME("graphics object has no HDC\n");
3722 return Ok;
3725 ptf[0].X = x;
3726 ptf[0].Y = y;
3727 ptf[1].X = x + width;
3728 ptf[1].Y = y;
3729 ptf[2].X = x + width;
3730 ptf[2].Y = y + height;
3731 ptf[3].X = x;
3732 ptf[3].Y = y + height;
3734 save_state = prepare_dc(graphics, pen);
3735 SelectObject(graphics->hdc, GetStockObject(NULL_BRUSH));
3737 transform_and_round_points(graphics, pti, ptf, 4);
3738 Polygon(graphics->hdc, pti, 4);
3740 restore_dc(graphics, save_state);
3742 return Ok;
3745 GpStatus WINGDIPAPI GdipDrawRectangleI(GpGraphics *graphics, GpPen *pen, INT x,
3746 INT y, INT width, INT height)
3748 TRACE("(%p, %p, %d, %d, %d, %d)\n", graphics, pen, x, y, width, height);
3750 return GdipDrawRectangle(graphics,pen,(REAL)x,(REAL)y,(REAL)width,(REAL)height);
3753 GpStatus WINGDIPAPI GdipDrawRectangles(GpGraphics *graphics, GpPen *pen,
3754 GDIPCONST GpRectF* rects, INT count)
3756 GpPointF *ptf;
3757 POINT *pti;
3758 INT save_state, i;
3760 TRACE("(%p, %p, %p, %d)\n", graphics, pen, rects, count);
3762 if(!graphics || !pen || !rects || count < 1)
3763 return InvalidParameter;
3765 if(graphics->busy)
3766 return ObjectBusy;
3768 if (!graphics->hdc)
3770 FIXME("graphics object has no HDC\n");
3771 return Ok;
3774 ptf = GdipAlloc(4 * count * sizeof(GpPointF));
3775 pti = GdipAlloc(4 * count * sizeof(POINT));
3777 if(!ptf || !pti){
3778 GdipFree(ptf);
3779 GdipFree(pti);
3780 return OutOfMemory;
3783 for(i = 0; i < count; i++){
3784 ptf[4 * i + 3].X = ptf[4 * i].X = rects[i].X;
3785 ptf[4 * i + 1].Y = ptf[4 * i].Y = rects[i].Y;
3786 ptf[4 * i + 2].X = ptf[4 * i + 1].X = rects[i].X + rects[i].Width;
3787 ptf[4 * i + 3].Y = ptf[4 * i + 2].Y = rects[i].Y + rects[i].Height;
3790 save_state = prepare_dc(graphics, pen);
3791 SelectObject(graphics->hdc, GetStockObject(NULL_BRUSH));
3793 transform_and_round_points(graphics, pti, ptf, 4 * count);
3795 for(i = 0; i < count; i++)
3796 Polygon(graphics->hdc, &pti[4 * i], 4);
3798 restore_dc(graphics, save_state);
3800 GdipFree(ptf);
3801 GdipFree(pti);
3803 return Ok;
3806 GpStatus WINGDIPAPI GdipDrawRectanglesI(GpGraphics *graphics, GpPen *pen,
3807 GDIPCONST GpRect* rects, INT count)
3809 GpRectF *rectsF;
3810 GpStatus ret;
3811 INT i;
3813 TRACE("(%p, %p, %p, %d)\n", graphics, pen, rects, count);
3815 if(!rects || count<=0)
3816 return InvalidParameter;
3818 rectsF = GdipAlloc(sizeof(GpRectF) * count);
3819 if(!rectsF)
3820 return OutOfMemory;
3822 for(i = 0;i < count;i++){
3823 rectsF[i].X = (REAL)rects[i].X;
3824 rectsF[i].Y = (REAL)rects[i].Y;
3825 rectsF[i].Width = (REAL)rects[i].Width;
3826 rectsF[i].Height = (REAL)rects[i].Height;
3829 ret = GdipDrawRectangles(graphics, pen, rectsF, count);
3830 GdipFree(rectsF);
3832 return ret;
3835 GpStatus WINGDIPAPI GdipFillClosedCurve2(GpGraphics *graphics, GpBrush *brush,
3836 GDIPCONST GpPointF *points, INT count, REAL tension, GpFillMode fill)
3838 GpPath *path;
3839 GpStatus stat;
3841 TRACE("(%p, %p, %p, %d, %.2f, %d)\n", graphics, brush, points,
3842 count, tension, fill);
3844 if(!graphics || !brush || !points)
3845 return InvalidParameter;
3847 if(graphics->busy)
3848 return ObjectBusy;
3850 if(count == 1) /* Do nothing */
3851 return Ok;
3853 stat = GdipCreatePath(fill, &path);
3854 if(stat != Ok)
3855 return stat;
3857 stat = GdipAddPathClosedCurve2(path, points, count, tension);
3858 if(stat != Ok){
3859 GdipDeletePath(path);
3860 return stat;
3863 stat = GdipFillPath(graphics, brush, path);
3864 if(stat != Ok){
3865 GdipDeletePath(path);
3866 return stat;
3869 GdipDeletePath(path);
3871 return Ok;
3874 GpStatus WINGDIPAPI GdipFillClosedCurve2I(GpGraphics *graphics, GpBrush *brush,
3875 GDIPCONST GpPoint *points, INT count, REAL tension, GpFillMode fill)
3877 GpPointF *ptf;
3878 GpStatus stat;
3879 INT i;
3881 TRACE("(%p, %p, %p, %d, %.2f, %d)\n", graphics, brush, points,
3882 count, tension, fill);
3884 if(!points || count == 0)
3885 return InvalidParameter;
3887 if(count == 1) /* Do nothing */
3888 return Ok;
3890 ptf = GdipAlloc(sizeof(GpPointF)*count);
3891 if(!ptf)
3892 return OutOfMemory;
3894 for(i = 0;i < count;i++){
3895 ptf[i].X = (REAL)points[i].X;
3896 ptf[i].Y = (REAL)points[i].Y;
3899 stat = GdipFillClosedCurve2(graphics, brush, ptf, count, tension, fill);
3901 GdipFree(ptf);
3903 return stat;
3906 GpStatus WINGDIPAPI GdipFillClosedCurve(GpGraphics *graphics, GpBrush *brush,
3907 GDIPCONST GpPointF *points, INT count)
3909 TRACE("(%p, %p, %p, %d)\n", graphics, brush, points, count);
3910 return GdipFillClosedCurve2(graphics, brush, points, count,
3911 0.5f, FillModeAlternate);
3914 GpStatus WINGDIPAPI GdipFillClosedCurveI(GpGraphics *graphics, GpBrush *brush,
3915 GDIPCONST GpPoint *points, INT count)
3917 TRACE("(%p, %p, %p, %d)\n", graphics, brush, points, count);
3918 return GdipFillClosedCurve2I(graphics, brush, points, count,
3919 0.5f, FillModeAlternate);
3922 GpStatus WINGDIPAPI GdipFillEllipse(GpGraphics *graphics, GpBrush *brush, REAL x,
3923 REAL y, REAL width, REAL height)
3925 GpStatus stat;
3926 GpPath *path;
3928 TRACE("(%p, %p, %.2f, %.2f, %.2f, %.2f)\n", graphics, brush, x, y, width, height);
3930 if(!graphics || !brush)
3931 return InvalidParameter;
3933 if(graphics->busy)
3934 return ObjectBusy;
3936 stat = GdipCreatePath(FillModeAlternate, &path);
3938 if (stat == Ok)
3940 stat = GdipAddPathEllipse(path, x, y, width, height);
3942 if (stat == Ok)
3943 stat = GdipFillPath(graphics, brush, path);
3945 GdipDeletePath(path);
3948 return stat;
3951 GpStatus WINGDIPAPI GdipFillEllipseI(GpGraphics *graphics, GpBrush *brush, INT x,
3952 INT y, INT width, INT height)
3954 TRACE("(%p, %p, %d, %d, %d, %d)\n", graphics, brush, x, y, width, height);
3956 return GdipFillEllipse(graphics,brush,(REAL)x,(REAL)y,(REAL)width,(REAL)height);
3959 static GpStatus GDI32_GdipFillPath(GpGraphics *graphics, GpBrush *brush, GpPath *path)
3961 INT save_state;
3962 GpStatus retval;
3964 if(!graphics->hdc || !brush_can_fill_path(brush))
3965 return NotImplemented;
3967 save_state = SaveDC(graphics->hdc);
3968 EndPath(graphics->hdc);
3969 SetPolyFillMode(graphics->hdc, (path->fill == FillModeAlternate ? ALTERNATE
3970 : WINDING));
3972 BeginPath(graphics->hdc);
3973 retval = draw_poly(graphics, NULL, path->pathdata.Points,
3974 path->pathdata.Types, path->pathdata.Count, FALSE);
3976 if(retval != Ok)
3977 goto end;
3979 EndPath(graphics->hdc);
3980 brush_fill_path(graphics, brush);
3982 retval = Ok;
3984 end:
3985 RestoreDC(graphics->hdc, save_state);
3987 return retval;
3990 static GpStatus SOFTWARE_GdipFillPath(GpGraphics *graphics, GpBrush *brush, GpPath *path)
3992 GpStatus stat;
3993 GpRegion *rgn;
3995 if (!brush_can_fill_pixels(brush))
3996 return NotImplemented;
3998 /* FIXME: This could probably be done more efficiently without regions. */
4000 stat = GdipCreateRegionPath(path, &rgn);
4002 if (stat == Ok)
4004 stat = GdipFillRegion(graphics, brush, rgn);
4006 GdipDeleteRegion(rgn);
4009 return stat;
4012 GpStatus WINGDIPAPI GdipFillPath(GpGraphics *graphics, GpBrush *brush, GpPath *path)
4014 GpStatus stat = NotImplemented;
4016 TRACE("(%p, %p, %p)\n", graphics, brush, path);
4018 if(!brush || !graphics || !path)
4019 return InvalidParameter;
4021 if(graphics->busy)
4022 return ObjectBusy;
4024 if (!graphics->image)
4025 stat = GDI32_GdipFillPath(graphics, brush, path);
4027 if (stat == NotImplemented)
4028 stat = SOFTWARE_GdipFillPath(graphics, brush, path);
4030 if (stat == NotImplemented)
4032 FIXME("Not implemented for brushtype %i\n", brush->bt);
4033 stat = Ok;
4036 return stat;
4039 GpStatus WINGDIPAPI GdipFillPie(GpGraphics *graphics, GpBrush *brush, REAL x,
4040 REAL y, REAL width, REAL height, REAL startAngle, REAL sweepAngle)
4042 GpStatus stat;
4043 GpPath *path;
4045 TRACE("(%p, %p, %.2f, %.2f, %.2f, %.2f, %.2f, %.2f)\n",
4046 graphics, brush, x, y, width, height, startAngle, sweepAngle);
4048 if(!graphics || !brush)
4049 return InvalidParameter;
4051 if(graphics->busy)
4052 return ObjectBusy;
4054 stat = GdipCreatePath(FillModeAlternate, &path);
4056 if (stat == Ok)
4058 stat = GdipAddPathPie(path, x, y, width, height, startAngle, sweepAngle);
4060 if (stat == Ok)
4061 stat = GdipFillPath(graphics, brush, path);
4063 GdipDeletePath(path);
4066 return stat;
4069 GpStatus WINGDIPAPI GdipFillPieI(GpGraphics *graphics, GpBrush *brush, INT x,
4070 INT y, INT width, INT height, REAL startAngle, REAL sweepAngle)
4072 TRACE("(%p, %p, %d, %d, %d, %d, %.2f, %.2f)\n",
4073 graphics, brush, x, y, width, height, startAngle, sweepAngle);
4075 return GdipFillPie(graphics,brush,(REAL)x,(REAL)y,(REAL)width,(REAL)height,startAngle,sweepAngle);
4078 GpStatus WINGDIPAPI GdipFillPolygon(GpGraphics *graphics, GpBrush *brush,
4079 GDIPCONST GpPointF *points, INT count, GpFillMode fillMode)
4081 GpStatus stat;
4082 GpPath *path;
4084 TRACE("(%p, %p, %p, %d, %d)\n", graphics, brush, points, count, fillMode);
4086 if(!graphics || !brush || !points || !count)
4087 return InvalidParameter;
4089 if(graphics->busy)
4090 return ObjectBusy;
4092 stat = GdipCreatePath(fillMode, &path);
4094 if (stat == Ok)
4096 stat = GdipAddPathPolygon(path, points, count);
4098 if (stat == Ok)
4099 stat = GdipFillPath(graphics, brush, path);
4101 GdipDeletePath(path);
4104 return stat;
4107 GpStatus WINGDIPAPI GdipFillPolygonI(GpGraphics *graphics, GpBrush *brush,
4108 GDIPCONST GpPoint *points, INT count, GpFillMode fillMode)
4110 GpStatus stat;
4111 GpPath *path;
4113 TRACE("(%p, %p, %p, %d, %d)\n", graphics, brush, points, count, fillMode);
4115 if(!graphics || !brush || !points || !count)
4116 return InvalidParameter;
4118 if(graphics->busy)
4119 return ObjectBusy;
4121 stat = GdipCreatePath(fillMode, &path);
4123 if (stat == Ok)
4125 stat = GdipAddPathPolygonI(path, points, count);
4127 if (stat == Ok)
4128 stat = GdipFillPath(graphics, brush, path);
4130 GdipDeletePath(path);
4133 return stat;
4136 GpStatus WINGDIPAPI GdipFillPolygon2(GpGraphics *graphics, GpBrush *brush,
4137 GDIPCONST GpPointF *points, INT count)
4139 TRACE("(%p, %p, %p, %d)\n", graphics, brush, points, count);
4141 return GdipFillPolygon(graphics, brush, points, count, FillModeAlternate);
4144 GpStatus WINGDIPAPI GdipFillPolygon2I(GpGraphics *graphics, GpBrush *brush,
4145 GDIPCONST GpPoint *points, INT count)
4147 TRACE("(%p, %p, %p, %d)\n", graphics, brush, points, count);
4149 return GdipFillPolygonI(graphics, brush, points, count, FillModeAlternate);
4152 GpStatus WINGDIPAPI GdipFillRectangle(GpGraphics *graphics, GpBrush *brush,
4153 REAL x, REAL y, REAL width, REAL height)
4155 GpStatus stat;
4156 GpPath *path;
4158 TRACE("(%p, %p, %.2f, %.2f, %.2f, %.2f)\n", graphics, brush, x, y, width, height);
4160 if(!graphics || !brush)
4161 return InvalidParameter;
4163 if(graphics->busy)
4164 return ObjectBusy;
4166 stat = GdipCreatePath(FillModeAlternate, &path);
4168 if (stat == Ok)
4170 stat = GdipAddPathRectangle(path, x, y, width, height);
4172 if (stat == Ok)
4173 stat = GdipFillPath(graphics, brush, path);
4175 GdipDeletePath(path);
4178 return stat;
4181 GpStatus WINGDIPAPI GdipFillRectangleI(GpGraphics *graphics, GpBrush *brush,
4182 INT x, INT y, INT width, INT height)
4184 TRACE("(%p, %p, %d, %d, %d, %d)\n", graphics, brush, x, y, width, height);
4186 return GdipFillRectangle(graphics, brush, x, y, width, height);
4189 GpStatus WINGDIPAPI GdipFillRectangles(GpGraphics *graphics, GpBrush *brush, GDIPCONST GpRectF *rects,
4190 INT count)
4192 GpStatus ret;
4193 INT i;
4195 TRACE("(%p, %p, %p, %d)\n", graphics, brush, rects, count);
4197 if(!rects)
4198 return InvalidParameter;
4200 for(i = 0; i < count; i++){
4201 ret = GdipFillRectangle(graphics, brush, rects[i].X, rects[i].Y, rects[i].Width, rects[i].Height);
4202 if(ret != Ok) return ret;
4205 return Ok;
4208 GpStatus WINGDIPAPI GdipFillRectanglesI(GpGraphics *graphics, GpBrush *brush, GDIPCONST GpRect *rects,
4209 INT count)
4211 GpRectF *rectsF;
4212 GpStatus ret;
4213 INT i;
4215 TRACE("(%p, %p, %p, %d)\n", graphics, brush, rects, count);
4217 if(!rects || count <= 0)
4218 return InvalidParameter;
4220 rectsF = GdipAlloc(sizeof(GpRectF)*count);
4221 if(!rectsF)
4222 return OutOfMemory;
4224 for(i = 0; i < count; i++){
4225 rectsF[i].X = (REAL)rects[i].X;
4226 rectsF[i].Y = (REAL)rects[i].Y;
4227 rectsF[i].X = (REAL)rects[i].Width;
4228 rectsF[i].Height = (REAL)rects[i].Height;
4231 ret = GdipFillRectangles(graphics,brush,rectsF,count);
4232 GdipFree(rectsF);
4234 return ret;
4237 static GpStatus GDI32_GdipFillRegion(GpGraphics* graphics, GpBrush* brush,
4238 GpRegion* region)
4240 INT save_state;
4241 GpStatus status;
4242 HRGN hrgn;
4243 RECT rc;
4245 if(!graphics->hdc || !brush_can_fill_path(brush))
4246 return NotImplemented;
4248 status = GdipGetRegionHRgn(region, graphics, &hrgn);
4249 if(status != Ok)
4250 return status;
4252 save_state = SaveDC(graphics->hdc);
4253 EndPath(graphics->hdc);
4255 ExtSelectClipRgn(graphics->hdc, hrgn, RGN_AND);
4257 if (GetClipBox(graphics->hdc, &rc) != NULLREGION)
4259 BeginPath(graphics->hdc);
4260 Rectangle(graphics->hdc, rc.left, rc.top, rc.right, rc.bottom);
4261 EndPath(graphics->hdc);
4263 brush_fill_path(graphics, brush);
4266 RestoreDC(graphics->hdc, save_state);
4268 DeleteObject(hrgn);
4270 return Ok;
4273 static GpStatus SOFTWARE_GdipFillRegion(GpGraphics *graphics, GpBrush *brush,
4274 GpRegion* region)
4276 GpStatus stat;
4277 GpRegion *temp_region;
4278 GpMatrix world_to_device;
4279 GpRectF graphics_bounds;
4280 DWORD *pixel_data;
4281 HRGN hregion;
4282 RECT bound_rect;
4283 GpRect gp_bound_rect;
4285 if (!brush_can_fill_pixels(brush))
4286 return NotImplemented;
4288 stat = get_graphics_bounds(graphics, &graphics_bounds);
4290 if (stat == Ok)
4291 stat = GdipCloneRegion(region, &temp_region);
4293 if (stat == Ok)
4295 stat = get_graphics_transform(graphics, CoordinateSpaceDevice,
4296 CoordinateSpaceWorld, &world_to_device);
4298 if (stat == Ok)
4299 stat = GdipTransformRegion(temp_region, &world_to_device);
4301 if (stat == Ok)
4302 stat = GdipCombineRegionRect(temp_region, &graphics_bounds, CombineModeIntersect);
4304 if (stat == Ok)
4305 stat = GdipGetRegionHRgn(temp_region, NULL, &hregion);
4307 GdipDeleteRegion(temp_region);
4310 if (stat == Ok && GetRgnBox(hregion, &bound_rect) == NULLREGION)
4312 DeleteObject(hregion);
4313 return Ok;
4316 if (stat == Ok)
4318 gp_bound_rect.X = bound_rect.left;
4319 gp_bound_rect.Y = bound_rect.top;
4320 gp_bound_rect.Width = bound_rect.right - bound_rect.left;
4321 gp_bound_rect.Height = bound_rect.bottom - bound_rect.top;
4323 pixel_data = GdipAlloc(sizeof(*pixel_data) * gp_bound_rect.Width * gp_bound_rect.Height);
4324 if (!pixel_data)
4325 stat = OutOfMemory;
4327 if (stat == Ok)
4329 stat = brush_fill_pixels(graphics, brush, pixel_data,
4330 &gp_bound_rect, gp_bound_rect.Width);
4332 if (stat == Ok)
4333 stat = alpha_blend_pixels_hrgn(graphics, gp_bound_rect.X,
4334 gp_bound_rect.Y, (BYTE*)pixel_data, gp_bound_rect.Width,
4335 gp_bound_rect.Height, gp_bound_rect.Width * 4, hregion);
4337 GdipFree(pixel_data);
4340 DeleteObject(hregion);
4343 return stat;
4346 /*****************************************************************************
4347 * GdipFillRegion [GDIPLUS.@]
4349 GpStatus WINGDIPAPI GdipFillRegion(GpGraphics* graphics, GpBrush* brush,
4350 GpRegion* region)
4352 GpStatus stat = NotImplemented;
4354 TRACE("(%p, %p, %p)\n", graphics, brush, region);
4356 if (!(graphics && brush && region))
4357 return InvalidParameter;
4359 if(graphics->busy)
4360 return ObjectBusy;
4362 if (!graphics->image)
4363 stat = GDI32_GdipFillRegion(graphics, brush, region);
4365 if (stat == NotImplemented)
4366 stat = SOFTWARE_GdipFillRegion(graphics, brush, region);
4368 if (stat == NotImplemented)
4370 FIXME("not implemented for brushtype %i\n", brush->bt);
4371 stat = Ok;
4374 return stat;
4377 GpStatus WINGDIPAPI GdipFlush(GpGraphics *graphics, GpFlushIntention intention)
4379 TRACE("(%p,%u)\n", graphics, intention);
4381 if(!graphics)
4382 return InvalidParameter;
4384 if(graphics->busy)
4385 return ObjectBusy;
4387 /* We have no internal operation queue, so there's no need to clear it. */
4389 if (graphics->hdc)
4390 GdiFlush();
4392 return Ok;
4395 /*****************************************************************************
4396 * GdipGetClipBounds [GDIPLUS.@]
4398 GpStatus WINGDIPAPI GdipGetClipBounds(GpGraphics *graphics, GpRectF *rect)
4400 TRACE("(%p, %p)\n", graphics, rect);
4402 if(!graphics)
4403 return InvalidParameter;
4405 if(graphics->busy)
4406 return ObjectBusy;
4408 return GdipGetRegionBounds(graphics->clip, graphics, rect);
4411 /*****************************************************************************
4412 * GdipGetClipBoundsI [GDIPLUS.@]
4414 GpStatus WINGDIPAPI GdipGetClipBoundsI(GpGraphics *graphics, GpRect *rect)
4416 TRACE("(%p, %p)\n", graphics, rect);
4418 if(!graphics)
4419 return InvalidParameter;
4421 if(graphics->busy)
4422 return ObjectBusy;
4424 return GdipGetRegionBoundsI(graphics->clip, graphics, rect);
4427 /* FIXME: Compositing mode is not used anywhere except the getter/setter. */
4428 GpStatus WINGDIPAPI GdipGetCompositingMode(GpGraphics *graphics,
4429 CompositingMode *mode)
4431 TRACE("(%p, %p)\n", graphics, mode);
4433 if(!graphics || !mode)
4434 return InvalidParameter;
4436 if(graphics->busy)
4437 return ObjectBusy;
4439 *mode = graphics->compmode;
4441 return Ok;
4444 /* FIXME: Compositing quality is not used anywhere except the getter/setter. */
4445 GpStatus WINGDIPAPI GdipGetCompositingQuality(GpGraphics *graphics,
4446 CompositingQuality *quality)
4448 TRACE("(%p, %p)\n", graphics, quality);
4450 if(!graphics || !quality)
4451 return InvalidParameter;
4453 if(graphics->busy)
4454 return ObjectBusy;
4456 *quality = graphics->compqual;
4458 return Ok;
4461 /* FIXME: Interpolation mode is not used anywhere except the getter/setter. */
4462 GpStatus WINGDIPAPI GdipGetInterpolationMode(GpGraphics *graphics,
4463 InterpolationMode *mode)
4465 TRACE("(%p, %p)\n", graphics, mode);
4467 if(!graphics || !mode)
4468 return InvalidParameter;
4470 if(graphics->busy)
4471 return ObjectBusy;
4473 *mode = graphics->interpolation;
4475 return Ok;
4478 /* FIXME: Need to handle color depths less than 24bpp */
4479 GpStatus WINGDIPAPI GdipGetNearestColor(GpGraphics *graphics, ARGB* argb)
4481 FIXME("(%p, %p): Passing color unmodified\n", graphics, argb);
4483 if(!graphics || !argb)
4484 return InvalidParameter;
4486 if(graphics->busy)
4487 return ObjectBusy;
4489 return Ok;
4492 GpStatus WINGDIPAPI GdipGetPageScale(GpGraphics *graphics, REAL *scale)
4494 TRACE("(%p, %p)\n", graphics, scale);
4496 if(!graphics || !scale)
4497 return InvalidParameter;
4499 if(graphics->busy)
4500 return ObjectBusy;
4502 *scale = graphics->scale;
4504 return Ok;
4507 GpStatus WINGDIPAPI GdipGetPageUnit(GpGraphics *graphics, GpUnit *unit)
4509 TRACE("(%p, %p)\n", graphics, unit);
4511 if(!graphics || !unit)
4512 return InvalidParameter;
4514 if(graphics->busy)
4515 return ObjectBusy;
4517 *unit = graphics->unit;
4519 return Ok;
4522 /* FIXME: Pixel offset mode is not used anywhere except the getter/setter. */
4523 GpStatus WINGDIPAPI GdipGetPixelOffsetMode(GpGraphics *graphics, PixelOffsetMode
4524 *mode)
4526 TRACE("(%p, %p)\n", graphics, mode);
4528 if(!graphics || !mode)
4529 return InvalidParameter;
4531 if(graphics->busy)
4532 return ObjectBusy;
4534 *mode = graphics->pixeloffset;
4536 return Ok;
4539 /* FIXME: Smoothing mode is not used anywhere except the getter/setter. */
4540 GpStatus WINGDIPAPI GdipGetSmoothingMode(GpGraphics *graphics, SmoothingMode *mode)
4542 TRACE("(%p, %p)\n", graphics, mode);
4544 if(!graphics || !mode)
4545 return InvalidParameter;
4547 if(graphics->busy)
4548 return ObjectBusy;
4550 *mode = graphics->smoothing;
4552 return Ok;
4555 GpStatus WINGDIPAPI GdipGetTextContrast(GpGraphics *graphics, UINT *contrast)
4557 TRACE("(%p, %p)\n", graphics, contrast);
4559 if(!graphics || !contrast)
4560 return InvalidParameter;
4562 *contrast = graphics->textcontrast;
4564 return Ok;
4567 /* FIXME: Text rendering hint is not used anywhere except the getter/setter. */
4568 GpStatus WINGDIPAPI GdipGetTextRenderingHint(GpGraphics *graphics,
4569 TextRenderingHint *hint)
4571 TRACE("(%p, %p)\n", graphics, hint);
4573 if(!graphics || !hint)
4574 return InvalidParameter;
4576 if(graphics->busy)
4577 return ObjectBusy;
4579 *hint = graphics->texthint;
4581 return Ok;
4584 GpStatus WINGDIPAPI GdipGetVisibleClipBounds(GpGraphics *graphics, GpRectF *rect)
4586 GpRegion *clip_rgn;
4587 GpStatus stat;
4589 TRACE("(%p, %p)\n", graphics, rect);
4591 if(!graphics || !rect)
4592 return InvalidParameter;
4594 if(graphics->busy)
4595 return ObjectBusy;
4597 /* intersect window and graphics clipping regions */
4598 if((stat = GdipCreateRegion(&clip_rgn)) != Ok)
4599 return stat;
4601 if((stat = get_visible_clip_region(graphics, clip_rgn)) != Ok)
4602 goto cleanup;
4604 /* get bounds of the region */
4605 stat = GdipGetRegionBounds(clip_rgn, graphics, rect);
4607 cleanup:
4608 GdipDeleteRegion(clip_rgn);
4610 return stat;
4613 GpStatus WINGDIPAPI GdipGetVisibleClipBoundsI(GpGraphics *graphics, GpRect *rect)
4615 GpRectF rectf;
4616 GpStatus stat;
4618 TRACE("(%p, %p)\n", graphics, rect);
4620 if(!graphics || !rect)
4621 return InvalidParameter;
4623 if((stat = GdipGetVisibleClipBounds(graphics, &rectf)) == Ok)
4625 rect->X = gdip_round(rectf.X);
4626 rect->Y = gdip_round(rectf.Y);
4627 rect->Width = gdip_round(rectf.Width);
4628 rect->Height = gdip_round(rectf.Height);
4631 return stat;
4634 GpStatus WINGDIPAPI GdipGetWorldTransform(GpGraphics *graphics, GpMatrix *matrix)
4636 TRACE("(%p, %p)\n", graphics, matrix);
4638 if(!graphics || !matrix)
4639 return InvalidParameter;
4641 if(graphics->busy)
4642 return ObjectBusy;
4644 *matrix = graphics->worldtrans;
4645 return Ok;
4648 GpStatus WINGDIPAPI GdipGraphicsClear(GpGraphics *graphics, ARGB color)
4650 GpSolidFill *brush;
4651 GpStatus stat;
4652 GpRectF wnd_rect;
4654 TRACE("(%p, %x)\n", graphics, color);
4656 if(!graphics)
4657 return InvalidParameter;
4659 if(graphics->busy)
4660 return ObjectBusy;
4662 if((stat = GdipCreateSolidFill(color, &brush)) != Ok)
4663 return stat;
4665 if((stat = get_graphics_bounds(graphics, &wnd_rect)) != Ok){
4666 GdipDeleteBrush((GpBrush*)brush);
4667 return stat;
4670 GdipFillRectangle(graphics, (GpBrush*)brush, wnd_rect.X, wnd_rect.Y,
4671 wnd_rect.Width, wnd_rect.Height);
4673 GdipDeleteBrush((GpBrush*)brush);
4675 return Ok;
4678 GpStatus WINGDIPAPI GdipIsClipEmpty(GpGraphics *graphics, BOOL *res)
4680 TRACE("(%p, %p)\n", graphics, res);
4682 if(!graphics || !res)
4683 return InvalidParameter;
4685 return GdipIsEmptyRegion(graphics->clip, graphics, res);
4688 GpStatus WINGDIPAPI GdipIsVisiblePoint(GpGraphics *graphics, REAL x, REAL y, BOOL *result)
4690 GpStatus stat;
4691 GpRegion* rgn;
4692 GpPointF pt;
4694 TRACE("(%p, %.2f, %.2f, %p)\n", graphics, x, y, result);
4696 if(!graphics || !result)
4697 return InvalidParameter;
4699 if(graphics->busy)
4700 return ObjectBusy;
4702 pt.X = x;
4703 pt.Y = y;
4704 if((stat = GdipTransformPoints(graphics, CoordinateSpaceDevice,
4705 CoordinateSpaceWorld, &pt, 1)) != Ok)
4706 return stat;
4708 if((stat = GdipCreateRegion(&rgn)) != Ok)
4709 return stat;
4711 if((stat = get_visible_clip_region(graphics, rgn)) != Ok)
4712 goto cleanup;
4714 stat = GdipIsVisibleRegionPoint(rgn, pt.X, pt.Y, graphics, result);
4716 cleanup:
4717 GdipDeleteRegion(rgn);
4718 return stat;
4721 GpStatus WINGDIPAPI GdipIsVisiblePointI(GpGraphics *graphics, INT x, INT y, BOOL *result)
4723 return GdipIsVisiblePoint(graphics, (REAL)x, (REAL)y, result);
4726 GpStatus WINGDIPAPI GdipIsVisibleRect(GpGraphics *graphics, REAL x, REAL y, REAL width, REAL height, BOOL *result)
4728 GpStatus stat;
4729 GpRegion* rgn;
4730 GpPointF pts[2];
4732 TRACE("(%p %.2f %.2f %.2f %.2f %p)\n", graphics, x, y, width, height, result);
4734 if(!graphics || !result)
4735 return InvalidParameter;
4737 if(graphics->busy)
4738 return ObjectBusy;
4740 pts[0].X = x;
4741 pts[0].Y = y;
4742 pts[1].X = x + width;
4743 pts[1].Y = y + height;
4745 if((stat = GdipTransformPoints(graphics, CoordinateSpaceDevice,
4746 CoordinateSpaceWorld, pts, 2)) != Ok)
4747 return stat;
4749 pts[1].X -= pts[0].X;
4750 pts[1].Y -= pts[0].Y;
4752 if((stat = GdipCreateRegion(&rgn)) != Ok)
4753 return stat;
4755 if((stat = get_visible_clip_region(graphics, rgn)) != Ok)
4756 goto cleanup;
4758 stat = GdipIsVisibleRegionRect(rgn, pts[0].X, pts[0].Y, pts[1].X, pts[1].Y, graphics, result);
4760 cleanup:
4761 GdipDeleteRegion(rgn);
4762 return stat;
4765 GpStatus WINGDIPAPI GdipIsVisibleRectI(GpGraphics *graphics, INT x, INT y, INT width, INT height, BOOL *result)
4767 return GdipIsVisibleRect(graphics, (REAL)x, (REAL)y, (REAL)width, (REAL)height, result);
4770 GpStatus gdip_format_string(HDC hdc,
4771 GDIPCONST WCHAR *string, INT length, GDIPCONST GpFont *font,
4772 GDIPCONST RectF *rect, GDIPCONST GpStringFormat *format,
4773 gdip_format_string_callback callback, void *user_data)
4775 WCHAR* stringdup;
4776 int sum = 0, height = 0, fit, fitcpy, i, j, lret, nwidth,
4777 nheight, lineend, lineno = 0;
4778 RectF bounds;
4779 StringAlignment halign;
4780 GpStatus stat = Ok;
4781 SIZE size;
4782 HotkeyPrefix hkprefix;
4783 INT *hotkeyprefix_offsets=NULL;
4784 INT hotkeyprefix_count=0;
4785 INT hotkeyprefix_pos=0, hotkeyprefix_end_pos=0;
4786 int seen_prefix=0;
4788 if(length == -1) length = lstrlenW(string);
4790 stringdup = GdipAlloc((length + 1) * sizeof(WCHAR));
4791 if(!stringdup) return OutOfMemory;
4793 nwidth = rect->Width;
4794 nheight = rect->Height;
4796 if (format)
4797 hkprefix = format->hkprefix;
4798 else
4799 hkprefix = HotkeyPrefixNone;
4801 if (hkprefix == HotkeyPrefixShow)
4803 for (i=0; i<length; i++)
4805 if (string[i] == '&')
4806 hotkeyprefix_count++;
4810 if (hotkeyprefix_count)
4811 hotkeyprefix_offsets = GdipAlloc(sizeof(INT) * hotkeyprefix_count);
4813 hotkeyprefix_count = 0;
4815 for(i = 0, j = 0; i < length; i++){
4816 /* FIXME: This makes the indexes passed to callback inaccurate. */
4817 if(!isprintW(string[i]) && (string[i] != '\n'))
4818 continue;
4820 /* FIXME: tabs should be handled using tabstops from stringformat */
4821 if (string[i] == '\t')
4822 continue;
4824 if (seen_prefix && hkprefix == HotkeyPrefixShow && string[i] != '&')
4825 hotkeyprefix_offsets[hotkeyprefix_count++] = j;
4826 else if (!seen_prefix && hkprefix != HotkeyPrefixNone && string[i] == '&')
4828 seen_prefix = 1;
4829 continue;
4832 seen_prefix = 0;
4834 stringdup[j] = string[i];
4835 j++;
4838 length = j;
4840 if (format) halign = format->align;
4841 else halign = StringAlignmentNear;
4843 while(sum < length){
4844 GetTextExtentExPointW(hdc, stringdup + sum, length - sum,
4845 nwidth, &fit, NULL, &size);
4846 fitcpy = fit;
4848 if(fit == 0)
4849 break;
4851 for(lret = 0; lret < fit; lret++)
4852 if(*(stringdup + sum + lret) == '\n')
4853 break;
4855 /* Line break code (may look strange, but it imitates windows). */
4856 if(lret < fit)
4857 lineend = fit = lret; /* this is not an off-by-one error */
4858 else if(fit < (length - sum)){
4859 if(*(stringdup + sum + fit) == ' ')
4860 while(*(stringdup + sum + fit) == ' ')
4861 fit++;
4862 else
4863 while(*(stringdup + sum + fit - 1) != ' '){
4864 fit--;
4866 if(*(stringdup + sum + fit) == '\t')
4867 break;
4869 if(fit == 0){
4870 fit = fitcpy;
4871 break;
4874 lineend = fit;
4875 while(*(stringdup + sum + lineend - 1) == ' ' ||
4876 *(stringdup + sum + lineend - 1) == '\t')
4877 lineend--;
4879 else
4880 lineend = fit;
4882 GetTextExtentExPointW(hdc, stringdup + sum, lineend,
4883 nwidth, &j, NULL, &size);
4885 bounds.Width = size.cx;
4887 if(height + size.cy > nheight)
4888 bounds.Height = nheight - (height + size.cy);
4889 else
4890 bounds.Height = size.cy;
4892 bounds.Y = rect->Y + height;
4894 switch (halign)
4896 case StringAlignmentNear:
4897 default:
4898 bounds.X = rect->X;
4899 break;
4900 case StringAlignmentCenter:
4901 bounds.X = rect->X + (rect->Width/2) - (bounds.Width/2);
4902 break;
4903 case StringAlignmentFar:
4904 bounds.X = rect->X + rect->Width - bounds.Width;
4905 break;
4908 for (hotkeyprefix_end_pos=hotkeyprefix_pos; hotkeyprefix_end_pos<hotkeyprefix_count; hotkeyprefix_end_pos++)
4909 if (hotkeyprefix_offsets[hotkeyprefix_end_pos] >= sum + lineend)
4910 break;
4912 stat = callback(hdc, stringdup, sum, lineend,
4913 font, rect, format, lineno, &bounds,
4914 &hotkeyprefix_offsets[hotkeyprefix_pos],
4915 hotkeyprefix_end_pos-hotkeyprefix_pos, user_data);
4917 if (stat != Ok)
4918 break;
4920 sum += fit + (lret < fitcpy ? 1 : 0);
4921 height += size.cy;
4922 lineno++;
4924 hotkeyprefix_pos = hotkeyprefix_end_pos;
4926 if(height > nheight)
4927 break;
4929 /* Stop if this was a linewrap (but not if it was a linebreak). */
4930 if ((lret == fitcpy) && format &&
4931 (format->attr & (StringFormatFlagsNoWrap | StringFormatFlagsLineLimit)))
4932 break;
4935 GdipFree(stringdup);
4936 GdipFree(hotkeyprefix_offsets);
4938 return stat;
4941 struct measure_ranges_args {
4942 GpRegion **regions;
4943 REAL rel_width, rel_height;
4946 static GpStatus measure_ranges_callback(HDC hdc,
4947 GDIPCONST WCHAR *string, INT index, INT length, GDIPCONST GpFont *font,
4948 GDIPCONST RectF *rect, GDIPCONST GpStringFormat *format,
4949 INT lineno, const RectF *bounds, INT *underlined_indexes,
4950 INT underlined_index_count, void *user_data)
4952 int i;
4953 GpStatus stat = Ok;
4954 struct measure_ranges_args *args = user_data;
4956 for (i=0; i<format->range_count; i++)
4958 INT range_start = max(index, format->character_ranges[i].First);
4959 INT range_end = min(index+length, format->character_ranges[i].First+format->character_ranges[i].Length);
4960 if (range_start < range_end)
4962 GpRectF range_rect;
4963 SIZE range_size;
4965 range_rect.Y = bounds->Y / args->rel_height;
4966 range_rect.Height = bounds->Height / args->rel_height;
4968 GetTextExtentExPointW(hdc, string + index, range_start - index,
4969 INT_MAX, NULL, NULL, &range_size);
4970 range_rect.X = (bounds->X + range_size.cx) / args->rel_width;
4972 GetTextExtentExPointW(hdc, string + index, range_end - index,
4973 INT_MAX, NULL, NULL, &range_size);
4974 range_rect.Width = (bounds->X + range_size.cx) / args->rel_width - range_rect.X;
4976 stat = GdipCombineRegionRect(args->regions[i], &range_rect, CombineModeUnion);
4977 if (stat != Ok)
4978 break;
4982 return stat;
4985 GpStatus WINGDIPAPI GdipMeasureCharacterRanges(GpGraphics* graphics,
4986 GDIPCONST WCHAR* string, INT length, GDIPCONST GpFont* font,
4987 GDIPCONST RectF* layoutRect, GDIPCONST GpStringFormat *stringFormat,
4988 INT regionCount, GpRegion** regions)
4990 GpStatus stat;
4991 int i;
4992 HFONT gdifont, oldfont;
4993 struct measure_ranges_args args;
4994 HDC hdc, temp_hdc=NULL;
4995 GpPointF pt[3];
4996 RectF scaled_rect;
4997 REAL margin_x;
4999 TRACE("(%p %s %d %p %s %p %d %p)\n", graphics, debugstr_w(string),
5000 length, font, debugstr_rectf(layoutRect), stringFormat, regionCount, regions);
5002 if (!(graphics && string && font && layoutRect && stringFormat && regions))
5003 return InvalidParameter;
5005 if (regionCount < stringFormat->range_count)
5006 return InvalidParameter;
5008 if(!graphics->hdc)
5010 hdc = temp_hdc = CreateCompatibleDC(0);
5011 if (!temp_hdc) return OutOfMemory;
5013 else
5014 hdc = graphics->hdc;
5016 if (stringFormat->attr)
5017 TRACE("may be ignoring some format flags: attr %x\n", stringFormat->attr);
5019 pt[0].X = 0.0;
5020 pt[0].Y = 0.0;
5021 pt[1].X = 1.0;
5022 pt[1].Y = 0.0;
5023 pt[2].X = 0.0;
5024 pt[2].Y = 1.0;
5025 GdipTransformPoints(graphics, CoordinateSpaceDevice, CoordinateSpaceWorld, pt, 3);
5026 args.rel_width = sqrt((pt[1].Y-pt[0].Y)*(pt[1].Y-pt[0].Y)+
5027 (pt[1].X-pt[0].X)*(pt[1].X-pt[0].X));
5028 args.rel_height = sqrt((pt[2].Y-pt[0].Y)*(pt[2].Y-pt[0].Y)+
5029 (pt[2].X-pt[0].X)*(pt[2].X-pt[0].X));
5031 margin_x = stringFormat->generic_typographic ? 0.0 : font->emSize / 6.0;
5032 margin_x *= units_scale(font->unit, graphics->unit, graphics->xres);
5034 scaled_rect.X = (layoutRect->X + margin_x) * args.rel_width;
5035 scaled_rect.Y = layoutRect->Y * args.rel_height;
5036 if (stringFormat->attr & StringFormatFlagsNoClip)
5038 scaled_rect.Width = (REAL)(1 << 23);
5039 scaled_rect.Height = (REAL)(1 << 23);
5041 else
5043 scaled_rect.Width = layoutRect->Width * args.rel_width;
5044 scaled_rect.Height = layoutRect->Height * args.rel_height;
5046 if (scaled_rect.Width >= 0.5)
5048 scaled_rect.Width -= margin_x * 2.0 * args.rel_width;
5049 if (scaled_rect.Width < 0.5) return Ok; /* doesn't fit */
5052 get_font_hfont(graphics, font, stringFormat, &gdifont, NULL);
5053 oldfont = SelectObject(hdc, gdifont);
5055 for (i=0; i<stringFormat->range_count; i++)
5057 stat = GdipSetEmpty(regions[i]);
5058 if (stat != Ok)
5059 return stat;
5062 args.regions = regions;
5064 stat = gdip_format_string(hdc, string, length, font, &scaled_rect, stringFormat,
5065 measure_ranges_callback, &args);
5067 SelectObject(hdc, oldfont);
5068 DeleteObject(gdifont);
5070 if (temp_hdc)
5071 DeleteDC(temp_hdc);
5073 return stat;
5076 struct measure_string_args {
5077 RectF *bounds;
5078 INT *codepointsfitted;
5079 INT *linesfilled;
5080 REAL rel_width, rel_height;
5083 static GpStatus measure_string_callback(HDC hdc,
5084 GDIPCONST WCHAR *string, INT index, INT length, GDIPCONST GpFont *font,
5085 GDIPCONST RectF *rect, GDIPCONST GpStringFormat *format,
5086 INT lineno, const RectF *bounds, INT *underlined_indexes,
5087 INT underlined_index_count, void *user_data)
5089 struct measure_string_args *args = user_data;
5090 REAL new_width, new_height;
5092 new_width = bounds->Width / args->rel_width;
5093 new_height = (bounds->Height + bounds->Y) / args->rel_height - args->bounds->Y;
5095 if (new_width > args->bounds->Width)
5096 args->bounds->Width = new_width;
5098 if (new_height > args->bounds->Height)
5099 args->bounds->Height = new_height;
5101 if (args->codepointsfitted)
5102 *args->codepointsfitted = index + length;
5104 if (args->linesfilled)
5105 (*args->linesfilled)++;
5107 return Ok;
5110 /* Find the smallest rectangle that bounds the text when it is printed in rect
5111 * according to the format options listed in format. If rect has 0 width and
5112 * height, then just find the smallest rectangle that bounds the text when it's
5113 * printed at location (rect->X, rect-Y). */
5114 GpStatus WINGDIPAPI GdipMeasureString(GpGraphics *graphics,
5115 GDIPCONST WCHAR *string, INT length, GDIPCONST GpFont *font,
5116 GDIPCONST RectF *rect, GDIPCONST GpStringFormat *format, RectF *bounds,
5117 INT *codepointsfitted, INT *linesfilled)
5119 HFONT oldfont, gdifont;
5120 struct measure_string_args args;
5121 HDC temp_hdc=NULL, hdc;
5122 GpPointF pt[3];
5123 RectF scaled_rect;
5124 REAL margin_x;
5125 INT lines, glyphs, format_flags = format ? format->attr : 0;
5127 TRACE("(%p, %s, %i, %p, %s, %p, %p, %p, %p)\n", graphics,
5128 debugstr_wn(string, length), length, font, debugstr_rectf(rect), format,
5129 bounds, codepointsfitted, linesfilled);
5131 if(!graphics || !string || !font || !rect || !bounds)
5132 return InvalidParameter;
5134 if(!graphics->hdc)
5136 hdc = temp_hdc = CreateCompatibleDC(0);
5137 if (!temp_hdc) return OutOfMemory;
5139 else
5140 hdc = graphics->hdc;
5142 if(linesfilled) *linesfilled = 0;
5143 if(codepointsfitted) *codepointsfitted = 0;
5145 if(format)
5146 TRACE("may be ignoring some format flags: attr %x\n", format->attr);
5148 pt[0].X = 0.0;
5149 pt[0].Y = 0.0;
5150 pt[1].X = 1.0;
5151 pt[1].Y = 0.0;
5152 pt[2].X = 0.0;
5153 pt[2].Y = 1.0;
5154 GdipTransformPoints(graphics, CoordinateSpaceDevice, CoordinateSpaceWorld, pt, 3);
5155 args.rel_width = sqrt((pt[1].Y-pt[0].Y)*(pt[1].Y-pt[0].Y)+
5156 (pt[1].X-pt[0].X)*(pt[1].X-pt[0].X));
5157 args.rel_height = sqrt((pt[2].Y-pt[0].Y)*(pt[2].Y-pt[0].Y)+
5158 (pt[2].X-pt[0].X)*(pt[2].X-pt[0].X));
5160 margin_x = (format && format->generic_typographic) ? 0.0 : font->emSize / 6.0;
5161 margin_x *= units_scale(font->unit, graphics->unit, graphics->xres);
5163 scaled_rect.X = (rect->X + margin_x) * args.rel_width;
5164 scaled_rect.Y = rect->Y * args.rel_height;
5165 scaled_rect.Width = rect->Width * args.rel_width;
5166 scaled_rect.Height = rect->Height * args.rel_height;
5168 if ((format_flags & StringFormatFlagsNoClip) ||
5169 scaled_rect.Width >= 1 << 23 || scaled_rect.Width < 0.5) scaled_rect.Width = 1 << 23;
5170 if ((format_flags & StringFormatFlagsNoClip) ||
5171 scaled_rect.Height >= 1 << 23 || scaled_rect.Height < 0.5) scaled_rect.Height = 1 << 23;
5173 if (scaled_rect.Width >= 0.5)
5175 scaled_rect.Width -= margin_x * 2.0 * args.rel_width;
5176 if (scaled_rect.Width < 0.5) return Ok; /* doesn't fit */
5179 if (scaled_rect.Width >= 1 << 23 || scaled_rect.Width < 0.5) scaled_rect.Width = 1 << 23;
5180 if (scaled_rect.Height >= 1 << 23 || scaled_rect.Height < 0.5) scaled_rect.Height = 1 << 23;
5182 get_font_hfont(graphics, font, format, &gdifont, NULL);
5183 oldfont = SelectObject(hdc, gdifont);
5185 bounds->X = rect->X;
5186 bounds->Y = rect->Y;
5187 bounds->Width = 0.0;
5188 bounds->Height = 0.0;
5190 args.bounds = bounds;
5191 args.codepointsfitted = &glyphs;
5192 args.linesfilled = &lines;
5193 lines = glyphs = 0;
5195 gdip_format_string(hdc, string, length, font, &scaled_rect, format,
5196 measure_string_callback, &args);
5198 if (linesfilled) *linesfilled = lines;
5199 if (codepointsfitted) *codepointsfitted = glyphs;
5201 if (lines)
5202 bounds->Width += margin_x * 2.0;
5204 SelectObject(hdc, oldfont);
5205 DeleteObject(gdifont);
5207 if (temp_hdc)
5208 DeleteDC(temp_hdc);
5210 return Ok;
5213 struct draw_string_args {
5214 GpGraphics *graphics;
5215 GDIPCONST GpBrush *brush;
5216 REAL x, y, rel_width, rel_height, ascent;
5219 static GpStatus draw_string_callback(HDC hdc,
5220 GDIPCONST WCHAR *string, INT index, INT length, GDIPCONST GpFont *font,
5221 GDIPCONST RectF *rect, GDIPCONST GpStringFormat *format,
5222 INT lineno, const RectF *bounds, INT *underlined_indexes,
5223 INT underlined_index_count, void *user_data)
5225 struct draw_string_args *args = user_data;
5226 PointF position;
5227 GpStatus stat;
5229 position.X = args->x + bounds->X / args->rel_width;
5230 position.Y = args->y + bounds->Y / args->rel_height + args->ascent;
5232 stat = draw_driver_string(args->graphics, &string[index], length, font, format,
5233 args->brush, &position,
5234 DriverStringOptionsCmapLookup|DriverStringOptionsRealizedAdvance, NULL);
5236 if (stat == Ok && underlined_index_count)
5238 OUTLINETEXTMETRICW otm;
5239 REAL underline_y, underline_height;
5240 int i;
5242 GetOutlineTextMetricsW(hdc, sizeof(otm), &otm);
5244 underline_height = otm.otmsUnderscoreSize / args->rel_height;
5245 underline_y = position.Y - otm.otmsUnderscorePosition / args->rel_height - underline_height / 2;
5247 for (i=0; i<underlined_index_count; i++)
5249 REAL start_x, end_x;
5250 SIZE text_size;
5251 INT ofs = underlined_indexes[i] - index;
5253 GetTextExtentExPointW(hdc, string + index, ofs, INT_MAX, NULL, NULL, &text_size);
5254 start_x = text_size.cx / args->rel_width;
5256 GetTextExtentExPointW(hdc, string + index, ofs+1, INT_MAX, NULL, NULL, &text_size);
5257 end_x = text_size.cx / args->rel_width;
5259 GdipFillRectangle(args->graphics, (GpBrush*)args->brush, position.X+start_x, underline_y, end_x-start_x, underline_height);
5263 return stat;
5266 GpStatus WINGDIPAPI GdipDrawString(GpGraphics *graphics, GDIPCONST WCHAR *string,
5267 INT length, GDIPCONST GpFont *font, GDIPCONST RectF *rect,
5268 GDIPCONST GpStringFormat *format, GDIPCONST GpBrush *brush)
5270 HRGN rgn = NULL;
5271 HFONT gdifont;
5272 GpPointF pt[3], rectcpy[4];
5273 POINT corners[4];
5274 REAL rel_width, rel_height, margin_x;
5275 INT save_state, format_flags = 0;
5276 REAL offsety = 0.0;
5277 struct draw_string_args args;
5278 RectF scaled_rect;
5279 HDC hdc, temp_hdc=NULL;
5280 TEXTMETRICW textmetric;
5282 TRACE("(%p, %s, %i, %p, %s, %p, %p)\n", graphics, debugstr_wn(string, length),
5283 length, font, debugstr_rectf(rect), format, brush);
5285 if(!graphics || !string || !font || !brush || !rect)
5286 return InvalidParameter;
5288 if(graphics->hdc)
5290 hdc = graphics->hdc;
5292 else
5294 hdc = temp_hdc = CreateCompatibleDC(0);
5297 if(format){
5298 TRACE("may be ignoring some format flags: attr %x\n", format->attr);
5300 format_flags = format->attr;
5302 /* Should be no need to explicitly test for StringAlignmentNear as
5303 * that is default behavior if no alignment is passed. */
5304 if(format->vertalign != StringAlignmentNear){
5305 RectF bounds, in_rect = *rect;
5306 in_rect.Height = 0.0; /* avoid height clipping */
5307 GdipMeasureString(graphics, string, length, font, &in_rect, format, &bounds, 0, 0);
5309 TRACE("bounds %s\n", debugstr_rectf(&bounds));
5311 if(format->vertalign == StringAlignmentCenter)
5312 offsety = (rect->Height - bounds.Height) / 2;
5313 else if(format->vertalign == StringAlignmentFar)
5314 offsety = (rect->Height - bounds.Height);
5316 TRACE("vertical align %d, offsety %f\n", format->vertalign, offsety);
5319 save_state = SaveDC(hdc);
5321 pt[0].X = 0.0;
5322 pt[0].Y = 0.0;
5323 pt[1].X = 1.0;
5324 pt[1].Y = 0.0;
5325 pt[2].X = 0.0;
5326 pt[2].Y = 1.0;
5327 GdipTransformPoints(graphics, CoordinateSpaceDevice, CoordinateSpaceWorld, pt, 3);
5328 rel_width = sqrt((pt[1].Y-pt[0].Y)*(pt[1].Y-pt[0].Y)+
5329 (pt[1].X-pt[0].X)*(pt[1].X-pt[0].X));
5330 rel_height = sqrt((pt[2].Y-pt[0].Y)*(pt[2].Y-pt[0].Y)+
5331 (pt[2].X-pt[0].X)*(pt[2].X-pt[0].X));
5333 rectcpy[3].X = rectcpy[0].X = rect->X;
5334 rectcpy[1].Y = rectcpy[0].Y = rect->Y;
5335 rectcpy[2].X = rectcpy[1].X = rect->X + rect->Width;
5336 rectcpy[3].Y = rectcpy[2].Y = rect->Y + rect->Height;
5337 transform_and_round_points(graphics, corners, rectcpy, 4);
5339 margin_x = (format && format->generic_typographic) ? 0.0 : font->emSize / 6.0;
5340 margin_x *= units_scale(font->unit, graphics->unit, graphics->xres);
5342 scaled_rect.X = margin_x * rel_width;
5343 scaled_rect.Y = 0.0;
5344 scaled_rect.Width = rel_width * rect->Width;
5345 scaled_rect.Height = rel_height * rect->Height;
5347 if ((format_flags & StringFormatFlagsNoClip) ||
5348 scaled_rect.Width >= 1 << 23 || scaled_rect.Width < 0.5) scaled_rect.Width = 1 << 23;
5349 if ((format_flags & StringFormatFlagsNoClip) ||
5350 scaled_rect.Height >= 1 << 23 || scaled_rect.Height < 0.5) scaled_rect.Height = 1 << 23;
5352 if (scaled_rect.Width >= 0.5)
5354 scaled_rect.Width -= margin_x * 2.0 * rel_width;
5355 if (scaled_rect.Width < 0.5) return Ok; /* doesn't fit */
5358 if (scaled_rect.Width >= 1 << 23 || scaled_rect.Width < 0.5) scaled_rect.Width = 1 << 23;
5359 if (scaled_rect.Height >= 1 << 23 || scaled_rect.Height < 0.5) scaled_rect.Height = 1 << 23;
5361 if (!(format_flags & StringFormatFlagsNoClip) &&
5362 scaled_rect.Width != 1 << 23 && scaled_rect.Height != 1 << 23)
5364 /* FIXME: If only the width or only the height is 0, we should probably still clip */
5365 rgn = CreatePolygonRgn(corners, 4, ALTERNATE);
5366 SelectClipRgn(hdc, rgn);
5369 get_font_hfont(graphics, font, format, &gdifont, NULL);
5370 SelectObject(hdc, gdifont);
5372 args.graphics = graphics;
5373 args.brush = brush;
5375 args.x = rect->X;
5376 args.y = rect->Y + offsety;
5378 args.rel_width = rel_width;
5379 args.rel_height = rel_height;
5381 GetTextMetricsW(hdc, &textmetric);
5382 args.ascent = textmetric.tmAscent / rel_height;
5384 gdip_format_string(hdc, string, length, font, &scaled_rect, format,
5385 draw_string_callback, &args);
5387 DeleteObject(rgn);
5388 DeleteObject(gdifont);
5390 RestoreDC(hdc, save_state);
5392 DeleteDC(temp_hdc);
5394 return Ok;
5397 GpStatus WINGDIPAPI GdipResetClip(GpGraphics *graphics)
5399 TRACE("(%p)\n", graphics);
5401 if(!graphics)
5402 return InvalidParameter;
5404 if(graphics->busy)
5405 return ObjectBusy;
5407 return GdipSetInfinite(graphics->clip);
5410 GpStatus WINGDIPAPI GdipResetWorldTransform(GpGraphics *graphics)
5412 TRACE("(%p)\n", graphics);
5414 if(!graphics)
5415 return InvalidParameter;
5417 if(graphics->busy)
5418 return ObjectBusy;
5420 return GdipSetMatrixElements(&graphics->worldtrans, 1.0, 0.0, 0.0, 1.0, 0.0, 0.0);
5423 GpStatus WINGDIPAPI GdipRestoreGraphics(GpGraphics *graphics, GraphicsState state)
5425 return GdipEndContainer(graphics, state);
5428 GpStatus WINGDIPAPI GdipRotateWorldTransform(GpGraphics *graphics, REAL angle,
5429 GpMatrixOrder order)
5431 TRACE("(%p, %.2f, %d)\n", graphics, angle, order);
5433 if(!graphics)
5434 return InvalidParameter;
5436 if(graphics->busy)
5437 return ObjectBusy;
5439 return GdipRotateMatrix(&graphics->worldtrans, angle, order);
5442 GpStatus WINGDIPAPI GdipSaveGraphics(GpGraphics *graphics, GraphicsState *state)
5444 return GdipBeginContainer2(graphics, state);
5447 GpStatus WINGDIPAPI GdipBeginContainer2(GpGraphics *graphics,
5448 GraphicsContainer *state)
5450 GraphicsContainerItem *container;
5451 GpStatus sts;
5453 TRACE("(%p, %p)\n", graphics, state);
5455 if(!graphics || !state)
5456 return InvalidParameter;
5458 sts = init_container(&container, graphics);
5459 if(sts != Ok)
5460 return sts;
5462 list_add_head(&graphics->containers, &container->entry);
5463 *state = graphics->contid = container->contid;
5465 return Ok;
5468 GpStatus WINGDIPAPI GdipBeginContainer(GpGraphics *graphics, GDIPCONST GpRectF *dstrect, GDIPCONST GpRectF *srcrect, GpUnit unit, GraphicsContainer *state)
5470 FIXME("(%p, %p, %p, %d, %p): stub\n", graphics, dstrect, srcrect, unit, state);
5471 return NotImplemented;
5474 GpStatus WINGDIPAPI GdipBeginContainerI(GpGraphics *graphics, GDIPCONST GpRect *dstrect, GDIPCONST GpRect *srcrect, GpUnit unit, GraphicsContainer *state)
5476 FIXME("(%p, %p, %p, %d, %p): stub\n", graphics, dstrect, srcrect, unit, state);
5477 return NotImplemented;
5480 GpStatus WINGDIPAPI GdipComment(GpGraphics *graphics, UINT sizeData, GDIPCONST BYTE *data)
5482 FIXME("(%p, %d, %p): stub\n", graphics, sizeData, data);
5483 return NotImplemented;
5486 GpStatus WINGDIPAPI GdipEndContainer(GpGraphics *graphics, GraphicsContainer state)
5488 GpStatus sts;
5489 GraphicsContainerItem *container, *container2;
5491 TRACE("(%p, %x)\n", graphics, state);
5493 if(!graphics)
5494 return InvalidParameter;
5496 LIST_FOR_EACH_ENTRY(container, &graphics->containers, GraphicsContainerItem, entry){
5497 if(container->contid == state)
5498 break;
5501 /* did not find a matching container */
5502 if(&container->entry == &graphics->containers)
5503 return Ok;
5505 sts = restore_container(graphics, container);
5506 if(sts != Ok)
5507 return sts;
5509 /* remove all of the containers on top of the found container */
5510 LIST_FOR_EACH_ENTRY_SAFE(container, container2, &graphics->containers, GraphicsContainerItem, entry){
5511 if(container->contid == state)
5512 break;
5513 list_remove(&container->entry);
5514 delete_container(container);
5517 list_remove(&container->entry);
5518 delete_container(container);
5520 return Ok;
5523 GpStatus WINGDIPAPI GdipScaleWorldTransform(GpGraphics *graphics, REAL sx,
5524 REAL sy, GpMatrixOrder order)
5526 TRACE("(%p, %.2f, %.2f, %d)\n", graphics, sx, sy, order);
5528 if(!graphics)
5529 return InvalidParameter;
5531 if(graphics->busy)
5532 return ObjectBusy;
5534 return GdipScaleMatrix(&graphics->worldtrans, sx, sy, order);
5537 GpStatus WINGDIPAPI GdipSetClipGraphics(GpGraphics *graphics, GpGraphics *srcgraphics,
5538 CombineMode mode)
5540 TRACE("(%p, %p, %d)\n", graphics, srcgraphics, mode);
5542 if(!graphics || !srcgraphics)
5543 return InvalidParameter;
5545 return GdipCombineRegionRegion(graphics->clip, srcgraphics->clip, mode);
5548 GpStatus WINGDIPAPI GdipSetCompositingMode(GpGraphics *graphics,
5549 CompositingMode mode)
5551 TRACE("(%p, %d)\n", graphics, mode);
5553 if(!graphics)
5554 return InvalidParameter;
5556 if(graphics->busy)
5557 return ObjectBusy;
5559 graphics->compmode = mode;
5561 return Ok;
5564 GpStatus WINGDIPAPI GdipSetCompositingQuality(GpGraphics *graphics,
5565 CompositingQuality quality)
5567 TRACE("(%p, %d)\n", graphics, quality);
5569 if(!graphics)
5570 return InvalidParameter;
5572 if(graphics->busy)
5573 return ObjectBusy;
5575 graphics->compqual = quality;
5577 return Ok;
5580 GpStatus WINGDIPAPI GdipSetInterpolationMode(GpGraphics *graphics,
5581 InterpolationMode mode)
5583 TRACE("(%p, %d)\n", graphics, mode);
5585 if(!graphics || mode == InterpolationModeInvalid || mode > InterpolationModeHighQualityBicubic)
5586 return InvalidParameter;
5588 if(graphics->busy)
5589 return ObjectBusy;
5591 if (mode == InterpolationModeDefault || mode == InterpolationModeLowQuality)
5592 mode = InterpolationModeBilinear;
5594 if (mode == InterpolationModeHighQuality)
5595 mode = InterpolationModeHighQualityBicubic;
5597 graphics->interpolation = mode;
5599 return Ok;
5602 GpStatus WINGDIPAPI GdipSetPageScale(GpGraphics *graphics, REAL scale)
5604 TRACE("(%p, %.2f)\n", graphics, scale);
5606 if(!graphics || (scale <= 0.0))
5607 return InvalidParameter;
5609 if(graphics->busy)
5610 return ObjectBusy;
5612 graphics->scale = scale;
5614 return Ok;
5617 GpStatus WINGDIPAPI GdipSetPageUnit(GpGraphics *graphics, GpUnit unit)
5619 TRACE("(%p, %d)\n", graphics, unit);
5621 if(!graphics)
5622 return InvalidParameter;
5624 if(graphics->busy)
5625 return ObjectBusy;
5627 if(unit == UnitWorld)
5628 return InvalidParameter;
5630 graphics->unit = unit;
5632 return Ok;
5635 GpStatus WINGDIPAPI GdipSetPixelOffsetMode(GpGraphics *graphics, PixelOffsetMode
5636 mode)
5638 TRACE("(%p, %d)\n", graphics, mode);
5640 if(!graphics)
5641 return InvalidParameter;
5643 if(graphics->busy)
5644 return ObjectBusy;
5646 graphics->pixeloffset = mode;
5648 return Ok;
5651 GpStatus WINGDIPAPI GdipSetRenderingOrigin(GpGraphics *graphics, INT x, INT y)
5653 static int calls;
5655 TRACE("(%p,%i,%i)\n", graphics, x, y);
5657 if (!(calls++))
5658 FIXME("value is unused in rendering\n");
5660 if (!graphics)
5661 return InvalidParameter;
5663 graphics->origin_x = x;
5664 graphics->origin_y = y;
5666 return Ok;
5669 GpStatus WINGDIPAPI GdipGetRenderingOrigin(GpGraphics *graphics, INT *x, INT *y)
5671 TRACE("(%p,%p,%p)\n", graphics, x, y);
5673 if (!graphics || !x || !y)
5674 return InvalidParameter;
5676 *x = graphics->origin_x;
5677 *y = graphics->origin_y;
5679 return Ok;
5682 GpStatus WINGDIPAPI GdipSetSmoothingMode(GpGraphics *graphics, SmoothingMode mode)
5684 TRACE("(%p, %d)\n", graphics, mode);
5686 if(!graphics)
5687 return InvalidParameter;
5689 if(graphics->busy)
5690 return ObjectBusy;
5692 graphics->smoothing = mode;
5694 return Ok;
5697 GpStatus WINGDIPAPI GdipSetTextContrast(GpGraphics *graphics, UINT contrast)
5699 TRACE("(%p, %d)\n", graphics, contrast);
5701 if(!graphics)
5702 return InvalidParameter;
5704 graphics->textcontrast = contrast;
5706 return Ok;
5709 GpStatus WINGDIPAPI GdipSetTextRenderingHint(GpGraphics *graphics,
5710 TextRenderingHint hint)
5712 TRACE("(%p, %d)\n", graphics, hint);
5714 if(!graphics || hint > TextRenderingHintClearTypeGridFit)
5715 return InvalidParameter;
5717 if(graphics->busy)
5718 return ObjectBusy;
5720 graphics->texthint = hint;
5722 return Ok;
5725 GpStatus WINGDIPAPI GdipSetWorldTransform(GpGraphics *graphics, GpMatrix *matrix)
5727 TRACE("(%p, %p)\n", graphics, matrix);
5729 if(!graphics || !matrix)
5730 return InvalidParameter;
5732 if(graphics->busy)
5733 return ObjectBusy;
5735 TRACE("%f,%f,%f,%f,%f,%f\n",
5736 matrix->matrix[0], matrix->matrix[1], matrix->matrix[2],
5737 matrix->matrix[3], matrix->matrix[4], matrix->matrix[5]);
5739 graphics->worldtrans = *matrix;
5741 return Ok;
5744 GpStatus WINGDIPAPI GdipTranslateWorldTransform(GpGraphics *graphics, REAL dx,
5745 REAL dy, GpMatrixOrder order)
5747 TRACE("(%p, %.2f, %.2f, %d)\n", graphics, dx, dy, order);
5749 if(!graphics)
5750 return InvalidParameter;
5752 if(graphics->busy)
5753 return ObjectBusy;
5755 return GdipTranslateMatrix(&graphics->worldtrans, dx, dy, order);
5758 /*****************************************************************************
5759 * GdipSetClipHrgn [GDIPLUS.@]
5761 GpStatus WINGDIPAPI GdipSetClipHrgn(GpGraphics *graphics, HRGN hrgn, CombineMode mode)
5763 GpRegion *region;
5764 GpStatus status;
5766 TRACE("(%p, %p, %d)\n", graphics, hrgn, mode);
5768 if(!graphics)
5769 return InvalidParameter;
5771 status = GdipCreateRegionHrgn(hrgn, &region);
5772 if(status != Ok)
5773 return status;
5775 status = GdipSetClipRegion(graphics, region, mode);
5777 GdipDeleteRegion(region);
5778 return status;
5781 GpStatus WINGDIPAPI GdipSetClipPath(GpGraphics *graphics, GpPath *path, CombineMode mode)
5783 TRACE("(%p, %p, %d)\n", graphics, path, mode);
5785 if(!graphics)
5786 return InvalidParameter;
5788 if(graphics->busy)
5789 return ObjectBusy;
5791 return GdipCombineRegionPath(graphics->clip, path, mode);
5794 GpStatus WINGDIPAPI GdipSetClipRect(GpGraphics *graphics, REAL x, REAL y,
5795 REAL width, REAL height,
5796 CombineMode mode)
5798 GpRectF rect;
5800 TRACE("(%p, %.2f, %.2f, %.2f, %.2f, %d)\n", graphics, x, y, width, height, mode);
5802 if(!graphics)
5803 return InvalidParameter;
5805 if(graphics->busy)
5806 return ObjectBusy;
5808 rect.X = x;
5809 rect.Y = y;
5810 rect.Width = width;
5811 rect.Height = height;
5813 return GdipCombineRegionRect(graphics->clip, &rect, mode);
5816 GpStatus WINGDIPAPI GdipSetClipRectI(GpGraphics *graphics, INT x, INT y,
5817 INT width, INT height,
5818 CombineMode mode)
5820 TRACE("(%p, %d, %d, %d, %d, %d)\n", graphics, x, y, width, height, mode);
5822 if(!graphics)
5823 return InvalidParameter;
5825 if(graphics->busy)
5826 return ObjectBusy;
5828 return GdipSetClipRect(graphics, (REAL)x, (REAL)y, (REAL)width, (REAL)height, mode);
5831 GpStatus WINGDIPAPI GdipSetClipRegion(GpGraphics *graphics, GpRegion *region,
5832 CombineMode mode)
5834 TRACE("(%p, %p, %d)\n", graphics, region, mode);
5836 if(!graphics || !region)
5837 return InvalidParameter;
5839 if(graphics->busy)
5840 return ObjectBusy;
5842 return GdipCombineRegionRegion(graphics->clip, region, mode);
5845 GpStatus WINGDIPAPI GdipSetMetafileDownLevelRasterizationLimit(GpMetafile *metafile,
5846 UINT limitDpi)
5848 static int calls;
5850 TRACE("(%p,%u)\n", metafile, limitDpi);
5852 if(!(calls++))
5853 FIXME("not implemented\n");
5855 return NotImplemented;
5858 GpStatus WINGDIPAPI GdipDrawPolygon(GpGraphics *graphics,GpPen *pen,GDIPCONST GpPointF *points,
5859 INT count)
5861 INT save_state;
5862 POINT *pti;
5864 TRACE("(%p, %p, %d)\n", graphics, points, count);
5866 if(!graphics || !pen || count<=0)
5867 return InvalidParameter;
5869 if(graphics->busy)
5870 return ObjectBusy;
5872 if (!graphics->hdc)
5874 FIXME("graphics object has no HDC\n");
5875 return Ok;
5878 pti = GdipAlloc(sizeof(POINT) * count);
5880 save_state = prepare_dc(graphics, pen);
5881 SelectObject(graphics->hdc, GetStockObject(NULL_BRUSH));
5883 transform_and_round_points(graphics, pti, (GpPointF*)points, count);
5884 Polygon(graphics->hdc, pti, count);
5886 restore_dc(graphics, save_state);
5887 GdipFree(pti);
5889 return Ok;
5892 GpStatus WINGDIPAPI GdipDrawPolygonI(GpGraphics *graphics,GpPen *pen,GDIPCONST GpPoint *points,
5893 INT count)
5895 GpStatus ret;
5896 GpPointF *ptf;
5897 INT i;
5899 TRACE("(%p, %p, %p, %d)\n", graphics, pen, points, count);
5901 if(count<=0) return InvalidParameter;
5902 ptf = GdipAlloc(sizeof(GpPointF) * count);
5904 for(i = 0;i < count; i++){
5905 ptf[i].X = (REAL)points[i].X;
5906 ptf[i].Y = (REAL)points[i].Y;
5909 ret = GdipDrawPolygon(graphics,pen,ptf,count);
5910 GdipFree(ptf);
5912 return ret;
5915 GpStatus WINGDIPAPI GdipGetDpiX(GpGraphics *graphics, REAL* dpi)
5917 TRACE("(%p, %p)\n", graphics, dpi);
5919 if(!graphics || !dpi)
5920 return InvalidParameter;
5922 if(graphics->busy)
5923 return ObjectBusy;
5925 *dpi = graphics->xres;
5926 return Ok;
5929 GpStatus WINGDIPAPI GdipGetDpiY(GpGraphics *graphics, REAL* dpi)
5931 TRACE("(%p, %p)\n", graphics, dpi);
5933 if(!graphics || !dpi)
5934 return InvalidParameter;
5936 if(graphics->busy)
5937 return ObjectBusy;
5939 *dpi = graphics->yres;
5940 return Ok;
5943 GpStatus WINGDIPAPI GdipMultiplyWorldTransform(GpGraphics *graphics, GDIPCONST GpMatrix *matrix,
5944 GpMatrixOrder order)
5946 GpMatrix m;
5947 GpStatus ret;
5949 TRACE("(%p, %p, %d)\n", graphics, matrix, order);
5951 if(!graphics || !matrix)
5952 return InvalidParameter;
5954 if(graphics->busy)
5955 return ObjectBusy;
5957 m = graphics->worldtrans;
5959 ret = GdipMultiplyMatrix(&m, matrix, order);
5960 if(ret == Ok)
5961 graphics->worldtrans = m;
5963 return ret;
5966 /* Color used to fill bitmaps so we can tell which parts have been drawn over by gdi32. */
5967 static const COLORREF DC_BACKGROUND_KEY = 0x0c0b0d;
5969 GpStatus WINGDIPAPI GdipGetDC(GpGraphics *graphics, HDC *hdc)
5971 GpStatus stat=Ok;
5973 TRACE("(%p, %p)\n", graphics, hdc);
5975 if(!graphics || !hdc)
5976 return InvalidParameter;
5978 if(graphics->busy)
5979 return ObjectBusy;
5981 if (graphics->image && graphics->image->type == ImageTypeMetafile)
5983 stat = METAFILE_GetDC((GpMetafile*)graphics->image, hdc);
5985 else if (!graphics->hdc ||
5986 (graphics->image && graphics->image->type == ImageTypeBitmap && ((GpBitmap*)graphics->image)->format & PixelFormatAlpha))
5988 /* Create a fake HDC and fill it with a constant color. */
5989 HDC temp_hdc;
5990 HBITMAP hbitmap;
5991 GpRectF bounds;
5992 BITMAPINFOHEADER bmih;
5993 int i;
5995 stat = get_graphics_bounds(graphics, &bounds);
5996 if (stat != Ok)
5997 return stat;
5999 graphics->temp_hbitmap_width = bounds.Width;
6000 graphics->temp_hbitmap_height = bounds.Height;
6002 bmih.biSize = sizeof(bmih);
6003 bmih.biWidth = graphics->temp_hbitmap_width;
6004 bmih.biHeight = -graphics->temp_hbitmap_height;
6005 bmih.biPlanes = 1;
6006 bmih.biBitCount = 32;
6007 bmih.biCompression = BI_RGB;
6008 bmih.biSizeImage = 0;
6009 bmih.biXPelsPerMeter = 0;
6010 bmih.biYPelsPerMeter = 0;
6011 bmih.biClrUsed = 0;
6012 bmih.biClrImportant = 0;
6014 hbitmap = CreateDIBSection(NULL, (BITMAPINFO*)&bmih, DIB_RGB_COLORS,
6015 (void**)&graphics->temp_bits, NULL, 0);
6016 if (!hbitmap)
6017 return GenericError;
6019 temp_hdc = CreateCompatibleDC(0);
6020 if (!temp_hdc)
6022 DeleteObject(hbitmap);
6023 return GenericError;
6026 for (i=0; i<(graphics->temp_hbitmap_width * graphics->temp_hbitmap_height); i++)
6027 ((DWORD*)graphics->temp_bits)[i] = DC_BACKGROUND_KEY;
6029 SelectObject(temp_hdc, hbitmap);
6031 graphics->temp_hbitmap = hbitmap;
6032 *hdc = graphics->temp_hdc = temp_hdc;
6034 else
6036 *hdc = graphics->hdc;
6039 if (stat == Ok)
6040 graphics->busy = TRUE;
6042 return stat;
6045 GpStatus WINGDIPAPI GdipReleaseDC(GpGraphics *graphics, HDC hdc)
6047 GpStatus stat=Ok;
6049 TRACE("(%p, %p)\n", graphics, hdc);
6051 if(!graphics || !hdc || !graphics->busy)
6052 return InvalidParameter;
6054 if (graphics->image && graphics->image->type == ImageTypeMetafile)
6056 stat = METAFILE_ReleaseDC((GpMetafile*)graphics->image, hdc);
6058 else if (graphics->temp_hdc == hdc)
6060 DWORD* pos;
6061 int i;
6063 /* Find the pixels that have changed, and mark them as opaque. */
6064 pos = (DWORD*)graphics->temp_bits;
6065 for (i=0; i<(graphics->temp_hbitmap_width * graphics->temp_hbitmap_height); i++)
6067 if (*pos != DC_BACKGROUND_KEY)
6069 *pos |= 0xff000000;
6071 pos++;
6074 /* Write the changed pixels to the real target. */
6075 alpha_blend_pixels(graphics, 0, 0, graphics->temp_bits,
6076 graphics->temp_hbitmap_width, graphics->temp_hbitmap_height,
6077 graphics->temp_hbitmap_width * 4);
6079 /* Clean up. */
6080 DeleteDC(graphics->temp_hdc);
6081 DeleteObject(graphics->temp_hbitmap);
6082 graphics->temp_hdc = NULL;
6083 graphics->temp_hbitmap = NULL;
6085 else if (hdc != graphics->hdc)
6087 stat = InvalidParameter;
6090 if (stat == Ok)
6091 graphics->busy = FALSE;
6093 return stat;
6096 GpStatus WINGDIPAPI GdipGetClip(GpGraphics *graphics, GpRegion *region)
6098 GpRegion *clip;
6099 GpStatus status;
6101 TRACE("(%p, %p)\n", graphics, region);
6103 if(!graphics || !region)
6104 return InvalidParameter;
6106 if(graphics->busy)
6107 return ObjectBusy;
6109 if((status = GdipCloneRegion(graphics->clip, &clip)) != Ok)
6110 return status;
6112 /* free everything except root node and header */
6113 delete_element(&region->node);
6114 memcpy(region, clip, sizeof(GpRegion));
6115 GdipFree(clip);
6117 return Ok;
6120 static GpStatus get_graphics_transform(GpGraphics *graphics, GpCoordinateSpace dst_space,
6121 GpCoordinateSpace src_space, GpMatrix *matrix)
6123 GpStatus stat = Ok;
6124 REAL scale_x, scale_y;
6126 GdipSetMatrixElements(matrix, 1.0, 0.0, 0.0, 1.0, 0.0, 0.0);
6128 if (dst_space != src_space)
6130 scale_x = units_to_pixels(1.0, graphics->unit, graphics->xres);
6131 scale_y = units_to_pixels(1.0, graphics->unit, graphics->yres);
6133 if(graphics->unit != UnitDisplay)
6135 scale_x *= graphics->scale;
6136 scale_y *= graphics->scale;
6139 /* transform from src_space to CoordinateSpacePage */
6140 switch (src_space)
6142 case CoordinateSpaceWorld:
6143 GdipMultiplyMatrix(matrix, &graphics->worldtrans, MatrixOrderAppend);
6144 break;
6145 case CoordinateSpacePage:
6146 break;
6147 case CoordinateSpaceDevice:
6148 GdipScaleMatrix(matrix, 1.0/scale_x, 1.0/scale_y, MatrixOrderAppend);
6149 break;
6152 /* transform from CoordinateSpacePage to dst_space */
6153 switch (dst_space)
6155 case CoordinateSpaceWorld:
6157 GpMatrix inverted_transform = graphics->worldtrans;
6158 stat = GdipInvertMatrix(&inverted_transform);
6159 if (stat == Ok)
6160 GdipMultiplyMatrix(matrix, &inverted_transform, MatrixOrderAppend);
6161 break;
6163 case CoordinateSpacePage:
6164 break;
6165 case CoordinateSpaceDevice:
6166 GdipScaleMatrix(matrix, scale_x, scale_y, MatrixOrderAppend);
6167 break;
6170 return stat;
6173 GpStatus WINGDIPAPI GdipTransformPoints(GpGraphics *graphics, GpCoordinateSpace dst_space,
6174 GpCoordinateSpace src_space, GpPointF *points, INT count)
6176 GpMatrix matrix;
6177 GpStatus stat;
6179 if(!graphics || !points || count <= 0)
6180 return InvalidParameter;
6182 if(graphics->busy)
6183 return ObjectBusy;
6185 TRACE("(%p, %d, %d, %p, %d)\n", graphics, dst_space, src_space, points, count);
6187 if (src_space == dst_space) return Ok;
6189 stat = get_graphics_transform(graphics, dst_space, src_space, &matrix);
6190 if (stat != Ok) return stat;
6192 return GdipTransformMatrixPoints(&matrix, points, count);
6195 GpStatus WINGDIPAPI GdipTransformPointsI(GpGraphics *graphics, GpCoordinateSpace dst_space,
6196 GpCoordinateSpace src_space, GpPoint *points, INT count)
6198 GpPointF *pointsF;
6199 GpStatus ret;
6200 INT i;
6202 TRACE("(%p, %d, %d, %p, %d)\n", graphics, dst_space, src_space, points, count);
6204 if(count <= 0)
6205 return InvalidParameter;
6207 pointsF = GdipAlloc(sizeof(GpPointF) * count);
6208 if(!pointsF)
6209 return OutOfMemory;
6211 for(i = 0; i < count; i++){
6212 pointsF[i].X = (REAL)points[i].X;
6213 pointsF[i].Y = (REAL)points[i].Y;
6216 ret = GdipTransformPoints(graphics, dst_space, src_space, pointsF, count);
6218 if(ret == Ok)
6219 for(i = 0; i < count; i++){
6220 points[i].X = gdip_round(pointsF[i].X);
6221 points[i].Y = gdip_round(pointsF[i].Y);
6223 GdipFree(pointsF);
6225 return ret;
6228 HPALETTE WINGDIPAPI GdipCreateHalftonePalette(void)
6230 static int calls;
6232 TRACE("\n");
6234 if (!calls++)
6235 FIXME("stub\n");
6237 return NULL;
6240 /*****************************************************************************
6241 * GdipTranslateClip [GDIPLUS.@]
6243 GpStatus WINGDIPAPI GdipTranslateClip(GpGraphics *graphics, REAL dx, REAL dy)
6245 TRACE("(%p, %.2f, %.2f)\n", graphics, dx, dy);
6247 if(!graphics)
6248 return InvalidParameter;
6250 if(graphics->busy)
6251 return ObjectBusy;
6253 return GdipTranslateRegion(graphics->clip, dx, dy);
6256 /*****************************************************************************
6257 * GdipTranslateClipI [GDIPLUS.@]
6259 GpStatus WINGDIPAPI GdipTranslateClipI(GpGraphics *graphics, INT dx, INT dy)
6261 TRACE("(%p, %d, %d)\n", graphics, dx, dy);
6263 if(!graphics)
6264 return InvalidParameter;
6266 if(graphics->busy)
6267 return ObjectBusy;
6269 return GdipTranslateRegion(graphics->clip, (REAL)dx, (REAL)dy);
6273 /*****************************************************************************
6274 * GdipMeasureDriverString [GDIPLUS.@]
6276 GpStatus WINGDIPAPI GdipMeasureDriverString(GpGraphics *graphics, GDIPCONST UINT16 *text, INT length,
6277 GDIPCONST GpFont *font, GDIPCONST PointF *positions,
6278 INT flags, GDIPCONST GpMatrix *matrix, RectF *boundingBox)
6280 static const INT unsupported_flags = ~(DriverStringOptionsCmapLookup|DriverStringOptionsRealizedAdvance);
6281 HFONT hfont;
6282 HDC hdc;
6283 REAL min_x, min_y, max_x, max_y, x, y;
6284 int i;
6285 TEXTMETRICW textmetric;
6286 const WORD *glyph_indices;
6287 WORD *dynamic_glyph_indices=NULL;
6288 REAL rel_width, rel_height, ascent, descent;
6289 GpPointF pt[3];
6291 TRACE("(%p %p %d %p %p %d %p %p)\n", graphics, text, length, font, positions, flags, matrix, boundingBox);
6293 if (!graphics || !text || !font || !positions || !boundingBox)
6294 return InvalidParameter;
6296 if (length == -1)
6297 length = strlenW(text);
6299 if (length == 0)
6301 boundingBox->X = 0.0;
6302 boundingBox->Y = 0.0;
6303 boundingBox->Width = 0.0;
6304 boundingBox->Height = 0.0;
6307 if (flags & unsupported_flags)
6308 FIXME("Ignoring flags %x\n", flags & unsupported_flags);
6310 get_font_hfont(graphics, font, NULL, &hfont, matrix);
6312 hdc = CreateCompatibleDC(0);
6313 SelectObject(hdc, hfont);
6315 GetTextMetricsW(hdc, &textmetric);
6317 pt[0].X = 0.0;
6318 pt[0].Y = 0.0;
6319 pt[1].X = 1.0;
6320 pt[1].Y = 0.0;
6321 pt[2].X = 0.0;
6322 pt[2].Y = 1.0;
6323 if (matrix)
6325 GpMatrix xform = *matrix;
6326 GdipTransformMatrixPoints(&xform, pt, 3);
6328 GdipTransformPoints(graphics, CoordinateSpaceDevice, CoordinateSpaceWorld, pt, 3);
6329 rel_width = sqrt((pt[1].Y-pt[0].Y)*(pt[1].Y-pt[0].Y)+
6330 (pt[1].X-pt[0].X)*(pt[1].X-pt[0].X));
6331 rel_height = sqrt((pt[2].Y-pt[0].Y)*(pt[2].Y-pt[0].Y)+
6332 (pt[2].X-pt[0].X)*(pt[2].X-pt[0].X));
6334 if (flags & DriverStringOptionsCmapLookup)
6336 glyph_indices = dynamic_glyph_indices = GdipAlloc(sizeof(WORD) * length);
6337 if (!glyph_indices)
6339 DeleteDC(hdc);
6340 DeleteObject(hfont);
6341 return OutOfMemory;
6344 GetGlyphIndicesW(hdc, text, length, dynamic_glyph_indices, 0);
6346 else
6347 glyph_indices = text;
6349 min_x = max_x = x = positions[0].X;
6350 min_y = max_y = y = positions[0].Y;
6352 ascent = textmetric.tmAscent / rel_height;
6353 descent = textmetric.tmDescent / rel_height;
6355 for (i=0; i<length; i++)
6357 int char_width;
6358 ABC abc;
6360 if (!(flags & DriverStringOptionsRealizedAdvance))
6362 x = positions[i].X;
6363 y = positions[i].Y;
6366 GetCharABCWidthsW(hdc, glyph_indices[i], glyph_indices[i], &abc);
6367 char_width = abc.abcA + abc.abcB + abc.abcC;
6369 if (min_y > y - ascent) min_y = y - ascent;
6370 if (max_y < y + descent) max_y = y + descent;
6371 if (min_x > x) min_x = x;
6373 x += char_width / rel_width;
6375 if (max_x < x) max_x = x;
6378 GdipFree(dynamic_glyph_indices);
6379 DeleteDC(hdc);
6380 DeleteObject(hfont);
6382 boundingBox->X = min_x;
6383 boundingBox->Y = min_y;
6384 boundingBox->Width = max_x - min_x;
6385 boundingBox->Height = max_y - min_y;
6387 return Ok;
6390 static GpStatus GDI32_GdipDrawDriverString(GpGraphics *graphics, GDIPCONST UINT16 *text, INT length,
6391 GDIPCONST GpFont *font, GDIPCONST GpStringFormat *format,
6392 GDIPCONST GpBrush *brush, GDIPCONST PointF *positions,
6393 INT flags, GDIPCONST GpMatrix *matrix)
6395 static const INT unsupported_flags = ~(DriverStringOptionsRealizedAdvance|DriverStringOptionsCmapLookup);
6396 INT save_state;
6397 GpPointF pt;
6398 HFONT hfont;
6399 UINT eto_flags=0;
6401 if (flags & unsupported_flags)
6402 FIXME("Ignoring flags %x\n", flags & unsupported_flags);
6404 if (!(flags & DriverStringOptionsCmapLookup))
6405 eto_flags |= ETO_GLYPH_INDEX;
6407 save_state = SaveDC(graphics->hdc);
6408 SetBkMode(graphics->hdc, TRANSPARENT);
6409 SetTextColor(graphics->hdc, get_gdi_brush_color(brush));
6411 pt = positions[0];
6412 GdipTransformPoints(graphics, CoordinateSpaceDevice, CoordinateSpaceWorld, &pt, 1);
6414 get_font_hfont(graphics, font, format, &hfont, matrix);
6415 SelectObject(graphics->hdc, hfont);
6417 SetTextAlign(graphics->hdc, TA_BASELINE|TA_LEFT);
6419 ExtTextOutW(graphics->hdc, gdip_round(pt.X), gdip_round(pt.Y), eto_flags, NULL, text, length, NULL);
6421 RestoreDC(graphics->hdc, save_state);
6423 DeleteObject(hfont);
6425 return Ok;
6428 static GpStatus SOFTWARE_GdipDrawDriverString(GpGraphics *graphics, GDIPCONST UINT16 *text, INT length,
6429 GDIPCONST GpFont *font, GDIPCONST GpStringFormat *format,
6430 GDIPCONST GpBrush *brush, GDIPCONST PointF *positions,
6431 INT flags, GDIPCONST GpMatrix *matrix)
6433 static const INT unsupported_flags = ~(DriverStringOptionsCmapLookup|DriverStringOptionsRealizedAdvance);
6434 GpStatus stat;
6435 PointF *real_positions, real_position;
6436 POINT *pti;
6437 HFONT hfont;
6438 HDC hdc;
6439 int min_x=INT_MAX, min_y=INT_MAX, max_x=INT_MIN, max_y=INT_MIN, i, x, y;
6440 DWORD max_glyphsize=0;
6441 GLYPHMETRICS glyphmetrics;
6442 static const MAT2 identity = {{0,1}, {0,0}, {0,0}, {0,1}};
6443 BYTE *glyph_mask;
6444 BYTE *text_mask;
6445 int text_mask_stride;
6446 BYTE *pixel_data;
6447 int pixel_data_stride;
6448 GpRect pixel_area;
6449 UINT ggo_flags = GGO_GRAY8_BITMAP;
6451 if (length <= 0)
6452 return Ok;
6454 if (!(flags & DriverStringOptionsCmapLookup))
6455 ggo_flags |= GGO_GLYPH_INDEX;
6457 if (flags & unsupported_flags)
6458 FIXME("Ignoring flags %x\n", flags & unsupported_flags);
6460 pti = GdipAlloc(sizeof(POINT) * length);
6461 if (!pti)
6462 return OutOfMemory;
6464 if (flags & DriverStringOptionsRealizedAdvance)
6466 real_position = positions[0];
6468 transform_and_round_points(graphics, pti, &real_position, 1);
6470 else
6472 real_positions = GdipAlloc(sizeof(PointF) * length);
6473 if (!real_positions)
6475 GdipFree(pti);
6476 return OutOfMemory;
6479 memcpy(real_positions, positions, sizeof(PointF) * length);
6481 transform_and_round_points(graphics, pti, real_positions, length);
6483 GdipFree(real_positions);
6486 get_font_hfont(graphics, font, format, &hfont, matrix);
6488 hdc = CreateCompatibleDC(0);
6489 SelectObject(hdc, hfont);
6491 /* Get the boundaries of the text to be drawn */
6492 for (i=0; i<length; i++)
6494 DWORD glyphsize;
6495 int left, top, right, bottom;
6497 glyphsize = GetGlyphOutlineW(hdc, text[i], ggo_flags,
6498 &glyphmetrics, 0, NULL, &identity);
6500 if (glyphsize == GDI_ERROR)
6502 ERR("GetGlyphOutlineW failed\n");
6503 GdipFree(pti);
6504 DeleteDC(hdc);
6505 DeleteObject(hfont);
6506 return GenericError;
6509 if (glyphsize > max_glyphsize)
6510 max_glyphsize = glyphsize;
6512 left = pti[i].x + glyphmetrics.gmptGlyphOrigin.x;
6513 top = pti[i].y - glyphmetrics.gmptGlyphOrigin.y;
6514 right = pti[i].x + glyphmetrics.gmptGlyphOrigin.x + glyphmetrics.gmBlackBoxX;
6515 bottom = pti[i].y - glyphmetrics.gmptGlyphOrigin.y + glyphmetrics.gmBlackBoxY;
6517 if (left < min_x) min_x = left;
6518 if (top < min_y) min_y = top;
6519 if (right > max_x) max_x = right;
6520 if (bottom > max_y) max_y = bottom;
6522 if (i+1 < length && (flags & DriverStringOptionsRealizedAdvance) == DriverStringOptionsRealizedAdvance)
6524 pti[i+1].x = pti[i].x + glyphmetrics.gmCellIncX;
6525 pti[i+1].y = pti[i].y + glyphmetrics.gmCellIncY;
6529 glyph_mask = GdipAlloc(max_glyphsize);
6530 text_mask = GdipAlloc((max_x - min_x) * (max_y - min_y));
6531 text_mask_stride = max_x - min_x;
6533 if (!(glyph_mask && text_mask))
6535 GdipFree(glyph_mask);
6536 GdipFree(text_mask);
6537 GdipFree(pti);
6538 DeleteDC(hdc);
6539 DeleteObject(hfont);
6540 return OutOfMemory;
6543 /* Generate a mask for the text */
6544 for (i=0; i<length; i++)
6546 int left, top, stride;
6548 GetGlyphOutlineW(hdc, text[i], ggo_flags,
6549 &glyphmetrics, max_glyphsize, glyph_mask, &identity);
6551 left = pti[i].x + glyphmetrics.gmptGlyphOrigin.x;
6552 top = pti[i].y - glyphmetrics.gmptGlyphOrigin.y;
6553 stride = (glyphmetrics.gmBlackBoxX + 3) & (~3);
6555 for (y=0; y<glyphmetrics.gmBlackBoxY; y++)
6557 BYTE *glyph_val = glyph_mask + y * stride;
6558 BYTE *text_val = text_mask + (left - min_x) + (top - min_y + y) * text_mask_stride;
6559 for (x=0; x<glyphmetrics.gmBlackBoxX; x++)
6561 *text_val = min(64, *text_val + *glyph_val);
6562 glyph_val++;
6563 text_val++;
6568 GdipFree(pti);
6569 DeleteDC(hdc);
6570 DeleteObject(hfont);
6571 GdipFree(glyph_mask);
6573 /* get the brush data */
6574 pixel_data = GdipAlloc(4 * (max_x - min_x) * (max_y - min_y));
6575 if (!pixel_data)
6577 GdipFree(text_mask);
6578 return OutOfMemory;
6581 pixel_area.X = min_x;
6582 pixel_area.Y = min_y;
6583 pixel_area.Width = max_x - min_x;
6584 pixel_area.Height = max_y - min_y;
6585 pixel_data_stride = pixel_area.Width * 4;
6587 stat = brush_fill_pixels(graphics, (GpBrush*)brush, (DWORD*)pixel_data, &pixel_area, pixel_area.Width);
6588 if (stat != Ok)
6590 GdipFree(text_mask);
6591 GdipFree(pixel_data);
6592 return stat;
6595 /* multiply the brush data by the mask */
6596 for (y=0; y<pixel_area.Height; y++)
6598 BYTE *text_val = text_mask + text_mask_stride * y;
6599 BYTE *pixel_val = pixel_data + pixel_data_stride * y + 3;
6600 for (x=0; x<pixel_area.Width; x++)
6602 *pixel_val = (*pixel_val) * (*text_val) / 64;
6603 text_val++;
6604 pixel_val+=4;
6608 GdipFree(text_mask);
6610 /* draw the result */
6611 stat = alpha_blend_pixels(graphics, min_x, min_y, pixel_data, pixel_area.Width,
6612 pixel_area.Height, pixel_data_stride);
6614 GdipFree(pixel_data);
6616 return stat;
6619 static GpStatus draw_driver_string(GpGraphics *graphics, GDIPCONST UINT16 *text, INT length,
6620 GDIPCONST GpFont *font, GDIPCONST GpStringFormat *format,
6621 GDIPCONST GpBrush *brush, GDIPCONST PointF *positions,
6622 INT flags, GDIPCONST GpMatrix *matrix)
6624 GpStatus stat = NotImplemented;
6626 if (length == -1)
6627 length = strlenW(text);
6629 if (graphics->hdc &&
6630 ((flags & DriverStringOptionsRealizedAdvance) || length <= 1) &&
6631 brush->bt == BrushTypeSolidColor &&
6632 (((GpSolidFill*)brush)->color & 0xff000000) == 0xff000000)
6633 stat = GDI32_GdipDrawDriverString(graphics, text, length, font, format,
6634 brush, positions, flags, matrix);
6635 if (stat == NotImplemented)
6636 stat = SOFTWARE_GdipDrawDriverString(graphics, text, length, font, format,
6637 brush, positions, flags, matrix);
6638 return stat;
6641 /*****************************************************************************
6642 * GdipDrawDriverString [GDIPLUS.@]
6644 GpStatus WINGDIPAPI GdipDrawDriverString(GpGraphics *graphics, GDIPCONST UINT16 *text, INT length,
6645 GDIPCONST GpFont *font, GDIPCONST GpBrush *brush,
6646 GDIPCONST PointF *positions, INT flags,
6647 GDIPCONST GpMatrix *matrix )
6649 TRACE("(%p %s %p %p %p %d %p)\n", graphics, debugstr_wn(text, length), font, brush, positions, flags, matrix);
6651 if (!graphics || !text || !font || !brush || !positions)
6652 return InvalidParameter;
6654 return draw_driver_string(graphics, text, length, font, NULL,
6655 brush, positions, flags, matrix);
6658 GpStatus WINGDIPAPI GdipRecordMetafileStream(IStream *stream, HDC hdc, EmfType type, GDIPCONST GpRect *frameRect,
6659 MetafileFrameUnit frameUnit, GDIPCONST WCHAR *desc, GpMetafile **metafile)
6661 FIXME("(%p %p %d %p %d %p %p): stub\n", stream, hdc, type, frameRect, frameUnit, desc, metafile);
6662 return NotImplemented;
6665 /*****************************************************************************
6666 * GdipIsVisibleClipEmpty [GDIPLUS.@]
6668 GpStatus WINGDIPAPI GdipIsVisibleClipEmpty(GpGraphics *graphics, BOOL *res)
6670 GpStatus stat;
6671 GpRegion* rgn;
6673 TRACE("(%p, %p)\n", graphics, res);
6675 if((stat = GdipCreateRegion(&rgn)) != Ok)
6676 return stat;
6678 if((stat = get_visible_clip_region(graphics, rgn)) != Ok)
6679 goto cleanup;
6681 stat = GdipIsEmptyRegion(rgn, graphics, res);
6683 cleanup:
6684 GdipDeleteRegion(rgn);
6685 return stat;
6688 GpStatus WINGDIPAPI GdipResetPageTransform(GpGraphics *graphics)
6690 static int calls;
6692 TRACE("(%p) stub\n", graphics);
6694 if(!(calls++))
6695 FIXME("not implemented\n");
6697 return NotImplemented;