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
27 #include "wine/unicode.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)
71 switch(type & PathPointTypePathTypeMask){
72 case PathPointTypeBezier:
75 case PathPointTypeLine:
78 case PathPointTypeStart:
82 ERR("Bad point type\n");
86 if(type & PathPointTypeCloseSubpath)
87 ret |= PT_CLOSEFIGURE;
92 static COLORREF get_gdi_brush_color(const GpBrush *brush)
98 case BrushTypeSolidColor:
100 const GpSolidFill *sf = (const GpSolidFill *)brush;
104 case BrushTypeHatchFill:
106 const GpHatch *hatch = (const GpHatch *)brush;
107 argb = hatch->forecol;
110 case BrushTypeLinearGradient:
112 const GpLineGradient *line = (const GpLineGradient *)brush;
113 argb = line->startcolor;
116 case BrushTypePathGradient:
118 const GpPathGradient *grad = (const GpPathGradient *)brush;
119 argb = grad->centercolor;
123 FIXME("unhandled brush type %d\n", brush->bt);
127 return ARGB2COLORREF(argb);
130 static HBITMAP create_hatch_bitmap(const GpHatch *hatch)
133 BITMAPINFOHEADER bmih;
137 bmih.biSize = sizeof(bmih);
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);
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;
159 bits[y * 8 + x] = hatch->backcol;
165 FIXME("Unimplemented hatch style %d\n", hatch->hatchstyle);
167 for (y = 0; y < 64; y++)
168 bits[y] = hatch->forecol;
175 static GpStatus create_gdi_logbrush(const GpBrush *brush, LOGBRUSH *lb)
179 case BrushTypeSolidColor:
181 const GpSolidFill *sf = (const GpSolidFill *)brush;
182 lb->lbStyle = BS_SOLID;
183 lb->lbColor = ARGB2COLORREF(sf->color);
188 case BrushTypeHatchFill:
190 const GpHatch *hatch = (const GpHatch *)brush;
193 hbmp = create_hatch_bitmap(hatch);
194 if (!hbmp) return OutOfMemory;
196 lb->lbStyle = BS_PATTERN;
198 lb->lbHatch = (ULONG_PTR)hbmp;
203 FIXME("unhandled brush type %d\n", brush->bt);
204 lb->lbStyle = BS_SOLID;
205 lb->lbColor = get_gdi_brush_color(brush);
211 static GpStatus free_gdi_logbrush(LOGBRUSH *lb)
216 DeleteObject((HGDIOBJ)(ULONG_PTR)lb->lbHatch);
222 static HBRUSH create_gdi_brush(const GpBrush *brush)
227 if (create_gdi_logbrush(brush, &lb) != Ok) return 0;
229 gdibrush = CreateBrushIndirect(&lb);
230 free_gdi_logbrush(&lb);
235 static INT prepare_dc(GpGraphics *graphics, GpPen *pen)
240 INT save_state, i, numdashes;
242 DWORD dash_array[MAX_DASHLEN];
244 save_state = SaveDC(graphics->hdc);
246 EndPath(graphics->hdc);
248 if(pen->unit == UnitPixel){
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.) */
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);
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);
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
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;
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 GdipCloneMatrix(graphics->worldtrans, &matrix);
329 GdipScaleMatrix(matrix, scale_x, scale_y, MatrixOrderAppend);
330 GdipTransformMatrixPoints(matrix, ptf, count);
331 GdipDeleteMatrix(matrix);
333 for(i = 0; i < count; i++){
334 pti[i].x = gdip_round(ptf[i].X);
335 pti[i].y = gdip_round(ptf[i].Y);
339 static void gdi_alpha_blend(GpGraphics *graphics, INT dst_x, INT dst_y, INT dst_width, INT dst_height,
340 HDC hdc, INT src_x, INT src_y, INT src_width, INT src_height)
342 if (GetDeviceCaps(graphics->hdc, SHADEBLENDCAPS) == SB_NONE)
344 TRACE("alpha blending not supported by device, fallback to StretchBlt\n");
346 StretchBlt(graphics->hdc, dst_x, dst_y, dst_width, dst_height,
347 hdc, src_x, src_y, src_width, src_height, SRCCOPY);
353 bf.BlendOp = AC_SRC_OVER;
355 bf.SourceConstantAlpha = 255;
356 bf.AlphaFormat = AC_SRC_ALPHA;
358 GdiAlphaBlend(graphics->hdc, dst_x, dst_y, dst_width, dst_height,
359 hdc, src_x, src_y, src_width, src_height, bf);
363 /* Draw non-premultiplied ARGB data to the given graphics object */
364 static GpStatus alpha_blend_pixels(GpGraphics *graphics, INT dst_x, INT dst_y,
365 const BYTE *src, INT src_width, INT src_height, INT src_stride)
367 if (graphics->image && graphics->image->type == ImageTypeBitmap)
369 GpBitmap *dst_bitmap = (GpBitmap*)graphics->image;
372 for (x=0; x<src_width; x++)
374 for (y=0; y<src_height; y++)
376 ARGB dst_color, src_color;
377 GdipBitmapGetPixel(dst_bitmap, x+dst_x, y+dst_y, &dst_color);
378 src_color = ((ARGB*)(src + src_stride * y))[x];
379 GdipBitmapSetPixel(dst_bitmap, x+dst_x, y+dst_y, color_over(dst_color, src_color));
385 else if (graphics->image && graphics->image->type == ImageTypeMetafile)
387 ERR("This should not be used for metafiles; fix caller\n");
388 return NotImplemented;
394 BITMAPINFOHEADER bih;
397 hdc = CreateCompatibleDC(0);
399 bih.biSize = sizeof(BITMAPINFOHEADER);
400 bih.biWidth = src_width;
401 bih.biHeight = -src_height;
404 bih.biCompression = BI_RGB;
406 bih.biXPelsPerMeter = 0;
407 bih.biYPelsPerMeter = 0;
409 bih.biClrImportant = 0;
411 hbitmap = CreateDIBSection(hdc, (BITMAPINFO*)&bih, DIB_RGB_COLORS,
412 (void**)&temp_bits, NULL, 0);
414 convert_32bppARGB_to_32bppPARGB(src_width, src_height, temp_bits,
415 4 * src_width, src, src_stride);
417 SelectObject(hdc, hbitmap);
418 gdi_alpha_blend(graphics, dst_x, dst_y, src_width, src_height,
419 hdc, 0, 0, src_width, src_height);
421 DeleteObject(hbitmap);
427 static GpStatus alpha_blend_pixels_hrgn(GpGraphics *graphics, INT dst_x, INT dst_y,
428 const BYTE *src, INT src_width, INT src_height, INT src_stride, HRGN hregion)
432 if (graphics->image && graphics->image->type == ImageTypeBitmap)
438 size = GetRegionData(hregion, 0, NULL);
440 rgndata = GdipAlloc(size);
444 GetRegionData(hregion, size, rgndata);
446 rects = (RECT*)&rgndata->Buffer;
448 for (i=0; stat == Ok && i<rgndata->rdh.nCount; i++)
450 stat = alpha_blend_pixels(graphics, rects[i].left, rects[i].top,
451 &src[(rects[i].left - dst_x) * 4 + (rects[i].top - dst_y) * src_stride],
452 rects[i].right - rects[i].left, rects[i].bottom - rects[i].top,
460 else if (graphics->image && graphics->image->type == ImageTypeMetafile)
462 ERR("This should not be used for metafiles; fix caller\n");
463 return NotImplemented;
469 save = SaveDC(graphics->hdc);
471 ExtSelectClipRgn(graphics->hdc, hregion, RGN_AND);
473 stat = alpha_blend_pixels(graphics, dst_x, dst_y, src, src_width,
474 src_height, src_stride);
476 RestoreDC(graphics->hdc, save);
482 static ARGB blend_colors(ARGB start, ARGB end, REAL position)
488 a1 = (start >> 24) & 0xff;
489 a2 = (end >> 24) & 0xff;
491 a3 = (int)(a1*(1.0f - position)+a2*(position));
495 for (i=0xff; i<=0xff0000; i = i << 8)
496 result |= (int)((start&i)*(1.0f - position)+(end&i)*(position))&i;
500 static ARGB blend_line_gradient(GpLineGradient* brush, REAL position)
504 /* clamp to between 0.0 and 1.0, using the wrap mode */
505 if (brush->wrap == WrapModeTile)
507 position = fmodf(position, 1.0f);
508 if (position < 0.0f) position += 1.0f;
510 else /* WrapModeFlip* */
512 position = fmodf(position, 2.0f);
513 if (position < 0.0f) position += 2.0f;
514 if (position > 1.0f) position = 2.0f - position;
517 if (brush->blendcount == 1)
522 REAL left_blendpos, left_blendfac, right_blendpos, right_blendfac;
525 /* locate the blend positions surrounding this position */
526 while (position > brush->blendpos[i])
529 /* interpolate between the blend positions */
530 left_blendpos = brush->blendpos[i-1];
531 left_blendfac = brush->blendfac[i-1];
532 right_blendpos = brush->blendpos[i];
533 right_blendfac = brush->blendfac[i];
534 range = right_blendpos - left_blendpos;
535 blendfac = (left_blendfac * (right_blendpos - position) +
536 right_blendfac * (position - left_blendpos)) / range;
539 if (brush->pblendcount == 0)
540 return blend_colors(brush->startcolor, brush->endcolor, blendfac);
544 ARGB left_blendcolor, right_blendcolor;
545 REAL left_blendpos, right_blendpos;
547 /* locate the blend colors surrounding this position */
548 while (blendfac > brush->pblendpos[i])
551 /* interpolate between the blend colors */
552 left_blendpos = brush->pblendpos[i-1];
553 left_blendcolor = brush->pblendcolor[i-1];
554 right_blendpos = brush->pblendpos[i];
555 right_blendcolor = brush->pblendcolor[i];
556 blendfac = (blendfac - left_blendpos) / (right_blendpos - left_blendpos);
557 return blend_colors(left_blendcolor, right_blendcolor, blendfac);
561 static ARGB transform_color(ARGB color, const ColorMatrix *matrix)
565 unsigned char a, r, g, b;
567 val[0] = ((color >> 16) & 0xff) / 255.0; /* red */
568 val[1] = ((color >> 8) & 0xff) / 255.0; /* green */
569 val[2] = (color & 0xff) / 255.0; /* blue */
570 val[3] = ((color >> 24) & 0xff) / 255.0; /* alpha */
571 val[4] = 1.0; /* translation */
578 res[i] += matrix->m[j][i] * val[j];
581 a = min(max(floorf(res[3]*255.0), 0.0), 255.0);
582 r = min(max(floorf(res[0]*255.0), 0.0), 255.0);
583 g = min(max(floorf(res[1]*255.0), 0.0), 255.0);
584 b = min(max(floorf(res[2]*255.0), 0.0), 255.0);
586 return (a << 24) | (r << 16) | (g << 8) | b;
589 static int color_is_gray(ARGB color)
591 unsigned char r, g, b;
593 r = (color >> 16) & 0xff;
594 g = (color >> 8) & 0xff;
597 return (r == g) && (g == b);
600 static void apply_image_attributes(const GpImageAttributes *attributes, LPBYTE data,
601 UINT width, UINT height, INT stride, ColorAdjustType type)
605 if (attributes->colorkeys[type].enabled ||
606 attributes->colorkeys[ColorAdjustTypeDefault].enabled)
608 const struct color_key *key;
609 BYTE min_blue, min_green, min_red;
610 BYTE max_blue, max_green, max_red;
612 if (attributes->colorkeys[type].enabled)
613 key = &attributes->colorkeys[type];
615 key = &attributes->colorkeys[ColorAdjustTypeDefault];
617 min_blue = key->low&0xff;
618 min_green = (key->low>>8)&0xff;
619 min_red = (key->low>>16)&0xff;
621 max_blue = key->high&0xff;
622 max_green = (key->high>>8)&0xff;
623 max_red = (key->high>>16)&0xff;
625 for (x=0; x<width; x++)
626 for (y=0; y<height; y++)
629 BYTE blue, green, red;
630 src_color = (ARGB*)(data + stride * y + sizeof(ARGB) * x);
631 blue = *src_color&0xff;
632 green = (*src_color>>8)&0xff;
633 red = (*src_color>>16)&0xff;
634 if (blue >= min_blue && green >= min_green && red >= min_red &&
635 blue <= max_blue && green <= max_green && red <= max_red)
636 *src_color = 0x00000000;
640 if (attributes->colorremaptables[type].enabled ||
641 attributes->colorremaptables[ColorAdjustTypeDefault].enabled)
643 const struct color_remap_table *table;
645 if (attributes->colorremaptables[type].enabled)
646 table = &attributes->colorremaptables[type];
648 table = &attributes->colorremaptables[ColorAdjustTypeDefault];
650 for (x=0; x<width; x++)
651 for (y=0; y<height; y++)
654 src_color = (ARGB*)(data + stride * y + sizeof(ARGB) * x);
655 for (i=0; i<table->mapsize; i++)
657 if (*src_color == table->colormap[i].oldColor.Argb)
659 *src_color = table->colormap[i].newColor.Argb;
666 if (attributes->colormatrices[type].enabled ||
667 attributes->colormatrices[ColorAdjustTypeDefault].enabled)
669 const struct color_matrix *colormatrices;
671 if (attributes->colormatrices[type].enabled)
672 colormatrices = &attributes->colormatrices[type];
674 colormatrices = &attributes->colormatrices[ColorAdjustTypeDefault];
676 for (x=0; x<width; x++)
677 for (y=0; y<height; y++)
680 src_color = (ARGB*)(data + stride * y + sizeof(ARGB) * x);
682 if (colormatrices->flags == ColorMatrixFlagsDefault ||
683 !color_is_gray(*src_color))
685 *src_color = transform_color(*src_color, &colormatrices->colormatrix);
687 else if (colormatrices->flags == ColorMatrixFlagsAltGray)
689 *src_color = transform_color(*src_color, &colormatrices->graymatrix);
694 if (attributes->gamma_enabled[type] ||
695 attributes->gamma_enabled[ColorAdjustTypeDefault])
699 if (attributes->gamma_enabled[type])
700 gamma = attributes->gamma[type];
702 gamma = attributes->gamma[ColorAdjustTypeDefault];
704 for (x=0; x<width; x++)
705 for (y=0; y<height; y++)
708 BYTE blue, green, red;
709 src_color = (ARGB*)(data + stride * y + sizeof(ARGB) * x);
711 blue = *src_color&0xff;
712 green = (*src_color>>8)&0xff;
713 red = (*src_color>>16)&0xff;
715 /* FIXME: We should probably use a table for this. */
716 blue = floorf(powf(blue / 255.0, gamma) * 255.0);
717 green = floorf(powf(green / 255.0, gamma) * 255.0);
718 red = floorf(powf(red / 255.0, gamma) * 255.0);
720 *src_color = (*src_color & 0xff000000) | (red << 16) | (green << 8) | blue;
725 /* Given a bitmap and its source rectangle, find the smallest rectangle in the
726 * bitmap that contains all the pixels we may need to draw it. */
727 static void get_bitmap_sample_size(InterpolationMode interpolation, WrapMode wrap,
728 GpBitmap* bitmap, REAL srcx, REAL srcy, REAL srcwidth, REAL srcheight,
731 INT left, top, right, bottom;
733 switch (interpolation)
735 case InterpolationModeHighQualityBilinear:
736 case InterpolationModeHighQualityBicubic:
737 /* FIXME: Include a greater range for the prefilter? */
738 case InterpolationModeBicubic:
739 case InterpolationModeBilinear:
740 left = (INT)(floorf(srcx));
741 top = (INT)(floorf(srcy));
742 right = (INT)(ceilf(srcx+srcwidth));
743 bottom = (INT)(ceilf(srcy+srcheight));
745 case InterpolationModeNearestNeighbor:
747 left = gdip_round(srcx);
748 top = gdip_round(srcy);
749 right = gdip_round(srcx+srcwidth);
750 bottom = gdip_round(srcy+srcheight);
754 if (wrap == WrapModeClamp)
760 if (right >= bitmap->width)
761 right = bitmap->width-1;
762 if (bottom >= bitmap->height)
763 bottom = bitmap->height-1;
767 /* In some cases we can make the rectangle smaller here, but the logic
768 * is hard to get right, and tiling suggests we're likely to use the
769 * entire source image. */
770 if (left < 0 || right >= bitmap->width)
773 right = bitmap->width-1;
776 if (top < 0 || bottom >= bitmap->height)
779 bottom = bitmap->height-1;
785 rect->Width = right - left + 1;
786 rect->Height = bottom - top + 1;
789 static ARGB sample_bitmap_pixel(GDIPCONST GpRect *src_rect, LPBYTE bits, UINT width,
790 UINT height, INT x, INT y, GDIPCONST GpImageAttributes *attributes)
792 if (attributes->wrap == WrapModeClamp)
794 if (x < 0 || y < 0 || x >= width || y >= height)
795 return attributes->outside_color;
799 /* Tiling. Make sure co-ordinates are positive as it simplifies the math. */
801 x = width*2 + x % (width * 2);
803 y = height*2 + y % (height * 2);
805 if ((attributes->wrap & 1) == 1)
808 if ((x / width) % 2 == 0)
811 x = width - 1 - x % width;
816 if ((attributes->wrap & 2) == 2)
819 if ((y / height) % 2 == 0)
822 y = height - 1 - y % height;
828 if (x < src_rect->X || y < src_rect->Y || x >= src_rect->X + src_rect->Width || y >= src_rect->Y + src_rect->Height)
830 ERR("out of range pixel requested\n");
834 return ((DWORD*)(bits))[(x - src_rect->X) + (y - src_rect->Y) * src_rect->Width];
837 static ARGB resample_bitmap_pixel(GDIPCONST GpRect *src_rect, LPBYTE bits, UINT width,
838 UINT height, GpPointF *point, GDIPCONST GpImageAttributes *attributes,
839 InterpolationMode interpolation, PixelOffsetMode offset_mode)
843 switch (interpolation)
847 FIXME("Unimplemented interpolation %i\n", interpolation);
849 case InterpolationModeBilinear:
852 INT leftx, rightx, topy, bottomy;
853 ARGB topleft, topright, bottomleft, bottomright;
857 leftxf = floorf(point->X);
859 rightx = (INT)ceilf(point->X);
860 topyf = floorf(point->Y);
862 bottomy = (INT)ceilf(point->Y);
864 if (leftx == rightx && topy == bottomy)
865 return sample_bitmap_pixel(src_rect, bits, width, height,
866 leftx, topy, attributes);
868 topleft = sample_bitmap_pixel(src_rect, bits, width, height,
869 leftx, topy, attributes);
870 topright = sample_bitmap_pixel(src_rect, bits, width, height,
871 rightx, topy, attributes);
872 bottomleft = sample_bitmap_pixel(src_rect, bits, width, height,
873 leftx, bottomy, attributes);
874 bottomright = sample_bitmap_pixel(src_rect, bits, width, height,
875 rightx, bottomy, attributes);
877 x_offset = point->X - leftxf;
878 top = blend_colors(topleft, topright, x_offset);
879 bottom = blend_colors(bottomleft, bottomright, x_offset);
881 return blend_colors(top, bottom, point->Y - topyf);
883 case InterpolationModeNearestNeighbor:
889 case PixelOffsetModeNone:
890 case PixelOffsetModeHighSpeed:
894 case PixelOffsetModeHalf:
895 case PixelOffsetModeHighQuality:
899 return sample_bitmap_pixel(src_rect, bits, width, height,
900 floorf(point->X + pixel_offset), floorf(point->Y + pixel_offset), attributes);
906 static REAL intersect_line_scanline(const GpPointF *p1, const GpPointF *p2, REAL y)
908 return (p1->X - p2->X) * (p2->Y - y) / (p2->Y - p1->Y) + p2->X;
911 static INT brush_can_fill_path(GpBrush *brush)
915 case BrushTypeSolidColor:
917 case BrushTypeHatchFill:
919 GpHatch *hatch = (GpHatch*)brush;
920 return ((hatch->forecol & 0xff000000) == 0xff000000) &&
921 ((hatch->backcol & 0xff000000) == 0xff000000);
923 case BrushTypeLinearGradient:
924 case BrushTypeTextureFill:
925 /* Gdi32 isn't much help with these, so we should use brush_fill_pixels instead. */
931 static void brush_fill_path(GpGraphics *graphics, GpBrush* brush)
935 case BrushTypeSolidColor:
937 GpSolidFill *fill = (GpSolidFill*)brush;
938 HBITMAP bmp = ARGB2BMP(fill->color);
943 /* partially transparent fill */
945 SelectClipPath(graphics->hdc, RGN_AND);
946 if (GetClipBox(graphics->hdc, &rc) != NULLREGION)
948 HDC hdc = CreateCompatibleDC(NULL);
952 SelectObject(hdc, bmp);
953 gdi_alpha_blend(graphics, rc.left, rc.top, rc.right - rc.left, rc.bottom - rc.top,
961 /* else fall through */
965 HBRUSH gdibrush, old_brush;
967 gdibrush = create_gdi_brush(brush);
968 if (!gdibrush) return;
970 old_brush = SelectObject(graphics->hdc, gdibrush);
971 FillPath(graphics->hdc);
972 SelectObject(graphics->hdc, old_brush);
973 DeleteObject(gdibrush);
979 static INT brush_can_fill_pixels(GpBrush *brush)
983 case BrushTypeSolidColor:
984 case BrushTypeHatchFill:
985 case BrushTypeLinearGradient:
986 case BrushTypeTextureFill:
987 case BrushTypePathGradient:
994 static GpStatus brush_fill_pixels(GpGraphics *graphics, GpBrush *brush,
995 DWORD *argb_pixels, GpRect *fill_area, UINT cdwStride)
999 case BrushTypeSolidColor:
1002 GpSolidFill *fill = (GpSolidFill*)brush;
1003 for (x=0; x<fill_area->Width; x++)
1004 for (y=0; y<fill_area->Height; y++)
1005 argb_pixels[x + y*cdwStride] = fill->color;
1008 case BrushTypeHatchFill:
1011 GpHatch *fill = (GpHatch*)brush;
1012 const char *hatch_data;
1014 if (get_hatch_data(fill->hatchstyle, &hatch_data) != Ok)
1015 return NotImplemented;
1017 for (x=0; x<fill_area->Width; x++)
1018 for (y=0; y<fill_area->Height; y++)
1022 /* FIXME: Account for the rendering origin */
1023 hx = (x + fill_area->X) % 8;
1024 hy = (y + fill_area->Y) % 8;
1026 if ((hatch_data[7-hy] & (0x80 >> hx)) != 0)
1027 argb_pixels[x + y*cdwStride] = fill->forecol;
1029 argb_pixels[x + y*cdwStride] = fill->backcol;
1034 case BrushTypeLinearGradient:
1036 GpLineGradient *fill = (GpLineGradient*)brush;
1037 GpPointF draw_points[3], line_points[3];
1039 static const GpRectF box_1 = { 0.0, 0.0, 1.0, 1.0 };
1040 GpMatrix *world_to_gradient; /* FIXME: Store this in the brush? */
1043 draw_points[0].X = fill_area->X;
1044 draw_points[0].Y = fill_area->Y;
1045 draw_points[1].X = fill_area->X+1;
1046 draw_points[1].Y = fill_area->Y;
1047 draw_points[2].X = fill_area->X;
1048 draw_points[2].Y = fill_area->Y+1;
1050 /* Transform the points to a co-ordinate space where X is the point's
1051 * position in the gradient, 0.0 being the start point and 1.0 the
1053 stat = GdipTransformPoints(graphics, CoordinateSpaceWorld,
1054 CoordinateSpaceDevice, draw_points, 3);
1058 line_points[0] = fill->startpoint;
1059 line_points[1] = fill->endpoint;
1060 line_points[2].X = fill->startpoint.X + (fill->startpoint.Y - fill->endpoint.Y);
1061 line_points[2].Y = fill->startpoint.Y + (fill->endpoint.X - fill->startpoint.X);
1063 stat = GdipCreateMatrix3(&box_1, line_points, &world_to_gradient);
1068 stat = GdipInvertMatrix(world_to_gradient);
1071 stat = GdipTransformMatrixPoints(world_to_gradient, draw_points, 3);
1073 GdipDeleteMatrix(world_to_gradient);
1078 REAL x_delta = draw_points[1].X - draw_points[0].X;
1079 REAL y_delta = draw_points[2].X - draw_points[0].X;
1081 for (y=0; y<fill_area->Height; y++)
1083 for (x=0; x<fill_area->Width; x++)
1085 REAL pos = draw_points[0].X + x * x_delta + y * y_delta;
1087 argb_pixels[x + y*cdwStride] = blend_line_gradient(fill, pos);
1094 case BrushTypeTextureFill:
1096 GpTexture *fill = (GpTexture*)brush;
1097 GpPointF draw_points[3];
1099 GpMatrix *world_to_texture;
1105 if (fill->image->type != ImageTypeBitmap)
1107 FIXME("metafile texture brushes not implemented\n");
1108 return NotImplemented;
1111 bitmap = (GpBitmap*)fill->image;
1112 src_stride = sizeof(ARGB) * bitmap->width;
1114 src_area.X = src_area.Y = 0;
1115 src_area.Width = bitmap->width;
1116 src_area.Height = bitmap->height;
1118 draw_points[0].X = fill_area->X;
1119 draw_points[0].Y = fill_area->Y;
1120 draw_points[1].X = fill_area->X+1;
1121 draw_points[1].Y = fill_area->Y;
1122 draw_points[2].X = fill_area->X;
1123 draw_points[2].Y = fill_area->Y+1;
1125 /* Transform the points to the co-ordinate space of the bitmap. */
1126 stat = GdipTransformPoints(graphics, CoordinateSpaceWorld,
1127 CoordinateSpaceDevice, draw_points, 3);
1131 stat = GdipCloneMatrix(fill->transform, &world_to_texture);
1136 stat = GdipInvertMatrix(world_to_texture);
1139 stat = GdipTransformMatrixPoints(world_to_texture, draw_points, 3);
1141 GdipDeleteMatrix(world_to_texture);
1144 if (stat == Ok && !fill->bitmap_bits)
1146 BitmapData lockeddata;
1148 fill->bitmap_bits = GdipAlloc(sizeof(ARGB) * bitmap->width * bitmap->height);
1149 if (!fill->bitmap_bits)
1154 lockeddata.Width = bitmap->width;
1155 lockeddata.Height = bitmap->height;
1156 lockeddata.Stride = src_stride;
1157 lockeddata.PixelFormat = PixelFormat32bppARGB;
1158 lockeddata.Scan0 = fill->bitmap_bits;
1160 stat = GdipBitmapLockBits(bitmap, &src_area, ImageLockModeRead|ImageLockModeUserInputBuf,
1161 PixelFormat32bppARGB, &lockeddata);
1165 stat = GdipBitmapUnlockBits(bitmap, &lockeddata);
1168 apply_image_attributes(fill->imageattributes, fill->bitmap_bits,
1169 bitmap->width, bitmap->height,
1170 src_stride, ColorAdjustTypeBitmap);
1174 GdipFree(fill->bitmap_bits);
1175 fill->bitmap_bits = NULL;
1181 REAL x_dx = draw_points[1].X - draw_points[0].X;
1182 REAL x_dy = draw_points[1].Y - draw_points[0].Y;
1183 REAL y_dx = draw_points[2].X - draw_points[0].X;
1184 REAL y_dy = draw_points[2].Y - draw_points[0].Y;
1186 for (y=0; y<fill_area->Height; y++)
1188 for (x=0; x<fill_area->Width; x++)
1191 point.X = draw_points[0].X + x * x_dx + y * y_dx;
1192 point.Y = draw_points[0].Y + y * x_dy + y * y_dy;
1194 argb_pixels[x + y*cdwStride] = resample_bitmap_pixel(
1195 &src_area, fill->bitmap_bits, bitmap->width, bitmap->height,
1196 &point, fill->imageattributes, graphics->interpolation,
1197 graphics->pixeloffset);
1204 case BrushTypePathGradient:
1206 GpPathGradient *fill = (GpPathGradient*)brush;
1208 GpMatrix *world_to_device;
1210 int i, figure_start=0;
1211 GpPointF start_point, end_point, center_point;
1213 REAL min_yf, max_yf, line1_xf, line2_xf;
1214 INT min_y, max_y, min_x, max_x;
1217 static int transform_fixme_once;
1219 if (fill->focus.X != 0.0 || fill->focus.Y != 0.0)
1223 FIXME("path gradient focus not implemented\n");
1230 FIXME("path gradient gamma correction not implemented\n");
1233 if (fill->blendcount)
1237 FIXME("path gradient blend not implemented\n");
1240 if (fill->pblendcount)
1244 FIXME("path gradient preset blend not implemented\n");
1247 if (!transform_fixme_once)
1249 BOOL is_identity=TRUE;
1250 GdipIsMatrixIdentity(fill->transform, &is_identity);
1253 FIXME("path gradient transform not implemented\n");
1254 transform_fixme_once = 1;
1258 stat = GdipClonePath(fill->path, &flat_path);
1263 stat = get_graphics_transform(graphics, CoordinateSpaceDevice,
1264 CoordinateSpaceWorld, &world_to_device);
1267 stat = GdipTransformPath(flat_path, world_to_device);
1271 center_point = fill->center;
1272 stat = GdipTransformMatrixPoints(world_to_device, ¢er_point, 1);
1276 stat = GdipFlattenPath(flat_path, NULL, 0.5);
1278 GdipDeleteMatrix(world_to_device);
1283 GdipDeletePath(flat_path);
1287 for (i=0; i<flat_path->pathdata.Count; i++)
1289 int start_center_line=0, end_center_line=0;
1290 int seen_start=0, seen_end=0, seen_center=0;
1291 REAL center_distance;
1292 ARGB start_color, end_color;
1295 type = flat_path->pathdata.Types[i];
1297 if ((type&PathPointTypePathTypeMask) == PathPointTypeStart)
1300 start_point = flat_path->pathdata.Points[i];
1302 start_color = fill->surroundcolors[min(i, fill->surroundcolorcount-1)];
1304 if ((type&PathPointTypeCloseSubpath) == PathPointTypeCloseSubpath || i+1 >= flat_path->pathdata.Count)
1306 end_point = flat_path->pathdata.Points[figure_start];
1307 end_color = fill->surroundcolors[min(figure_start, fill->surroundcolorcount-1)];
1309 else if ((flat_path->pathdata.Types[i+1] & PathPointTypePathTypeMask) == PathPointTypeLine)
1311 end_point = flat_path->pathdata.Points[i+1];
1312 end_color = fill->surroundcolors[min(i+1, fill->surroundcolorcount-1)];
1317 outer_color = start_color;
1319 min_yf = center_point.Y;
1320 if (min_yf > start_point.Y) min_yf = start_point.Y;
1321 if (min_yf > end_point.Y) min_yf = end_point.Y;
1323 if (min_yf < fill_area->Y)
1324 min_y = fill_area->Y;
1326 min_y = (INT)ceil(min_yf);
1328 max_yf = center_point.Y;
1329 if (max_yf < start_point.Y) max_yf = start_point.Y;
1330 if (max_yf < end_point.Y) max_yf = end_point.Y;
1332 if (max_yf > fill_area->Y + fill_area->Height)
1333 max_y = fill_area->Y + fill_area->Height;
1335 max_y = (INT)ceil(max_yf);
1337 dy = end_point.Y - start_point.Y;
1338 dx = end_point.X - start_point.X;
1340 /* This is proportional to the distance from start-end line to center point. */
1341 center_distance = dy * (start_point.X - center_point.X) +
1342 dx * (center_point.Y - start_point.Y);
1344 for (y=min_y; y<max_y; y++)
1348 if (!seen_start && yf >= start_point.Y)
1351 start_center_line ^= 1;
1353 if (!seen_end && yf >= end_point.Y)
1356 end_center_line ^= 1;
1358 if (!seen_center && yf >= center_point.Y)
1361 start_center_line ^= 1;
1362 end_center_line ^= 1;
1365 if (start_center_line)
1366 line1_xf = intersect_line_scanline(&start_point, ¢er_point, yf);
1368 line1_xf = intersect_line_scanline(&start_point, &end_point, yf);
1370 if (end_center_line)
1371 line2_xf = intersect_line_scanline(&end_point, ¢er_point, yf);
1373 line2_xf = intersect_line_scanline(&start_point, &end_point, yf);
1375 if (line1_xf < line2_xf)
1377 min_x = (INT)ceil(line1_xf);
1378 max_x = (INT)ceil(line2_xf);
1382 min_x = (INT)ceil(line2_xf);
1383 max_x = (INT)ceil(line1_xf);
1386 if (min_x < fill_area->X)
1387 min_x = fill_area->X;
1388 if (max_x > fill_area->X + fill_area->Width)
1389 max_x = fill_area->X + fill_area->Width;
1391 for (x=min_x; x<max_x; x++)
1396 if (start_color != end_color)
1398 REAL blend_amount, pdy, pdx;
1399 pdy = yf - center_point.Y;
1400 pdx = xf - center_point.X;
1401 blend_amount = ( (center_point.Y - start_point.Y) * pdx + (start_point.X - center_point.X) * pdy ) / ( dy * pdx - dx * pdy );
1402 outer_color = blend_colors(start_color, end_color, blend_amount);
1405 distance = (end_point.Y - start_point.Y) * (start_point.X - xf) +
1406 (end_point.X - start_point.X) * (yf - start_point.Y);
1408 distance = distance / center_distance;
1410 argb_pixels[(x-fill_area->X) + (y-fill_area->Y)*cdwStride] =
1411 blend_colors(outer_color, fill->centercolor, distance);
1416 GdipDeletePath(flat_path);
1420 return NotImplemented;
1424 /* GdipDrawPie/GdipFillPie helper function */
1425 static void draw_pie(GpGraphics *graphics, REAL x, REAL y, REAL width,
1426 REAL height, REAL startAngle, REAL sweepAngle)
1433 ptf[1].X = x + width;
1434 ptf[1].Y = y + height;
1436 deg2xy(startAngle+sweepAngle, x + width / 2.0, y + width / 2.0, &ptf[2].X, &ptf[2].Y);
1437 deg2xy(startAngle, x + width / 2.0, y + width / 2.0, &ptf[3].X, &ptf[3].Y);
1439 transform_and_round_points(graphics, pti, ptf, 4);
1441 Pie(graphics->hdc, pti[0].x, pti[0].y, pti[1].x, pti[1].y, pti[2].x,
1442 pti[2].y, pti[3].x, pti[3].y);
1445 /* Draws the linecap the specified color and size on the hdc. The linecap is in
1446 * direction of the line from x1, y1 to x2, y2 and is anchored on x2, y2. Probably
1447 * should not be called on an hdc that has a path you care about. */
1448 static void draw_cap(GpGraphics *graphics, COLORREF color, GpLineCap cap, REAL size,
1449 const GpCustomLineCap *custom, REAL x1, REAL y1, REAL x2, REAL y2)
1451 HGDIOBJ oldbrush = NULL, oldpen = NULL;
1452 GpMatrix *matrix = NULL;
1453 HBRUSH brush = NULL;
1455 PointF ptf[4], *custptf = NULL;
1456 POINT pt[4], *custpt = NULL;
1458 REAL theta, dsmall, dbig, dx, dy = 0.0;
1463 if((x1 == x2) && (y1 == y2))
1466 theta = gdiplus_atan2(y2 - y1, x2 - x1);
1468 customstroke = (cap == LineCapCustom) && custom && (!custom->fill);
1470 brush = CreateSolidBrush(color);
1471 lb.lbStyle = BS_SOLID;
1474 pen = ExtCreatePen(PS_GEOMETRIC | PS_SOLID | PS_ENDCAP_FLAT |
1475 PS_JOIN_MITER, 1, &lb, 0,
1477 oldbrush = SelectObject(graphics->hdc, brush);
1478 oldpen = SelectObject(graphics->hdc, pen);
1485 case LineCapSquareAnchor:
1486 case LineCapDiamondAnchor:
1487 size = size * (cap & LineCapNoAnchor ? ANCHOR_WIDTH : 1.0) / 2.0;
1488 if(cap == LineCapDiamondAnchor){
1489 dsmall = cos(theta + M_PI_2) * size;
1490 dbig = sin(theta + M_PI_2) * size;
1493 dsmall = cos(theta + M_PI_4) * size;
1494 dbig = sin(theta + M_PI_4) * size;
1497 ptf[0].X = x2 - dsmall;
1498 ptf[1].X = x2 + dbig;
1500 ptf[0].Y = y2 - dbig;
1501 ptf[3].Y = y2 + dsmall;
1503 ptf[1].Y = y2 - dsmall;
1504 ptf[2].Y = y2 + dbig;
1506 ptf[3].X = x2 - dbig;
1507 ptf[2].X = x2 + dsmall;
1509 transform_and_round_points(graphics, pt, ptf, 4);
1510 Polygon(graphics->hdc, pt, 4);
1513 case LineCapArrowAnchor:
1514 size = size * 4.0 / sqrt(3.0);
1516 dx = cos(M_PI / 6.0 + theta) * size;
1517 dy = sin(M_PI / 6.0 + theta) * size;
1522 dx = cos(- M_PI / 6.0 + theta) * size;
1523 dy = sin(- M_PI / 6.0 + theta) * size;
1531 transform_and_round_points(graphics, pt, ptf, 3);
1532 Polygon(graphics->hdc, pt, 3);
1535 case LineCapRoundAnchor:
1536 dx = dy = ANCHOR_WIDTH * size / 2.0;
1543 transform_and_round_points(graphics, pt, ptf, 2);
1544 Ellipse(graphics->hdc, pt[0].x, pt[0].y, pt[1].x, pt[1].y);
1547 case LineCapTriangle:
1549 dx = cos(M_PI_2 + theta) * size;
1550 dy = sin(M_PI_2 + theta) * size;
1557 dx = cos(theta) * size;
1558 dy = sin(theta) * size;
1563 transform_and_round_points(graphics, pt, ptf, 3);
1564 Polygon(graphics->hdc, pt, 3);
1568 dx = dy = size / 2.0;
1575 dx = -cos(M_PI_2 + theta) * size;
1576 dy = -sin(M_PI_2 + theta) * size;
1583 transform_and_round_points(graphics, pt, ptf, 4);
1584 Pie(graphics->hdc, pt[0].x, pt[0].y, pt[1].x, pt[1].y, pt[2].x,
1585 pt[2].y, pt[3].x, pt[3].y);
1592 count = custom->pathdata.Count;
1593 custptf = GdipAlloc(count * sizeof(PointF));
1594 custpt = GdipAlloc(count * sizeof(POINT));
1595 tp = GdipAlloc(count);
1597 if(!custptf || !custpt || !tp || (GdipCreateMatrix(&matrix) != Ok))
1600 memcpy(custptf, custom->pathdata.Points, count * sizeof(PointF));
1602 GdipScaleMatrix(matrix, size, size, MatrixOrderAppend);
1603 GdipRotateMatrix(matrix, (180.0 / M_PI) * (theta - M_PI_2),
1605 GdipTranslateMatrix(matrix, x2, y2, MatrixOrderAppend);
1606 GdipTransformMatrixPoints(matrix, custptf, count);
1608 transform_and_round_points(graphics, custpt, custptf, count);
1610 for(i = 0; i < count; i++)
1611 tp[i] = convert_path_point_type(custom->pathdata.Types[i]);
1614 BeginPath(graphics->hdc);
1615 PolyDraw(graphics->hdc, custpt, tp, count);
1616 EndPath(graphics->hdc);
1617 StrokeAndFillPath(graphics->hdc);
1620 PolyDraw(graphics->hdc, custpt, tp, count);
1626 GdipDeleteMatrix(matrix);
1633 SelectObject(graphics->hdc, oldbrush);
1634 SelectObject(graphics->hdc, oldpen);
1635 DeleteObject(brush);
1640 /* Shortens the line by the given percent by changing x2, y2.
1641 * If percent is > 1.0 then the line will change direction.
1642 * If percent is negative it can lengthen the line. */
1643 static void shorten_line_percent(REAL x1, REAL y1, REAL *x2, REAL *y2, REAL percent)
1645 REAL dist, theta, dx, dy;
1647 if((y1 == *y2) && (x1 == *x2))
1650 dist = sqrt((*x2 - x1) * (*x2 - x1) + (*y2 - y1) * (*y2 - y1)) * -percent;
1651 theta = gdiplus_atan2((*y2 - y1), (*x2 - x1));
1652 dx = cos(theta) * dist;
1653 dy = sin(theta) * dist;
1659 /* Shortens the line by the given amount by changing x2, y2.
1660 * If the amount is greater than the distance, the line will become length 0.
1661 * If the amount is negative, it can lengthen the line. */
1662 static void shorten_line_amt(REAL x1, REAL y1, REAL *x2, REAL *y2, REAL amt)
1664 REAL dx, dy, percent;
1668 if(dx == 0 && dy == 0)
1671 percent = amt / sqrt(dx * dx + dy * dy);
1678 shorten_line_percent(x1, y1, x2, y2, percent);
1681 /* Draws lines between the given points, and if caps is true then draws an endcap
1682 * at the end of the last line. */
1683 static GpStatus draw_polyline(GpGraphics *graphics, GpPen *pen,
1684 GDIPCONST GpPointF * pt, INT count, BOOL caps)
1687 GpPointF *ptcopy = NULL;
1688 GpStatus status = GenericError;
1693 pti = GdipAlloc(count * sizeof(POINT));
1694 ptcopy = GdipAlloc(count * sizeof(GpPointF));
1696 if(!pti || !ptcopy){
1697 status = OutOfMemory;
1701 memcpy(ptcopy, pt, count * sizeof(GpPointF));
1704 if(pen->endcap == LineCapArrowAnchor)
1705 shorten_line_amt(ptcopy[count-2].X, ptcopy[count-2].Y,
1706 &ptcopy[count-1].X, &ptcopy[count-1].Y, pen->width);
1707 else if((pen->endcap == LineCapCustom) && pen->customend)
1708 shorten_line_amt(ptcopy[count-2].X, ptcopy[count-2].Y,
1709 &ptcopy[count-1].X, &ptcopy[count-1].Y,
1710 pen->customend->inset * pen->width);
1712 if(pen->startcap == LineCapArrowAnchor)
1713 shorten_line_amt(ptcopy[1].X, ptcopy[1].Y,
1714 &ptcopy[0].X, &ptcopy[0].Y, pen->width);
1715 else if((pen->startcap == LineCapCustom) && pen->customstart)
1716 shorten_line_amt(ptcopy[1].X, ptcopy[1].Y,
1717 &ptcopy[0].X, &ptcopy[0].Y,
1718 pen->customstart->inset * pen->width);
1720 draw_cap(graphics, get_gdi_brush_color(pen->brush), pen->endcap, pen->width, pen->customend,
1721 pt[count - 2].X, pt[count - 2].Y, pt[count - 1].X, pt[count - 1].Y);
1722 draw_cap(graphics, get_gdi_brush_color(pen->brush), pen->startcap, pen->width, pen->customstart,
1723 pt[1].X, pt[1].Y, pt[0].X, pt[0].Y);
1726 transform_and_round_points(graphics, pti, ptcopy, count);
1728 if(Polyline(graphics->hdc, pti, count))
1738 /* Conducts a linear search to find the bezier points that will back off
1739 * the endpoint of the curve by a distance of amt. Linear search works
1740 * better than binary in this case because there are multiple solutions,
1741 * and binary searches often find a bad one. I don't think this is what
1742 * Windows does but short of rendering the bezier without GDI's help it's
1743 * the best we can do. If rev then work from the start of the passed points
1744 * instead of the end. */
1745 static void shorten_bezier_amt(GpPointF * pt, REAL amt, BOOL rev)
1748 REAL percent = 0.00, dx, dy, origx, origy, diff = -1.0;
1749 INT i, first = 0, second = 1, third = 2, fourth = 3;
1758 origx = pt[fourth].X;
1759 origy = pt[fourth].Y;
1760 memcpy(origpt, pt, sizeof(GpPointF) * 4);
1762 for(i = 0; (i < MAX_ITERS) && (diff < amt); i++){
1763 /* reset bezier points to original values */
1764 memcpy(pt, origpt, sizeof(GpPointF) * 4);
1765 /* Perform magic on bezier points. Order is important here.*/
1766 shorten_line_percent(pt[third].X, pt[third].Y, &pt[fourth].X, &pt[fourth].Y, percent);
1767 shorten_line_percent(pt[second].X, pt[second].Y, &pt[third].X, &pt[third].Y, percent);
1768 shorten_line_percent(pt[third].X, pt[third].Y, &pt[fourth].X, &pt[fourth].Y, percent);
1769 shorten_line_percent(pt[first].X, pt[first].Y, &pt[second].X, &pt[second].Y, percent);
1770 shorten_line_percent(pt[second].X, pt[second].Y, &pt[third].X, &pt[third].Y, percent);
1771 shorten_line_percent(pt[third].X, pt[third].Y, &pt[fourth].X, &pt[fourth].Y, percent);
1773 dx = pt[fourth].X - origx;
1774 dy = pt[fourth].Y - origy;
1776 diff = sqrt(dx * dx + dy * dy);
1777 percent += 0.0005 * amt;
1781 /* Draws bezier curves between given points, and if caps is true then draws an
1782 * endcap at the end of the last line. */
1783 static GpStatus draw_polybezier(GpGraphics *graphics, GpPen *pen,
1784 GDIPCONST GpPointF * pt, INT count, BOOL caps)
1788 GpStatus status = GenericError;
1793 pti = GdipAlloc(count * sizeof(POINT));
1794 ptcopy = GdipAlloc(count * sizeof(GpPointF));
1796 if(!pti || !ptcopy){
1797 status = OutOfMemory;
1801 memcpy(ptcopy, pt, count * sizeof(GpPointF));
1804 if(pen->endcap == LineCapArrowAnchor)
1805 shorten_bezier_amt(&ptcopy[count-4], pen->width, FALSE);
1806 else if((pen->endcap == LineCapCustom) && pen->customend)
1807 shorten_bezier_amt(&ptcopy[count-4], pen->width * pen->customend->inset,
1810 if(pen->startcap == LineCapArrowAnchor)
1811 shorten_bezier_amt(ptcopy, pen->width, TRUE);
1812 else if((pen->startcap == LineCapCustom) && pen->customstart)
1813 shorten_bezier_amt(ptcopy, pen->width * pen->customstart->inset, TRUE);
1815 /* the direction of the line cap is parallel to the direction at the
1816 * end of the bezier (which, if it has been shortened, is not the same
1817 * as the direction from pt[count-2] to pt[count-1]) */
1818 draw_cap(graphics, get_gdi_brush_color(pen->brush), pen->endcap, pen->width, pen->customend,
1819 pt[count - 1].X - (ptcopy[count - 1].X - ptcopy[count - 2].X),
1820 pt[count - 1].Y - (ptcopy[count - 1].Y - ptcopy[count - 2].Y),
1821 pt[count - 1].X, pt[count - 1].Y);
1823 draw_cap(graphics, get_gdi_brush_color(pen->brush), pen->startcap, pen->width, pen->customstart,
1824 pt[0].X - (ptcopy[0].X - ptcopy[1].X),
1825 pt[0].Y - (ptcopy[0].Y - ptcopy[1].Y), pt[0].X, pt[0].Y);
1828 transform_and_round_points(graphics, pti, ptcopy, count);
1830 PolyBezier(graphics->hdc, pti, count);
1841 /* Draws a combination of bezier curves and lines between points. */
1842 static GpStatus draw_poly(GpGraphics *graphics, GpPen *pen, GDIPCONST GpPointF * pt,
1843 GDIPCONST BYTE * types, INT count, BOOL caps)
1845 POINT *pti = GdipAlloc(count * sizeof(POINT));
1846 BYTE *tp = GdipAlloc(count);
1847 GpPointF *ptcopy = GdipAlloc(count * sizeof(GpPointF));
1849 GpStatus status = GenericError;
1855 if(!pti || !tp || !ptcopy){
1856 status = OutOfMemory;
1860 for(i = 1; i < count; i++){
1861 if((types[i] & PathPointTypePathTypeMask) == PathPointTypeBezier){
1862 if((i + 2 >= count) || !(types[i + 1] & PathPointTypeBezier)
1863 || !(types[i + 1] & PathPointTypeBezier)){
1864 ERR("Bad bezier points\n");
1871 memcpy(ptcopy, pt, count * sizeof(GpPointF));
1873 /* If we are drawing caps, go through the points and adjust them accordingly,
1874 * and draw the caps. */
1876 switch(types[count - 1] & PathPointTypePathTypeMask){
1877 case PathPointTypeBezier:
1878 if(pen->endcap == LineCapArrowAnchor)
1879 shorten_bezier_amt(&ptcopy[count - 4], pen->width, FALSE);
1880 else if((pen->endcap == LineCapCustom) && pen->customend)
1881 shorten_bezier_amt(&ptcopy[count - 4],
1882 pen->width * pen->customend->inset, FALSE);
1884 draw_cap(graphics, get_gdi_brush_color(pen->brush), pen->endcap, pen->width, pen->customend,
1885 pt[count - 1].X - (ptcopy[count - 1].X - ptcopy[count - 2].X),
1886 pt[count - 1].Y - (ptcopy[count - 1].Y - ptcopy[count - 2].Y),
1887 pt[count - 1].X, pt[count - 1].Y);
1890 case PathPointTypeLine:
1891 if(pen->endcap == LineCapArrowAnchor)
1892 shorten_line_amt(ptcopy[count - 2].X, ptcopy[count - 2].Y,
1893 &ptcopy[count - 1].X, &ptcopy[count - 1].Y,
1895 else if((pen->endcap == LineCapCustom) && pen->customend)
1896 shorten_line_amt(ptcopy[count - 2].X, ptcopy[count - 2].Y,
1897 &ptcopy[count - 1].X, &ptcopy[count - 1].Y,
1898 pen->customend->inset * pen->width);
1900 draw_cap(graphics, get_gdi_brush_color(pen->brush), pen->endcap, pen->width, pen->customend,
1901 pt[count - 2].X, pt[count - 2].Y, pt[count - 1].X,
1906 ERR("Bad path last point\n");
1910 /* Find start of points */
1911 for(j = 1; j < count && ((types[j] & PathPointTypePathTypeMask)
1912 == PathPointTypeStart); j++);
1914 switch(types[j] & PathPointTypePathTypeMask){
1915 case PathPointTypeBezier:
1916 if(pen->startcap == LineCapArrowAnchor)
1917 shorten_bezier_amt(&ptcopy[j - 1], pen->width, TRUE);
1918 else if((pen->startcap == LineCapCustom) && pen->customstart)
1919 shorten_bezier_amt(&ptcopy[j - 1],
1920 pen->width * pen->customstart->inset, TRUE);
1922 draw_cap(graphics, get_gdi_brush_color(pen->brush), pen->startcap, pen->width, pen->customstart,
1923 pt[j - 1].X - (ptcopy[j - 1].X - ptcopy[j].X),
1924 pt[j - 1].Y - (ptcopy[j - 1].Y - ptcopy[j].Y),
1925 pt[j - 1].X, pt[j - 1].Y);
1928 case PathPointTypeLine:
1929 if(pen->startcap == LineCapArrowAnchor)
1930 shorten_line_amt(ptcopy[j].X, ptcopy[j].Y,
1931 &ptcopy[j - 1].X, &ptcopy[j - 1].Y,
1933 else if((pen->startcap == LineCapCustom) && pen->customstart)
1934 shorten_line_amt(ptcopy[j].X, ptcopy[j].Y,
1935 &ptcopy[j - 1].X, &ptcopy[j - 1].Y,
1936 pen->customstart->inset * pen->width);
1938 draw_cap(graphics, get_gdi_brush_color(pen->brush), pen->startcap, pen->width, pen->customstart,
1939 pt[j].X, pt[j].Y, pt[j - 1].X,
1944 ERR("Bad path points\n");
1949 transform_and_round_points(graphics, pti, ptcopy, count);
1951 for(i = 0; i < count; i++){
1952 tp[i] = convert_path_point_type(types[i]);
1955 PolyDraw(graphics->hdc, pti, tp, count);
1967 GpStatus trace_path(GpGraphics *graphics, GpPath *path)
1971 BeginPath(graphics->hdc);
1972 result = draw_poly(graphics, NULL, path->pathdata.Points,
1973 path->pathdata.Types, path->pathdata.Count, FALSE);
1974 EndPath(graphics->hdc);
1978 typedef struct _GraphicsContainerItem {
1980 GraphicsContainer contid;
1982 SmoothingMode smoothing;
1983 CompositingQuality compqual;
1984 InterpolationMode interpolation;
1985 CompositingMode compmode;
1986 TextRenderingHint texthint;
1989 PixelOffsetMode pixeloffset;
1991 GpMatrix* worldtrans;
1993 INT origin_x, origin_y;
1994 } GraphicsContainerItem;
1996 static GpStatus init_container(GraphicsContainerItem** container,
1997 GDIPCONST GpGraphics* graphics){
2000 *container = GdipAlloc(sizeof(GraphicsContainerItem));
2004 (*container)->contid = graphics->contid + 1;
2006 (*container)->smoothing = graphics->smoothing;
2007 (*container)->compqual = graphics->compqual;
2008 (*container)->interpolation = graphics->interpolation;
2009 (*container)->compmode = graphics->compmode;
2010 (*container)->texthint = graphics->texthint;
2011 (*container)->scale = graphics->scale;
2012 (*container)->unit = graphics->unit;
2013 (*container)->textcontrast = graphics->textcontrast;
2014 (*container)->pixeloffset = graphics->pixeloffset;
2015 (*container)->origin_x = graphics->origin_x;
2016 (*container)->origin_y = graphics->origin_y;
2018 sts = GdipCloneMatrix(graphics->worldtrans, &(*container)->worldtrans);
2020 GdipFree(*container);
2025 sts = GdipCloneRegion(graphics->clip, &(*container)->clip);
2027 GdipDeleteMatrix((*container)->worldtrans);
2028 GdipFree(*container);
2036 static void delete_container(GraphicsContainerItem* container){
2037 GdipDeleteMatrix(container->worldtrans);
2038 GdipDeleteRegion(container->clip);
2039 GdipFree(container);
2042 static GpStatus restore_container(GpGraphics* graphics,
2043 GDIPCONST GraphicsContainerItem* container){
2048 sts = GdipCloneMatrix(container->worldtrans, &newTrans);
2052 sts = GdipCloneRegion(container->clip, &newClip);
2054 GdipDeleteMatrix(newTrans);
2058 GdipDeleteMatrix(graphics->worldtrans);
2059 graphics->worldtrans = newTrans;
2061 GdipDeleteRegion(graphics->clip);
2062 graphics->clip = newClip;
2064 graphics->contid = container->contid - 1;
2066 graphics->smoothing = container->smoothing;
2067 graphics->compqual = container->compqual;
2068 graphics->interpolation = container->interpolation;
2069 graphics->compmode = container->compmode;
2070 graphics->texthint = container->texthint;
2071 graphics->scale = container->scale;
2072 graphics->unit = container->unit;
2073 graphics->textcontrast = container->textcontrast;
2074 graphics->pixeloffset = container->pixeloffset;
2075 graphics->origin_x = container->origin_x;
2076 graphics->origin_y = container->origin_y;
2081 static GpStatus get_graphics_bounds(GpGraphics* graphics, GpRectF* rect)
2087 if(graphics->hwnd) {
2088 if(!GetClientRect(graphics->hwnd, &wnd_rect))
2089 return GenericError;
2091 rect->X = wnd_rect.left;
2092 rect->Y = wnd_rect.top;
2093 rect->Width = wnd_rect.right - wnd_rect.left;
2094 rect->Height = wnd_rect.bottom - wnd_rect.top;
2095 }else if (graphics->image){
2096 stat = GdipGetImageBounds(graphics->image, rect, &unit);
2097 if (stat == Ok && unit != UnitPixel)
2098 FIXME("need to convert from unit %i\n", unit);
2102 rect->Width = GetDeviceCaps(graphics->hdc, HORZRES);
2103 rect->Height = GetDeviceCaps(graphics->hdc, VERTRES);
2109 /* on success, rgn will contain the region of the graphics object which
2110 * is visible after clipping has been applied */
2111 static GpStatus get_visible_clip_region(GpGraphics *graphics, GpRegion *rgn)
2117 if((stat = get_graphics_bounds(graphics, &rectf)) != Ok)
2120 if((stat = GdipCreateRegion(&tmp)) != Ok)
2123 if((stat = GdipCombineRegionRect(tmp, &rectf, CombineModeReplace)) != Ok)
2126 if((stat = GdipCombineRegionRegion(tmp, graphics->clip, CombineModeIntersect)) != Ok)
2129 stat = GdipCombineRegionRegion(rgn, tmp, CombineModeReplace);
2132 GdipDeleteRegion(tmp);
2136 void get_log_fontW(const GpFont *font, GpGraphics *graphics, LOGFONTW *lf)
2140 if (font->unit == UnitPixel)
2142 height = units_to_pixels(font->emSize, graphics->unit, graphics->yres);
2146 if (graphics->unit == UnitDisplay || graphics->unit == UnitPixel)
2147 height = units_to_pixels(font->emSize, font->unit, graphics->xres);
2149 height = units_to_pixels(font->emSize, font->unit, graphics->yres);
2152 lf->lfHeight = -(height + 0.5);
2154 lf->lfEscapement = 0;
2155 lf->lfOrientation = 0;
2156 lf->lfWeight = font->otm.otmTextMetrics.tmWeight;
2157 lf->lfItalic = font->otm.otmTextMetrics.tmItalic ? 1 : 0;
2158 lf->lfUnderline = font->otm.otmTextMetrics.tmUnderlined ? 1 : 0;
2159 lf->lfStrikeOut = font->otm.otmTextMetrics.tmStruckOut ? 1 : 0;
2160 lf->lfCharSet = font->otm.otmTextMetrics.tmCharSet;
2161 lf->lfOutPrecision = OUT_DEFAULT_PRECIS;
2162 lf->lfClipPrecision = CLIP_DEFAULT_PRECIS;
2163 lf->lfQuality = DEFAULT_QUALITY;
2164 lf->lfPitchAndFamily = 0;
2165 strcpyW(lf->lfFaceName, font->family->FamilyName);
2168 static void get_font_hfont(GpGraphics *graphics, GDIPCONST GpFont *font,
2169 GDIPCONST GpStringFormat *format, HFONT *hfont)
2171 HDC hdc = CreateCompatibleDC(0);
2173 REAL angle, rel_width, rel_height, font_height;
2175 HFONT unscaled_font;
2176 TEXTMETRICW textmet;
2178 if (font->unit == UnitPixel)
2179 font_height = font->emSize;
2182 REAL unit_scale, res;
2184 res = (graphics->unit == UnitDisplay || graphics->unit == UnitPixel) ? graphics->xres : graphics->yres;
2185 unit_scale = units_scale(font->unit, graphics->unit, res);
2187 font_height = font->emSize * unit_scale;
2197 GdipTransformPoints(graphics, CoordinateSpaceDevice, CoordinateSpaceWorld, pt, 3);
2198 angle = -gdiplus_atan2((pt[1].Y - pt[0].Y), (pt[1].X - pt[0].X));
2199 rel_width = sqrt((pt[1].Y-pt[0].Y)*(pt[1].Y-pt[0].Y)+
2200 (pt[1].X-pt[0].X)*(pt[1].X-pt[0].X));
2201 rel_height = sqrt((pt[2].Y-pt[0].Y)*(pt[2].Y-pt[0].Y)+
2202 (pt[2].X-pt[0].X)*(pt[2].X-pt[0].X));
2204 get_log_fontW(font, graphics, &lfw);
2205 lfw.lfHeight = gdip_round(font_height * rel_height);
2206 unscaled_font = CreateFontIndirectW(&lfw);
2208 SelectObject(hdc, unscaled_font);
2209 GetTextMetricsW(hdc, &textmet);
2211 lfw.lfWidth = gdip_round(textmet.tmAveCharWidth * rel_width / rel_height);
2212 lfw.lfEscapement = lfw.lfOrientation = gdip_round((angle / M_PI) * 1800.0);
2214 *hfont = CreateFontIndirectW(&lfw);
2217 DeleteObject(unscaled_font);
2220 GpStatus WINGDIPAPI GdipCreateFromHDC(HDC hdc, GpGraphics **graphics)
2222 TRACE("(%p, %p)\n", hdc, graphics);
2224 return GdipCreateFromHDC2(hdc, NULL, graphics);
2227 GpStatus WINGDIPAPI GdipCreateFromHDC2(HDC hdc, HANDLE hDevice, GpGraphics **graphics)
2231 TRACE("(%p, %p, %p)\n", hdc, hDevice, graphics);
2233 if(hDevice != NULL) {
2234 FIXME("Don't know how to handle parameter hDevice\n");
2235 return NotImplemented;
2241 if(graphics == NULL)
2242 return InvalidParameter;
2244 *graphics = GdipAlloc(sizeof(GpGraphics));
2245 if(!*graphics) return OutOfMemory;
2247 if((retval = GdipCreateMatrix(&(*graphics)->worldtrans)) != Ok){
2248 GdipFree(*graphics);
2252 if((retval = GdipCreateRegion(&(*graphics)->clip)) != Ok){
2253 GdipFree((*graphics)->worldtrans);
2254 GdipFree(*graphics);
2258 (*graphics)->hdc = hdc;
2259 (*graphics)->hwnd = WindowFromDC(hdc);
2260 (*graphics)->owndc = FALSE;
2261 (*graphics)->smoothing = SmoothingModeDefault;
2262 (*graphics)->compqual = CompositingQualityDefault;
2263 (*graphics)->interpolation = InterpolationModeBilinear;
2264 (*graphics)->pixeloffset = PixelOffsetModeDefault;
2265 (*graphics)->compmode = CompositingModeSourceOver;
2266 (*graphics)->unit = UnitDisplay;
2267 (*graphics)->scale = 1.0;
2268 (*graphics)->xres = GetDeviceCaps(hdc, LOGPIXELSX);
2269 (*graphics)->yres = GetDeviceCaps(hdc, LOGPIXELSY);
2270 (*graphics)->busy = FALSE;
2271 (*graphics)->textcontrast = 4;
2272 list_init(&(*graphics)->containers);
2273 (*graphics)->contid = 0;
2275 TRACE("<-- %p\n", *graphics);
2280 GpStatus graphics_from_image(GpImage *image, GpGraphics **graphics)
2284 *graphics = GdipAlloc(sizeof(GpGraphics));
2285 if(!*graphics) return OutOfMemory;
2287 if((retval = GdipCreateMatrix(&(*graphics)->worldtrans)) != Ok){
2288 GdipFree(*graphics);
2292 if((retval = GdipCreateRegion(&(*graphics)->clip)) != Ok){
2293 GdipFree((*graphics)->worldtrans);
2294 GdipFree(*graphics);
2298 (*graphics)->hdc = NULL;
2299 (*graphics)->hwnd = NULL;
2300 (*graphics)->owndc = FALSE;
2301 (*graphics)->image = image;
2302 (*graphics)->smoothing = SmoothingModeDefault;
2303 (*graphics)->compqual = CompositingQualityDefault;
2304 (*graphics)->interpolation = InterpolationModeBilinear;
2305 (*graphics)->pixeloffset = PixelOffsetModeDefault;
2306 (*graphics)->compmode = CompositingModeSourceOver;
2307 (*graphics)->unit = UnitDisplay;
2308 (*graphics)->scale = 1.0;
2309 (*graphics)->xres = image->xres;
2310 (*graphics)->yres = image->yres;
2311 (*graphics)->busy = FALSE;
2312 (*graphics)->textcontrast = 4;
2313 list_init(&(*graphics)->containers);
2314 (*graphics)->contid = 0;
2316 TRACE("<-- %p\n", *graphics);
2321 GpStatus WINGDIPAPI GdipCreateFromHWND(HWND hwnd, GpGraphics **graphics)
2326 TRACE("(%p, %p)\n", hwnd, graphics);
2330 if((ret = GdipCreateFromHDC(hdc, graphics)) != Ok)
2332 ReleaseDC(hwnd, hdc);
2336 (*graphics)->hwnd = hwnd;
2337 (*graphics)->owndc = TRUE;
2342 /* FIXME: no icm handling */
2343 GpStatus WINGDIPAPI GdipCreateFromHWNDICM(HWND hwnd, GpGraphics **graphics)
2345 TRACE("(%p, %p)\n", hwnd, graphics);
2347 return GdipCreateFromHWND(hwnd, graphics);
2350 GpStatus WINGDIPAPI GdipCreateMetafileFromEmf(HENHMETAFILE hemf, BOOL delete,
2351 GpMetafile **metafile)
2353 ENHMETAHEADER header;
2354 MetafileType metafile_type;
2356 TRACE("(%p,%i,%p)\n", hemf, delete, metafile);
2358 if(!hemf || !metafile)
2359 return InvalidParameter;
2361 if (GetEnhMetaFileHeader(hemf, sizeof(header), &header) == 0)
2362 return GenericError;
2364 metafile_type = METAFILE_GetEmfType(hemf);
2366 if (metafile_type == MetafileTypeInvalid)
2367 return GenericError;
2369 *metafile = GdipAlloc(sizeof(GpMetafile));
2373 (*metafile)->image.type = ImageTypeMetafile;
2374 (*metafile)->image.format = ImageFormatEMF;
2375 (*metafile)->image.frame_count = 1;
2376 (*metafile)->image.xres = (REAL)header.szlDevice.cx;
2377 (*metafile)->image.yres = (REAL)header.szlDevice.cy;
2378 (*metafile)->bounds.X = (REAL)header.rclBounds.left;
2379 (*metafile)->bounds.Y = (REAL)header.rclBounds.top;
2380 (*metafile)->bounds.Width = (REAL)(header.rclBounds.right - header.rclBounds.left);
2381 (*metafile)->bounds.Height = (REAL)(header.rclBounds.bottom - header.rclBounds.top);
2382 (*metafile)->unit = UnitPixel;
2383 (*metafile)->metafile_type = metafile_type;
2384 (*metafile)->hemf = hemf;
2385 (*metafile)->preserve_hemf = !delete;
2387 TRACE("<-- %p\n", *metafile);
2392 GpStatus WINGDIPAPI GdipCreateMetafileFromWmf(HMETAFILE hwmf, BOOL delete,
2393 GDIPCONST WmfPlaceableFileHeader * placeable, GpMetafile **metafile)
2398 GpStatus retval = Ok;
2400 TRACE("(%p, %d, %p, %p)\n", hwmf, delete, placeable, metafile);
2402 if(!hwmf || !metafile || !placeable)
2403 return InvalidParameter;
2406 read = GetMetaFileBitsEx(hwmf, 0, NULL);
2408 return GenericError;
2409 copy = GdipAlloc(read);
2410 GetMetaFileBitsEx(hwmf, read, copy);
2412 hemf = SetWinMetaFileBits(read, copy, NULL, NULL);
2415 /* FIXME: We should store and use hwmf instead of converting to hemf */
2416 retval = GdipCreateMetafileFromEmf(hemf, TRUE, metafile);
2420 (*metafile)->image.xres = (REAL)placeable->Inch;
2421 (*metafile)->image.yres = (REAL)placeable->Inch;
2422 (*metafile)->bounds.X = ((REAL)placeable->BoundingBox.Left) / ((REAL)placeable->Inch);
2423 (*metafile)->bounds.Y = ((REAL)placeable->BoundingBox.Top) / ((REAL)placeable->Inch);
2424 (*metafile)->bounds.Width = (REAL)(placeable->BoundingBox.Right -
2425 placeable->BoundingBox.Left);
2426 (*metafile)->bounds.Height = (REAL)(placeable->BoundingBox.Bottom -
2427 placeable->BoundingBox.Top);
2428 (*metafile)->metafile_type = MetafileTypeWmfPlaceable;
2429 (*metafile)->image.format = ImageFormatWMF;
2431 if (delete) DeleteMetaFile(hwmf);
2434 DeleteEnhMetaFile(hemf);
2438 GpStatus WINGDIPAPI GdipCreateMetafileFromWmfFile(GDIPCONST WCHAR *file,
2439 GDIPCONST WmfPlaceableFileHeader * placeable, GpMetafile **metafile)
2441 HMETAFILE hmf = GetMetaFileW(file);
2443 TRACE("(%s, %p, %p)\n", debugstr_w(file), placeable, metafile);
2445 if(!hmf) return InvalidParameter;
2447 return GdipCreateMetafileFromWmf(hmf, TRUE, placeable, metafile);
2450 GpStatus WINGDIPAPI GdipCreateMetafileFromFile(GDIPCONST WCHAR *file,
2451 GpMetafile **metafile)
2453 FIXME("(%p, %p): stub\n", file, metafile);
2454 return NotImplemented;
2457 GpStatus WINGDIPAPI GdipCreateMetafileFromStream(IStream *stream,
2458 GpMetafile **metafile)
2460 FIXME("(%p, %p): stub\n", stream, metafile);
2461 return NotImplemented;
2464 GpStatus WINGDIPAPI GdipCreateStreamOnFile(GDIPCONST WCHAR * filename,
2465 UINT access, IStream **stream)
2470 TRACE("(%s, %u, %p)\n", debugstr_w(filename), access, stream);
2472 if(!stream || !filename)
2473 return InvalidParameter;
2475 if(access & GENERIC_WRITE)
2476 dwMode = STGM_SHARE_DENY_WRITE | STGM_WRITE | STGM_CREATE;
2477 else if(access & GENERIC_READ)
2478 dwMode = STGM_SHARE_DENY_WRITE | STGM_READ | STGM_FAILIFTHERE;
2480 return InvalidParameter;
2482 ret = SHCreateStreamOnFileW(filename, dwMode, stream);
2484 return hresult_to_status(ret);
2487 GpStatus WINGDIPAPI GdipDeleteGraphics(GpGraphics *graphics)
2489 GraphicsContainerItem *cont, *next;
2491 TRACE("(%p)\n", graphics);
2493 if(!graphics) return InvalidParameter;
2494 if(graphics->busy) return ObjectBusy;
2496 if (graphics->image && graphics->image->type == ImageTypeMetafile)
2498 stat = METAFILE_GraphicsDeleted((GpMetafile*)graphics->image);
2504 ReleaseDC(graphics->hwnd, graphics->hdc);
2506 LIST_FOR_EACH_ENTRY_SAFE(cont, next, &graphics->containers, GraphicsContainerItem, entry){
2507 list_remove(&cont->entry);
2508 delete_container(cont);
2511 GdipDeleteRegion(graphics->clip);
2512 GdipDeleteMatrix(graphics->worldtrans);
2518 GpStatus WINGDIPAPI GdipDrawArc(GpGraphics *graphics, GpPen *pen, REAL x,
2519 REAL y, REAL width, REAL height, REAL startAngle, REAL sweepAngle)
2521 INT save_state, num_pts;
2522 GpPointF points[MAX_ARC_PTS];
2525 TRACE("(%p, %p, %.2f, %.2f, %.2f, %.2f, %.2f, %.2f)\n", graphics, pen, x, y,
2526 width, height, startAngle, sweepAngle);
2528 if(!graphics || !pen || width <= 0 || height <= 0)
2529 return InvalidParameter;
2536 FIXME("graphics object has no HDC\n");
2540 num_pts = arc2polybezier(points, x, y, width, height, startAngle, sweepAngle);
2542 save_state = prepare_dc(graphics, pen);
2544 retval = draw_polybezier(graphics, pen, points, num_pts, TRUE);
2546 restore_dc(graphics, save_state);
2551 GpStatus WINGDIPAPI GdipDrawArcI(GpGraphics *graphics, GpPen *pen, INT x,
2552 INT y, INT width, INT height, REAL startAngle, REAL sweepAngle)
2554 TRACE("(%p, %p, %d, %d, %d, %d, %.2f, %.2f)\n", graphics, pen, x, y,
2555 width, height, startAngle, sweepAngle);
2557 return GdipDrawArc(graphics,pen,(REAL)x,(REAL)y,(REAL)width,(REAL)height,startAngle,sweepAngle);
2560 GpStatus WINGDIPAPI GdipDrawBezier(GpGraphics *graphics, GpPen *pen, REAL x1,
2561 REAL y1, REAL x2, REAL y2, REAL x3, REAL y3, REAL x4, REAL y4)
2567 TRACE("(%p, %p, %.2f, %.2f, %.2f, %.2f, %.2f, %.2f, %.2f, %.2f)\n", graphics, pen, x1, y1,
2568 x2, y2, x3, y3, x4, y4);
2570 if(!graphics || !pen)
2571 return InvalidParameter;
2578 FIXME("graphics object has no HDC\n");
2591 save_state = prepare_dc(graphics, pen);
2593 retval = draw_polybezier(graphics, pen, pt, 4, TRUE);
2595 restore_dc(graphics, save_state);
2600 GpStatus WINGDIPAPI GdipDrawBezierI(GpGraphics *graphics, GpPen *pen, INT x1,
2601 INT y1, INT x2, INT y2, INT x3, INT y3, INT x4, INT y4)
2607 TRACE("(%p, %p, %d, %d, %d, %d, %d, %d, %d, %d)\n", graphics, pen, x1, y1,
2608 x2, y2, x3, y3, x4, y4);
2610 if(!graphics || !pen)
2611 return InvalidParameter;
2618 FIXME("graphics object has no HDC\n");
2631 save_state = prepare_dc(graphics, pen);
2633 retval = draw_polybezier(graphics, pen, pt, 4, TRUE);
2635 restore_dc(graphics, save_state);
2640 GpStatus WINGDIPAPI GdipDrawBeziers(GpGraphics *graphics, GpPen *pen,
2641 GDIPCONST GpPointF *points, INT count)
2646 TRACE("(%p, %p, %p, %d)\n", graphics, pen, points, count);
2648 if(!graphics || !pen || !points || (count <= 0))
2649 return InvalidParameter;
2654 for(i = 0; i < floor(count / 4); i++){
2655 ret = GdipDrawBezier(graphics, pen,
2656 points[4*i].X, points[4*i].Y,
2657 points[4*i + 1].X, points[4*i + 1].Y,
2658 points[4*i + 2].X, points[4*i + 2].Y,
2659 points[4*i + 3].X, points[4*i + 3].Y);
2667 GpStatus WINGDIPAPI GdipDrawBeziersI(GpGraphics *graphics, GpPen *pen,
2668 GDIPCONST GpPoint *points, INT count)
2674 TRACE("(%p, %p, %p, %d)\n", graphics, pen, points, count);
2676 if(!graphics || !pen || !points || (count <= 0))
2677 return InvalidParameter;
2682 pts = GdipAlloc(sizeof(GpPointF) * count);
2686 for(i = 0; i < count; i++){
2687 pts[i].X = (REAL)points[i].X;
2688 pts[i].Y = (REAL)points[i].Y;
2691 ret = GdipDrawBeziers(graphics,pen,pts,count);
2698 GpStatus WINGDIPAPI GdipDrawClosedCurve(GpGraphics *graphics, GpPen *pen,
2699 GDIPCONST GpPointF *points, INT count)
2701 TRACE("(%p, %p, %p, %d)\n", graphics, pen, points, count);
2703 return GdipDrawClosedCurve2(graphics, pen, points, count, 1.0);
2706 GpStatus WINGDIPAPI GdipDrawClosedCurveI(GpGraphics *graphics, GpPen *pen,
2707 GDIPCONST GpPoint *points, INT count)
2709 TRACE("(%p, %p, %p, %d)\n", graphics, pen, points, count);
2711 return GdipDrawClosedCurve2I(graphics, pen, points, count, 1.0);
2714 GpStatus WINGDIPAPI GdipDrawClosedCurve2(GpGraphics *graphics, GpPen *pen,
2715 GDIPCONST GpPointF *points, INT count, REAL tension)
2720 TRACE("(%p, %p, %p, %d, %.2f)\n", graphics, pen, points, count, tension);
2722 if(!graphics || !pen || !points || count <= 0)
2723 return InvalidParameter;
2728 if((stat = GdipCreatePath(FillModeAlternate, &path)) != Ok)
2731 stat = GdipAddPathClosedCurve2(path, points, count, tension);
2733 GdipDeletePath(path);
2737 stat = GdipDrawPath(graphics, pen, path);
2739 GdipDeletePath(path);
2744 GpStatus WINGDIPAPI GdipDrawClosedCurve2I(GpGraphics *graphics, GpPen *pen,
2745 GDIPCONST GpPoint *points, INT count, REAL tension)
2751 TRACE("(%p, %p, %p, %d, %.2f)\n", graphics, pen, points, count, tension);
2753 if(!points || count <= 0)
2754 return InvalidParameter;
2756 ptf = GdipAlloc(sizeof(GpPointF)*count);
2760 for(i = 0; i < count; i++){
2761 ptf[i].X = (REAL)points[i].X;
2762 ptf[i].Y = (REAL)points[i].Y;
2765 stat = GdipDrawClosedCurve2(graphics, pen, ptf, count, tension);
2772 GpStatus WINGDIPAPI GdipDrawCurve(GpGraphics *graphics, GpPen *pen,
2773 GDIPCONST GpPointF *points, INT count)
2775 TRACE("(%p, %p, %p, %d)\n", graphics, pen, points, count);
2777 return GdipDrawCurve2(graphics,pen,points,count,1.0);
2780 GpStatus WINGDIPAPI GdipDrawCurveI(GpGraphics *graphics, GpPen *pen,
2781 GDIPCONST GpPoint *points, INT count)
2787 TRACE("(%p, %p, %p, %d)\n", graphics, pen, points, count);
2790 return InvalidParameter;
2792 pointsF = GdipAlloc(sizeof(GpPointF)*count);
2796 for(i = 0; i < count; i++){
2797 pointsF[i].X = (REAL)points[i].X;
2798 pointsF[i].Y = (REAL)points[i].Y;
2801 ret = GdipDrawCurve(graphics,pen,pointsF,count);
2807 /* Approximates cardinal spline with Bezier curves. */
2808 GpStatus WINGDIPAPI GdipDrawCurve2(GpGraphics *graphics, GpPen *pen,
2809 GDIPCONST GpPointF *points, INT count, REAL tension)
2811 /* PolyBezier expects count*3-2 points. */
2812 INT i, len_pt = count*3-2, save_state;
2814 REAL x1, x2, y1, y2;
2817 TRACE("(%p, %p, %p, %d, %.2f)\n", graphics, pen, points, count, tension);
2819 if(!graphics || !pen)
2820 return InvalidParameter;
2826 return InvalidParameter;
2830 FIXME("graphics object has no HDC\n");
2834 pt = GdipAlloc(len_pt * sizeof(GpPointF));
2838 tension = tension * TENSION_CONST;
2840 calc_curve_bezier_endp(points[0].X, points[0].Y, points[1].X, points[1].Y,
2843 pt[0].X = points[0].X;
2844 pt[0].Y = points[0].Y;
2848 for(i = 0; i < count-2; i++){
2849 calc_curve_bezier(&(points[i]), tension, &x1, &y1, &x2, &y2);
2853 pt[3*i+3].X = points[i+1].X;
2854 pt[3*i+3].Y = points[i+1].Y;
2859 calc_curve_bezier_endp(points[count-1].X, points[count-1].Y,
2860 points[count-2].X, points[count-2].Y, tension, &x1, &y1);
2862 pt[len_pt-2].X = x1;
2863 pt[len_pt-2].Y = y1;
2864 pt[len_pt-1].X = points[count-1].X;
2865 pt[len_pt-1].Y = points[count-1].Y;
2867 save_state = prepare_dc(graphics, pen);
2869 retval = draw_polybezier(graphics, pen, pt, len_pt, TRUE);
2872 restore_dc(graphics, save_state);
2877 GpStatus WINGDIPAPI GdipDrawCurve2I(GpGraphics *graphics, GpPen *pen,
2878 GDIPCONST GpPoint *points, INT count, REAL tension)
2884 TRACE("(%p, %p, %p, %d, %.2f)\n", graphics, pen, points, count, tension);
2887 return InvalidParameter;
2889 pointsF = GdipAlloc(sizeof(GpPointF)*count);
2893 for(i = 0; i < count; i++){
2894 pointsF[i].X = (REAL)points[i].X;
2895 pointsF[i].Y = (REAL)points[i].Y;
2898 ret = GdipDrawCurve2(graphics,pen,pointsF,count,tension);
2904 GpStatus WINGDIPAPI GdipDrawCurve3(GpGraphics *graphics, GpPen *pen,
2905 GDIPCONST GpPointF *points, INT count, INT offset, INT numberOfSegments,
2908 TRACE("(%p, %p, %p, %d, %d, %d, %.2f)\n", graphics, pen, points, count, offset, numberOfSegments, tension);
2910 if(offset >= count || numberOfSegments > count - offset - 1 || numberOfSegments <= 0){
2911 return InvalidParameter;
2914 return GdipDrawCurve2(graphics, pen, points + offset, numberOfSegments + 1, tension);
2917 GpStatus WINGDIPAPI GdipDrawCurve3I(GpGraphics *graphics, GpPen *pen,
2918 GDIPCONST GpPoint *points, INT count, INT offset, INT numberOfSegments,
2921 TRACE("(%p, %p, %p, %d, %d, %d, %.2f)\n", graphics, pen, points, count, offset, numberOfSegments, tension);
2927 if(offset >= count || numberOfSegments > count - offset - 1 || numberOfSegments <= 0){
2928 return InvalidParameter;
2931 return GdipDrawCurve2I(graphics, pen, points + offset, numberOfSegments + 1, tension);
2934 GpStatus WINGDIPAPI GdipDrawEllipse(GpGraphics *graphics, GpPen *pen, REAL x,
2935 REAL y, REAL width, REAL height)
2941 TRACE("(%p, %p, %.2f, %.2f, %.2f, %.2f)\n", graphics, pen, x, y, width, height);
2943 if(!graphics || !pen)
2944 return InvalidParameter;
2951 FIXME("graphics object has no HDC\n");
2957 ptf[1].X = x + width;
2958 ptf[1].Y = y + height;
2960 save_state = prepare_dc(graphics, pen);
2961 SelectObject(graphics->hdc, GetStockObject(NULL_BRUSH));
2963 transform_and_round_points(graphics, pti, ptf, 2);
2965 Ellipse(graphics->hdc, pti[0].x, pti[0].y, pti[1].x, pti[1].y);
2967 restore_dc(graphics, save_state);
2972 GpStatus WINGDIPAPI GdipDrawEllipseI(GpGraphics *graphics, GpPen *pen, INT x,
2973 INT y, INT width, INT height)
2975 TRACE("(%p, %p, %d, %d, %d, %d)\n", graphics, pen, x, y, width, height);
2977 return GdipDrawEllipse(graphics,pen,(REAL)x,(REAL)y,(REAL)width,(REAL)height);
2981 GpStatus WINGDIPAPI GdipDrawImage(GpGraphics *graphics, GpImage *image, REAL x, REAL y)
2985 TRACE("(%p, %p, %.2f, %.2f)\n", graphics, image, x, y);
2987 if(!graphics || !image)
2988 return InvalidParameter;
2990 GdipGetImageWidth(image, &width);
2991 GdipGetImageHeight(image, &height);
2993 return GdipDrawImagePointRect(graphics, image, x, y,
2994 0.0, 0.0, (REAL)width, (REAL)height, UnitPixel);
2997 GpStatus WINGDIPAPI GdipDrawImageI(GpGraphics *graphics, GpImage *image, INT x,
3000 TRACE("(%p, %p, %d, %d)\n", graphics, image, x, y);
3002 return GdipDrawImage(graphics, image, (REAL)x, (REAL)y);
3005 GpStatus WINGDIPAPI GdipDrawImagePointRect(GpGraphics *graphics, GpImage *image,
3006 REAL x, REAL y, REAL srcx, REAL srcy, REAL srcwidth, REAL srcheight,
3010 REAL scale_x, scale_y, width, height;
3012 TRACE("(%p, %p, %f, %f, %f, %f, %f, %f, %d)\n", graphics, image, x, y, srcx, srcy, srcwidth, srcheight, srcUnit);
3014 scale_x = units_scale(srcUnit, graphics->unit, graphics->xres);
3015 scale_x *= graphics->xres / image->xres;
3016 scale_y = units_scale(srcUnit, graphics->unit, graphics->yres);
3017 scale_y *= graphics->yres / image->yres;
3018 width = srcwidth * scale_x;
3019 height = srcheight * scale_y;
3021 points[0].X = points[2].X = x;
3022 points[0].Y = points[1].Y = y;
3023 points[1].X = x + width;
3024 points[2].Y = y + height;
3026 return GdipDrawImagePointsRect(graphics, image, points, 3, srcx, srcy,
3027 srcwidth, srcheight, srcUnit, NULL, NULL, NULL);
3030 GpStatus WINGDIPAPI GdipDrawImagePointRectI(GpGraphics *graphics, GpImage *image,
3031 INT x, INT y, INT srcx, INT srcy, INT srcwidth, INT srcheight,
3034 return GdipDrawImagePointRect(graphics, image, x, y, srcx, srcy, srcwidth, srcheight, srcUnit);
3037 GpStatus WINGDIPAPI GdipDrawImagePoints(GpGraphics *graphics, GpImage *image,
3038 GDIPCONST GpPointF *dstpoints, INT count)
3042 TRACE("(%p, %p, %p, %d)\n", graphics, image, dstpoints, count);
3045 return InvalidParameter;
3047 GdipGetImageWidth(image, &width);
3048 GdipGetImageHeight(image, &height);
3050 return GdipDrawImagePointsRect(graphics, image, dstpoints, count, 0, 0,
3051 width, height, UnitPixel, NULL, NULL, NULL);
3054 GpStatus WINGDIPAPI GdipDrawImagePointsI(GpGraphics *graphics, GpImage *image,
3055 GDIPCONST GpPoint *dstpoints, INT count)
3059 TRACE("(%p, %p, %p, %d)\n", graphics, image, dstpoints, count);
3061 if (count != 3 || !dstpoints)
3062 return InvalidParameter;
3064 ptf[0].X = (REAL)dstpoints[0].X;
3065 ptf[0].Y = (REAL)dstpoints[0].Y;
3066 ptf[1].X = (REAL)dstpoints[1].X;
3067 ptf[1].Y = (REAL)dstpoints[1].Y;
3068 ptf[2].X = (REAL)dstpoints[2].X;
3069 ptf[2].Y = (REAL)dstpoints[2].Y;
3071 return GdipDrawImagePoints(graphics, image, ptf, count);
3074 static BOOL CALLBACK play_metafile_proc(EmfPlusRecordType record_type, unsigned int flags,
3075 unsigned int dataSize, const unsigned char *pStr, void *userdata)
3077 GdipPlayMetafileRecord(userdata, record_type, flags, dataSize, pStr);
3081 GpStatus WINGDIPAPI GdipDrawImagePointsRect(GpGraphics *graphics, GpImage *image,
3082 GDIPCONST GpPointF *points, INT count, REAL srcx, REAL srcy, REAL srcwidth,
3083 REAL srcheight, GpUnit srcUnit, GDIPCONST GpImageAttributes* imageAttributes,
3084 DrawImageAbort callback, VOID * callbackData)
3090 TRACE("(%p, %p, %p, %d, %f, %f, %f, %f, %d, %p, %p, %p)\n", graphics, image, points,
3091 count, srcx, srcy, srcwidth, srcheight, srcUnit, imageAttributes, callback,
3095 return NotImplemented;
3097 if(!graphics || !image || !points || count != 3)
3098 return InvalidParameter;
3100 TRACE("%s %s %s\n", debugstr_pointf(&points[0]), debugstr_pointf(&points[1]),
3101 debugstr_pointf(&points[2]));
3103 memcpy(ptf, points, 3 * sizeof(GpPointF));
3104 ptf[3].X = ptf[2].X + ptf[1].X - ptf[0].X;
3105 ptf[3].Y = ptf[2].Y + ptf[1].Y - ptf[0].Y;
3106 if (!srcwidth || !srcheight || ptf[3].X == ptf[0].X || ptf[3].Y == ptf[0].Y)
3108 transform_and_round_points(graphics, pti, ptf, 4);
3110 TRACE("%s %s %s %s\n", wine_dbgstr_point(&pti[0]), wine_dbgstr_point(&pti[1]),
3111 wine_dbgstr_point(&pti[2]), wine_dbgstr_point(&pti[3]));
3113 srcx = units_to_pixels(srcx, srcUnit, image->xres);
3114 srcy = units_to_pixels(srcy, srcUnit, image->yres);
3115 srcwidth = units_to_pixels(srcwidth, srcUnit, image->xres);
3116 srcheight = units_to_pixels(srcheight, srcUnit, image->yres);
3117 TRACE("src pixels: %f,%f %fx%f\n", srcx, srcy, srcwidth, srcheight);
3123 FIXME("graphics object has no HDC\n");
3126 if(IPicture_Render(image->picture, graphics->hdc,
3127 pti[0].x, pti[0].y, pti[1].x - pti[0].x, pti[2].y - pti[0].y,
3128 srcx, srcy, srcwidth, srcheight, NULL) != S_OK)
3131 callback(callbackData);
3132 return GenericError;
3135 else if (image->type == ImageTypeBitmap)
3137 GpBitmap* bitmap = (GpBitmap*)image;
3140 TRACE("graphics: %.2fx%.2f dpi, fmt %#x, scale %f, image: %.2fx%.2f dpi, fmt %#x, color %08x\n",
3141 graphics->xres, graphics->yres,
3142 graphics->image && graphics->image->type == ImageTypeBitmap ? ((GpBitmap *)graphics->image)->format : 0,
3143 graphics->scale, image->xres, image->yres, bitmap->format,
3144 imageAttributes ? imageAttributes->outside_color : 0);
3146 if (imageAttributes ||
3147 (graphics->image && graphics->image->type == ImageTypeBitmap) ||
3148 ptf[1].Y != ptf[0].Y || ptf[2].X != ptf[0].X ||
3149 ptf[1].X - ptf[0].X != srcwidth || ptf[2].Y - ptf[0].Y != srcheight ||
3150 srcx < 0 || srcy < 0 ||
3151 srcx + srcwidth > bitmap->width || srcy + srcheight > bitmap->height)
3158 int i, x, y, src_stride, dst_stride;
3159 GpMatrix *dst_to_src;
3160 REAL m11, m12, m21, m22, mdx, mdy;
3161 LPBYTE src_data, dst_data;
3162 BitmapData lockeddata;
3163 InterpolationMode interpolation = graphics->interpolation;
3164 PixelOffsetMode offset_mode = graphics->pixeloffset;
3165 GpPointF dst_to_src_points[3] = {{0.0, 0.0}, {1.0, 0.0}, {0.0, 1.0}};
3166 REAL x_dx, x_dy, y_dx, y_dy;
3167 static const GpImageAttributes defaultImageAttributes = {WrapModeClamp, 0, FALSE};
3169 if (!imageAttributes)
3170 imageAttributes = &defaultImageAttributes;
3172 dst_area.left = dst_area.right = pti[0].x;
3173 dst_area.top = dst_area.bottom = pti[0].y;
3176 if (dst_area.left > pti[i].x) dst_area.left = pti[i].x;
3177 if (dst_area.right < pti[i].x) dst_area.right = pti[i].x;
3178 if (dst_area.top > pti[i].y) dst_area.top = pti[i].y;
3179 if (dst_area.bottom < pti[i].y) dst_area.bottom = pti[i].y;
3182 TRACE("dst_area: %s\n", wine_dbgstr_rect(&dst_area));
3184 m11 = (ptf[1].X - ptf[0].X) / srcwidth;
3185 m21 = (ptf[2].X - ptf[0].X) / srcheight;
3186 mdx = ptf[0].X - m11 * srcx - m21 * srcy;
3187 m12 = (ptf[1].Y - ptf[0].Y) / srcwidth;
3188 m22 = (ptf[2].Y - ptf[0].Y) / srcheight;
3189 mdy = ptf[0].Y - m12 * srcx - m22 * srcy;
3191 stat = GdipCreateMatrix2(m11, m12, m21, m22, mdx, mdy, &dst_to_src);
3192 if (stat != Ok) return stat;
3194 stat = GdipInvertMatrix(dst_to_src);
3197 GdipDeleteMatrix(dst_to_src);
3201 dst_data = GdipAlloc(sizeof(ARGB) * (dst_area.right - dst_area.left) * (dst_area.bottom - dst_area.top));
3204 GdipDeleteMatrix(dst_to_src);
3208 dst_stride = sizeof(ARGB) * (dst_area.right - dst_area.left);
3210 get_bitmap_sample_size(interpolation, imageAttributes->wrap,
3211 bitmap, srcx, srcy, srcwidth, srcheight, &src_area);
3213 TRACE("src_area: %d x %d\n", src_area.Width, src_area.Height);
3215 src_data = GdipAlloc(sizeof(ARGB) * src_area.Width * src_area.Height);
3219 GdipDeleteMatrix(dst_to_src);
3222 src_stride = sizeof(ARGB) * src_area.Width;
3224 /* Read the bits we need from the source bitmap into an ARGB buffer. */
3225 lockeddata.Width = src_area.Width;
3226 lockeddata.Height = src_area.Height;
3227 lockeddata.Stride = src_stride;
3228 lockeddata.PixelFormat = PixelFormat32bppARGB;
3229 lockeddata.Scan0 = src_data;
3231 stat = GdipBitmapLockBits(bitmap, &src_area, ImageLockModeRead|ImageLockModeUserInputBuf,
3232 PixelFormat32bppARGB, &lockeddata);
3235 stat = GdipBitmapUnlockBits(bitmap, &lockeddata);
3239 if (src_data != dst_data)
3242 GdipDeleteMatrix(dst_to_src);
3246 apply_image_attributes(imageAttributes, src_data,
3247 src_area.Width, src_area.Height,
3248 src_stride, ColorAdjustTypeBitmap);
3250 /* Transform the bits as needed to the destination. */
3251 GdipTransformMatrixPoints(dst_to_src, dst_to_src_points, 3);
3253 x_dx = dst_to_src_points[1].X - dst_to_src_points[0].X;
3254 x_dy = dst_to_src_points[1].Y - dst_to_src_points[0].Y;
3255 y_dx = dst_to_src_points[2].X - dst_to_src_points[0].X;
3256 y_dy = dst_to_src_points[2].Y - dst_to_src_points[0].Y;
3258 for (x=dst_area.left; x<dst_area.right; x++)
3260 for (y=dst_area.top; y<dst_area.bottom; y++)
3262 GpPointF src_pointf;
3265 src_pointf.X = dst_to_src_points[0].X + x * x_dx + y * y_dx;
3266 src_pointf.Y = dst_to_src_points[0].Y + x * x_dy + y * y_dy;
3268 dst_color = (ARGB*)(dst_data + dst_stride * (y - dst_area.top) + sizeof(ARGB) * (x - dst_area.left));
3270 if (src_pointf.X >= srcx && src_pointf.X < srcx + srcwidth && src_pointf.Y >= srcy && src_pointf.Y < srcy+srcheight)
3271 *dst_color = resample_bitmap_pixel(&src_area, src_data, bitmap->width, bitmap->height, &src_pointf,
3272 imageAttributes, interpolation, offset_mode);
3278 GdipDeleteMatrix(dst_to_src);
3282 stat = alpha_blend_pixels(graphics, dst_area.left, dst_area.top,
3283 dst_data, dst_area.right - dst_area.left, dst_area.bottom - dst_area.top, dst_stride);
3292 int temp_hdc=0, temp_bitmap=0;
3293 HBITMAP hbitmap, old_hbm=NULL;
3295 if (!(bitmap->format == PixelFormat16bppRGB555 ||
3296 bitmap->format == PixelFormat24bppRGB ||
3297 bitmap->format == PixelFormat32bppRGB ||
3298 bitmap->format == PixelFormat32bppPARGB))
3300 BITMAPINFOHEADER bih;
3302 PixelFormat dst_format;
3304 /* we can't draw a bitmap of this format directly */
3305 hdc = CreateCompatibleDC(0);
3309 bih.biSize = sizeof(BITMAPINFOHEADER);
3310 bih.biWidth = bitmap->width;
3311 bih.biHeight = -bitmap->height;
3313 bih.biBitCount = 32;
3314 bih.biCompression = BI_RGB;
3315 bih.biSizeImage = 0;
3316 bih.biXPelsPerMeter = 0;
3317 bih.biYPelsPerMeter = 0;
3319 bih.biClrImportant = 0;
3321 hbitmap = CreateDIBSection(hdc, (BITMAPINFO*)&bih, DIB_RGB_COLORS,
3322 (void**)&temp_bits, NULL, 0);
3324 if (bitmap->format & (PixelFormatAlpha|PixelFormatPAlpha))
3325 dst_format = PixelFormat32bppPARGB;
3327 dst_format = PixelFormat32bppRGB;
3329 convert_pixels(bitmap->width, bitmap->height,
3330 bitmap->width*4, temp_bits, dst_format,
3331 bitmap->stride, bitmap->bits, bitmap->format,
3332 bitmap->image.palette);
3336 if (bitmap->hbitmap)
3337 hbitmap = bitmap->hbitmap;
3340 GdipCreateHBITMAPFromBitmap(bitmap, &hbitmap, 0);
3345 temp_hdc = (hdc == 0);
3350 if (!hdc) hdc = CreateCompatibleDC(0);
3351 old_hbm = SelectObject(hdc, hbitmap);
3354 if (bitmap->format & (PixelFormatAlpha|PixelFormatPAlpha))
3356 gdi_alpha_blend(graphics, pti[0].x, pti[0].y, pti[1].x - pti[0].x, pti[2].y - pti[0].y,
3357 hdc, srcx, srcy, srcwidth, srcheight);
3361 StretchBlt(graphics->hdc, pti[0].x, pti[0].y, pti[1].x-pti[0].x, pti[2].y-pti[0].y,
3362 hdc, srcx, srcy, srcwidth, srcheight, SRCCOPY);
3367 SelectObject(hdc, old_hbm);
3372 DeleteObject(hbitmap);
3375 else if (image->type == ImageTypeMetafile && ((GpMetafile*)image)->hemf)
3381 rc.Width = srcwidth;
3382 rc.Height = srcheight;
3384 return GdipEnumerateMetafileSrcRectDestPoints(graphics, (GpMetafile*)image,
3385 points, count, &rc, srcUnit, play_metafile_proc, image, imageAttributes);
3389 WARN("GpImage with nothing we can draw (metafile in wrong state?)\n");
3390 return InvalidParameter;
3396 GpStatus WINGDIPAPI GdipDrawImagePointsRectI(GpGraphics *graphics, GpImage *image,
3397 GDIPCONST GpPoint *points, INT count, INT srcx, INT srcy, INT srcwidth,
3398 INT srcheight, GpUnit srcUnit, GDIPCONST GpImageAttributes* imageAttributes,
3399 DrawImageAbort callback, VOID * callbackData)
3401 GpPointF pointsF[3];
3404 TRACE("(%p, %p, %p, %d, %d, %d, %d, %d, %d, %p, %p, %p)\n", graphics, image, points, count,
3405 srcx, srcy, srcwidth, srcheight, srcUnit, imageAttributes, callback,
3408 if(!points || count!=3)
3409 return InvalidParameter;
3411 for(i = 0; i < count; i++){
3412 pointsF[i].X = (REAL)points[i].X;
3413 pointsF[i].Y = (REAL)points[i].Y;
3416 return GdipDrawImagePointsRect(graphics, image, pointsF, count, (REAL)srcx, (REAL)srcy,
3417 (REAL)srcwidth, (REAL)srcheight, srcUnit, imageAttributes,
3418 callback, callbackData);
3421 GpStatus WINGDIPAPI GdipDrawImageRectRect(GpGraphics *graphics, GpImage *image,
3422 REAL dstx, REAL dsty, REAL dstwidth, REAL dstheight, REAL srcx, REAL srcy,
3423 REAL srcwidth, REAL srcheight, GpUnit srcUnit,
3424 GDIPCONST GpImageAttributes* imageattr, DrawImageAbort callback,
3425 VOID * callbackData)
3429 TRACE("(%p, %p, %.2f, %.2f, %.2f, %.2f, %.2f, %.2f, %.2f, %.2f, %d, %p, %p, %p)\n",
3430 graphics, image, dstx, dsty, dstwidth, dstheight, srcx, srcy,
3431 srcwidth, srcheight, srcUnit, imageattr, callback, callbackData);
3435 points[1].X = dstx + dstwidth;
3438 points[2].Y = dsty + dstheight;
3440 return GdipDrawImagePointsRect(graphics, image, points, 3, srcx, srcy,
3441 srcwidth, srcheight, srcUnit, imageattr, callback, callbackData);
3444 GpStatus WINGDIPAPI GdipDrawImageRectRectI(GpGraphics *graphics, GpImage *image,
3445 INT dstx, INT dsty, INT dstwidth, INT dstheight, INT srcx, INT srcy,
3446 INT srcwidth, INT srcheight, GpUnit srcUnit,
3447 GDIPCONST GpImageAttributes* imageAttributes, DrawImageAbort callback,
3448 VOID * callbackData)
3452 TRACE("(%p, %p, %d, %d, %d, %d, %d, %d, %d, %d, %d, %p, %p, %p)\n",
3453 graphics, image, dstx, dsty, dstwidth, dstheight, srcx, srcy,
3454 srcwidth, srcheight, srcUnit, imageAttributes, callback, callbackData);
3458 points[1].X = dstx + dstwidth;
3461 points[2].Y = dsty + dstheight;
3463 return GdipDrawImagePointsRect(graphics, image, points, 3, srcx, srcy,
3464 srcwidth, srcheight, srcUnit, imageAttributes, callback, callbackData);
3467 GpStatus WINGDIPAPI GdipDrawImageRect(GpGraphics *graphics, GpImage *image,
3468 REAL x, REAL y, REAL width, REAL height)
3474 TRACE("(%p, %p, %.2f, %.2f, %.2f, %.2f)\n", graphics, image, x, y, width, height);
3476 if(!graphics || !image)
3477 return InvalidParameter;
3479 ret = GdipGetImageBounds(image, &bounds, &unit);
3483 return GdipDrawImageRectRect(graphics, image, x, y, width, height,
3484 bounds.X, bounds.Y, bounds.Width, bounds.Height,
3485 unit, NULL, NULL, NULL);
3488 GpStatus WINGDIPAPI GdipDrawImageRectI(GpGraphics *graphics, GpImage *image,
3489 INT x, INT y, INT width, INT height)
3491 TRACE("(%p, %p, %d, %d, %d, %d)\n", graphics, image, x, y, width, height);
3493 return GdipDrawImageRect(graphics, image, (REAL)x, (REAL)y, (REAL)width, (REAL)height);
3496 GpStatus WINGDIPAPI GdipDrawLine(GpGraphics *graphics, GpPen *pen, REAL x1,
3497 REAL y1, REAL x2, REAL y2)
3503 TRACE("(%p, %p, %.2f, %.2f, %.2f, %.2f)\n", graphics, pen, x1, y1, x2, y2);
3505 if(!pen || !graphics)
3506 return InvalidParameter;
3513 FIXME("graphics object has no HDC\n");
3522 save_state = prepare_dc(graphics, pen);
3524 retval = draw_polyline(graphics, pen, pt, 2, TRUE);
3526 restore_dc(graphics, save_state);
3531 GpStatus WINGDIPAPI GdipDrawLineI(GpGraphics *graphics, GpPen *pen, INT x1,
3532 INT y1, INT x2, INT y2)
3538 TRACE("(%p, %p, %d, %d, %d, %d)\n", graphics, pen, x1, y1, x2, y2);
3540 if(!pen || !graphics)
3541 return InvalidParameter;
3548 FIXME("graphics object has no HDC\n");
3557 save_state = prepare_dc(graphics, pen);
3559 retval = draw_polyline(graphics, pen, pt, 2, TRUE);
3561 restore_dc(graphics, save_state);
3566 GpStatus WINGDIPAPI GdipDrawLines(GpGraphics *graphics, GpPen *pen, GDIPCONST
3567 GpPointF *points, INT count)
3572 TRACE("(%p, %p, %p, %d)\n", graphics, pen, points, count);
3574 if(!pen || !graphics || (count < 2))
3575 return InvalidParameter;
3582 FIXME("graphics object has no HDC\n");
3586 save_state = prepare_dc(graphics, pen);
3588 retval = draw_polyline(graphics, pen, points, count, TRUE);
3590 restore_dc(graphics, save_state);
3595 GpStatus WINGDIPAPI GdipDrawLinesI(GpGraphics *graphics, GpPen *pen, GDIPCONST
3596 GpPoint *points, INT count)
3600 GpPointF *ptf = NULL;
3603 TRACE("(%p, %p, %p, %d)\n", graphics, pen, points, count);
3605 if(!pen || !graphics || (count < 2))
3606 return InvalidParameter;
3613 FIXME("graphics object has no HDC\n");
3617 ptf = GdipAlloc(count * sizeof(GpPointF));
3618 if(!ptf) return OutOfMemory;
3620 for(i = 0; i < count; i ++){
3621 ptf[i].X = (REAL) points[i].X;
3622 ptf[i].Y = (REAL) points[i].Y;
3625 save_state = prepare_dc(graphics, pen);
3627 retval = draw_polyline(graphics, pen, ptf, count, TRUE);
3629 restore_dc(graphics, save_state);
3635 GpStatus WINGDIPAPI GdipDrawPath(GpGraphics *graphics, GpPen *pen, GpPath *path)
3640 TRACE("(%p, %p, %p)\n", graphics, pen, path);
3642 if(!pen || !graphics)
3643 return InvalidParameter;
3650 FIXME("graphics object has no HDC\n");
3654 save_state = prepare_dc(graphics, pen);
3656 retval = draw_poly(graphics, pen, path->pathdata.Points,
3657 path->pathdata.Types, path->pathdata.Count, TRUE);
3659 restore_dc(graphics, save_state);
3664 GpStatus WINGDIPAPI GdipDrawPie(GpGraphics *graphics, GpPen *pen, REAL x,
3665 REAL y, REAL width, REAL height, REAL startAngle, REAL sweepAngle)
3669 TRACE("(%p, %p, %.2f, %.2f, %.2f, %.2f, %.2f, %.2f)\n", graphics, pen, x, y,
3670 width, height, startAngle, sweepAngle);
3672 if(!graphics || !pen)
3673 return InvalidParameter;
3680 FIXME("graphics object has no HDC\n");
3684 save_state = prepare_dc(graphics, pen);
3685 SelectObject(graphics->hdc, GetStockObject(NULL_BRUSH));
3687 draw_pie(graphics, x, y, width, height, startAngle, sweepAngle);
3689 restore_dc(graphics, save_state);
3694 GpStatus WINGDIPAPI GdipDrawPieI(GpGraphics *graphics, GpPen *pen, INT x,
3695 INT y, INT width, INT height, REAL startAngle, REAL sweepAngle)
3697 TRACE("(%p, %p, %d, %d, %d, %d, %.2f, %.2f)\n", graphics, pen, x, y,
3698 width, height, startAngle, sweepAngle);
3700 return GdipDrawPie(graphics,pen,(REAL)x,(REAL)y,(REAL)width,(REAL)height,startAngle,sweepAngle);
3703 GpStatus WINGDIPAPI GdipDrawRectangle(GpGraphics *graphics, GpPen *pen, REAL x,
3704 REAL y, REAL width, REAL height)
3710 TRACE("(%p, %p, %.2f, %.2f, %.2f, %.2f)\n", graphics, pen, x, y, width, height);
3712 if(!pen || !graphics)
3713 return InvalidParameter;
3720 FIXME("graphics object has no HDC\n");
3726 ptf[1].X = x + width;
3728 ptf[2].X = x + width;
3729 ptf[2].Y = y + height;
3731 ptf[3].Y = y + height;
3733 save_state = prepare_dc(graphics, pen);
3734 SelectObject(graphics->hdc, GetStockObject(NULL_BRUSH));
3736 transform_and_round_points(graphics, pti, ptf, 4);
3737 Polygon(graphics->hdc, pti, 4);
3739 restore_dc(graphics, save_state);
3744 GpStatus WINGDIPAPI GdipDrawRectangleI(GpGraphics *graphics, GpPen *pen, INT x,
3745 INT y, INT width, INT height)
3747 TRACE("(%p, %p, %d, %d, %d, %d)\n", graphics, pen, x, y, width, height);
3749 return GdipDrawRectangle(graphics,pen,(REAL)x,(REAL)y,(REAL)width,(REAL)height);
3752 GpStatus WINGDIPAPI GdipDrawRectangles(GpGraphics *graphics, GpPen *pen,
3753 GDIPCONST GpRectF* rects, INT count)
3759 TRACE("(%p, %p, %p, %d)\n", graphics, pen, rects, count);
3761 if(!graphics || !pen || !rects || count < 1)
3762 return InvalidParameter;
3769 FIXME("graphics object has no HDC\n");
3773 ptf = GdipAlloc(4 * count * sizeof(GpPointF));
3774 pti = GdipAlloc(4 * count * sizeof(POINT));
3782 for(i = 0; i < count; i++){
3783 ptf[4 * i + 3].X = ptf[4 * i].X = rects[i].X;
3784 ptf[4 * i + 1].Y = ptf[4 * i].Y = rects[i].Y;
3785 ptf[4 * i + 2].X = ptf[4 * i + 1].X = rects[i].X + rects[i].Width;
3786 ptf[4 * i + 3].Y = ptf[4 * i + 2].Y = rects[i].Y + rects[i].Height;
3789 save_state = prepare_dc(graphics, pen);
3790 SelectObject(graphics->hdc, GetStockObject(NULL_BRUSH));
3792 transform_and_round_points(graphics, pti, ptf, 4 * count);
3794 for(i = 0; i < count; i++)
3795 Polygon(graphics->hdc, &pti[4 * i], 4);
3797 restore_dc(graphics, save_state);
3805 GpStatus WINGDIPAPI GdipDrawRectanglesI(GpGraphics *graphics, GpPen *pen,
3806 GDIPCONST GpRect* rects, INT count)
3812 TRACE("(%p, %p, %p, %d)\n", graphics, pen, rects, count);
3814 if(!rects || count<=0)
3815 return InvalidParameter;
3817 rectsF = GdipAlloc(sizeof(GpRectF) * count);
3821 for(i = 0;i < count;i++){
3822 rectsF[i].X = (REAL)rects[i].X;
3823 rectsF[i].Y = (REAL)rects[i].Y;
3824 rectsF[i].Width = (REAL)rects[i].Width;
3825 rectsF[i].Height = (REAL)rects[i].Height;
3828 ret = GdipDrawRectangles(graphics, pen, rectsF, count);
3834 GpStatus WINGDIPAPI GdipFillClosedCurve2(GpGraphics *graphics, GpBrush *brush,
3835 GDIPCONST GpPointF *points, INT count, REAL tension, GpFillMode fill)
3840 TRACE("(%p, %p, %p, %d, %.2f, %d)\n", graphics, brush, points,
3841 count, tension, fill);
3843 if(!graphics || !brush || !points)
3844 return InvalidParameter;
3849 if(count == 1) /* Do nothing */
3852 stat = GdipCreatePath(fill, &path);
3856 stat = GdipAddPathClosedCurve2(path, points, count, tension);
3858 GdipDeletePath(path);
3862 stat = GdipFillPath(graphics, brush, path);
3864 GdipDeletePath(path);
3868 GdipDeletePath(path);
3873 GpStatus WINGDIPAPI GdipFillClosedCurve2I(GpGraphics *graphics, GpBrush *brush,
3874 GDIPCONST GpPoint *points, INT count, REAL tension, GpFillMode fill)
3880 TRACE("(%p, %p, %p, %d, %.2f, %d)\n", graphics, brush, points,
3881 count, tension, fill);
3883 if(!points || count == 0)
3884 return InvalidParameter;
3886 if(count == 1) /* Do nothing */
3889 ptf = GdipAlloc(sizeof(GpPointF)*count);
3893 for(i = 0;i < count;i++){
3894 ptf[i].X = (REAL)points[i].X;
3895 ptf[i].Y = (REAL)points[i].Y;
3898 stat = GdipFillClosedCurve2(graphics, brush, ptf, count, tension, fill);
3905 GpStatus WINGDIPAPI GdipFillClosedCurve(GpGraphics *graphics, GpBrush *brush,
3906 GDIPCONST GpPointF *points, INT count)
3908 TRACE("(%p, %p, %p, %d)\n", graphics, brush, points, count);
3909 return GdipFillClosedCurve2(graphics, brush, points, count,
3910 0.5f, FillModeAlternate);
3913 GpStatus WINGDIPAPI GdipFillClosedCurveI(GpGraphics *graphics, GpBrush *brush,
3914 GDIPCONST GpPoint *points, INT count)
3916 TRACE("(%p, %p, %p, %d)\n", graphics, brush, points, count);
3917 return GdipFillClosedCurve2I(graphics, brush, points, count,
3918 0.5f, FillModeAlternate);
3921 GpStatus WINGDIPAPI GdipFillEllipse(GpGraphics *graphics, GpBrush *brush, REAL x,
3922 REAL y, REAL width, REAL height)
3927 TRACE("(%p, %p, %.2f, %.2f, %.2f, %.2f)\n", graphics, brush, x, y, width, height);
3929 if(!graphics || !brush)
3930 return InvalidParameter;
3935 stat = GdipCreatePath(FillModeAlternate, &path);
3939 stat = GdipAddPathEllipse(path, x, y, width, height);
3942 stat = GdipFillPath(graphics, brush, path);
3944 GdipDeletePath(path);
3950 GpStatus WINGDIPAPI GdipFillEllipseI(GpGraphics *graphics, GpBrush *brush, INT x,
3951 INT y, INT width, INT height)
3953 TRACE("(%p, %p, %d, %d, %d, %d)\n", graphics, brush, x, y, width, height);
3955 return GdipFillEllipse(graphics,brush,(REAL)x,(REAL)y,(REAL)width,(REAL)height);
3958 static GpStatus GDI32_GdipFillPath(GpGraphics *graphics, GpBrush *brush, GpPath *path)
3963 if(!graphics->hdc || !brush_can_fill_path(brush))
3964 return NotImplemented;
3966 save_state = SaveDC(graphics->hdc);
3967 EndPath(graphics->hdc);
3968 SetPolyFillMode(graphics->hdc, (path->fill == FillModeAlternate ? ALTERNATE
3971 BeginPath(graphics->hdc);
3972 retval = draw_poly(graphics, NULL, path->pathdata.Points,
3973 path->pathdata.Types, path->pathdata.Count, FALSE);
3978 EndPath(graphics->hdc);
3979 brush_fill_path(graphics, brush);
3984 RestoreDC(graphics->hdc, save_state);
3989 static GpStatus SOFTWARE_GdipFillPath(GpGraphics *graphics, GpBrush *brush, GpPath *path)
3994 if (!brush_can_fill_pixels(brush))
3995 return NotImplemented;
3997 /* FIXME: This could probably be done more efficiently without regions. */
3999 stat = GdipCreateRegionPath(path, &rgn);
4003 stat = GdipFillRegion(graphics, brush, rgn);
4005 GdipDeleteRegion(rgn);
4011 GpStatus WINGDIPAPI GdipFillPath(GpGraphics *graphics, GpBrush *brush, GpPath *path)
4013 GpStatus stat = NotImplemented;
4015 TRACE("(%p, %p, %p)\n", graphics, brush, path);
4017 if(!brush || !graphics || !path)
4018 return InvalidParameter;
4023 if (!graphics->image)
4024 stat = GDI32_GdipFillPath(graphics, brush, path);
4026 if (stat == NotImplemented)
4027 stat = SOFTWARE_GdipFillPath(graphics, brush, path);
4029 if (stat == NotImplemented)
4031 FIXME("Not implemented for brushtype %i\n", brush->bt);
4038 GpStatus WINGDIPAPI GdipFillPie(GpGraphics *graphics, GpBrush *brush, REAL x,
4039 REAL y, REAL width, REAL height, REAL startAngle, REAL sweepAngle)
4044 TRACE("(%p, %p, %.2f, %.2f, %.2f, %.2f, %.2f, %.2f)\n",
4045 graphics, brush, x, y, width, height, startAngle, sweepAngle);
4047 if(!graphics || !brush)
4048 return InvalidParameter;
4053 stat = GdipCreatePath(FillModeAlternate, &path);
4057 stat = GdipAddPathPie(path, x, y, width, height, startAngle, sweepAngle);
4060 stat = GdipFillPath(graphics, brush, path);
4062 GdipDeletePath(path);
4068 GpStatus WINGDIPAPI GdipFillPieI(GpGraphics *graphics, GpBrush *brush, INT x,
4069 INT y, INT width, INT height, REAL startAngle, REAL sweepAngle)
4071 TRACE("(%p, %p, %d, %d, %d, %d, %.2f, %.2f)\n",
4072 graphics, brush, x, y, width, height, startAngle, sweepAngle);
4074 return GdipFillPie(graphics,brush,(REAL)x,(REAL)y,(REAL)width,(REAL)height,startAngle,sweepAngle);
4077 GpStatus WINGDIPAPI GdipFillPolygon(GpGraphics *graphics, GpBrush *brush,
4078 GDIPCONST GpPointF *points, INT count, GpFillMode fillMode)
4083 TRACE("(%p, %p, %p, %d, %d)\n", graphics, brush, points, count, fillMode);
4085 if(!graphics || !brush || !points || !count)
4086 return InvalidParameter;
4091 stat = GdipCreatePath(fillMode, &path);
4095 stat = GdipAddPathPolygon(path, points, count);
4098 stat = GdipFillPath(graphics, brush, path);
4100 GdipDeletePath(path);
4106 GpStatus WINGDIPAPI GdipFillPolygonI(GpGraphics *graphics, GpBrush *brush,
4107 GDIPCONST GpPoint *points, INT count, GpFillMode fillMode)
4112 TRACE("(%p, %p, %p, %d, %d)\n", graphics, brush, points, count, fillMode);
4114 if(!graphics || !brush || !points || !count)
4115 return InvalidParameter;
4120 stat = GdipCreatePath(fillMode, &path);
4124 stat = GdipAddPathPolygonI(path, points, count);
4127 stat = GdipFillPath(graphics, brush, path);
4129 GdipDeletePath(path);
4135 GpStatus WINGDIPAPI GdipFillPolygon2(GpGraphics *graphics, GpBrush *brush,
4136 GDIPCONST GpPointF *points, INT count)
4138 TRACE("(%p, %p, %p, %d)\n", graphics, brush, points, count);
4140 return GdipFillPolygon(graphics, brush, points, count, FillModeAlternate);
4143 GpStatus WINGDIPAPI GdipFillPolygon2I(GpGraphics *graphics, GpBrush *brush,
4144 GDIPCONST GpPoint *points, INT count)
4146 TRACE("(%p, %p, %p, %d)\n", graphics, brush, points, count);
4148 return GdipFillPolygonI(graphics, brush, points, count, FillModeAlternate);
4151 GpStatus WINGDIPAPI GdipFillRectangle(GpGraphics *graphics, GpBrush *brush,
4152 REAL x, REAL y, REAL width, REAL height)
4157 TRACE("(%p, %p, %.2f, %.2f, %.2f, %.2f)\n", graphics, brush, x, y, width, height);
4159 if(!graphics || !brush)
4160 return InvalidParameter;
4165 stat = GdipCreatePath(FillModeAlternate, &path);
4169 stat = GdipAddPathRectangle(path, x, y, width, height);
4172 stat = GdipFillPath(graphics, brush, path);
4174 GdipDeletePath(path);
4180 GpStatus WINGDIPAPI GdipFillRectangleI(GpGraphics *graphics, GpBrush *brush,
4181 INT x, INT y, INT width, INT height)
4183 TRACE("(%p, %p, %d, %d, %d, %d)\n", graphics, brush, x, y, width, height);
4185 return GdipFillRectangle(graphics, brush, x, y, width, height);
4188 GpStatus WINGDIPAPI GdipFillRectangles(GpGraphics *graphics, GpBrush *brush, GDIPCONST GpRectF *rects,
4194 TRACE("(%p, %p, %p, %d)\n", graphics, brush, rects, count);
4197 return InvalidParameter;
4199 for(i = 0; i < count; i++){
4200 ret = GdipFillRectangle(graphics, brush, rects[i].X, rects[i].Y, rects[i].Width, rects[i].Height);
4201 if(ret != Ok) return ret;
4207 GpStatus WINGDIPAPI GdipFillRectanglesI(GpGraphics *graphics, GpBrush *brush, GDIPCONST GpRect *rects,
4214 TRACE("(%p, %p, %p, %d)\n", graphics, brush, rects, count);
4216 if(!rects || count <= 0)
4217 return InvalidParameter;
4219 rectsF = GdipAlloc(sizeof(GpRectF)*count);
4223 for(i = 0; i < count; i++){
4224 rectsF[i].X = (REAL)rects[i].X;
4225 rectsF[i].Y = (REAL)rects[i].Y;
4226 rectsF[i].X = (REAL)rects[i].Width;
4227 rectsF[i].Height = (REAL)rects[i].Height;
4230 ret = GdipFillRectangles(graphics,brush,rectsF,count);
4236 static GpStatus GDI32_GdipFillRegion(GpGraphics* graphics, GpBrush* brush,
4244 if(!graphics->hdc || !brush_can_fill_path(brush))
4245 return NotImplemented;
4247 status = GdipGetRegionHRgn(region, graphics, &hrgn);
4251 save_state = SaveDC(graphics->hdc);
4252 EndPath(graphics->hdc);
4254 ExtSelectClipRgn(graphics->hdc, hrgn, RGN_AND);
4256 if (GetClipBox(graphics->hdc, &rc) != NULLREGION)
4258 BeginPath(graphics->hdc);
4259 Rectangle(graphics->hdc, rc.left, rc.top, rc.right, rc.bottom);
4260 EndPath(graphics->hdc);
4262 brush_fill_path(graphics, brush);
4265 RestoreDC(graphics->hdc, save_state);
4272 static GpStatus SOFTWARE_GdipFillRegion(GpGraphics *graphics, GpBrush *brush,
4276 GpRegion *temp_region;
4277 GpMatrix *world_to_device;
4278 GpRectF graphics_bounds;
4282 GpRect gp_bound_rect;
4284 if (!brush_can_fill_pixels(brush))
4285 return NotImplemented;
4287 stat = get_graphics_bounds(graphics, &graphics_bounds);
4290 stat = GdipCloneRegion(region, &temp_region);
4294 stat = get_graphics_transform(graphics, CoordinateSpaceDevice,
4295 CoordinateSpaceWorld, &world_to_device);
4299 stat = GdipTransformRegion(temp_region, world_to_device);
4301 GdipDeleteMatrix(world_to_device);
4305 stat = GdipCombineRegionRect(temp_region, &graphics_bounds, CombineModeIntersect);
4308 stat = GdipGetRegionHRgn(temp_region, NULL, &hregion);
4310 GdipDeleteRegion(temp_region);
4313 if (stat == Ok && GetRgnBox(hregion, &bound_rect) == NULLREGION)
4315 DeleteObject(hregion);
4321 gp_bound_rect.X = bound_rect.left;
4322 gp_bound_rect.Y = bound_rect.top;
4323 gp_bound_rect.Width = bound_rect.right - bound_rect.left;
4324 gp_bound_rect.Height = bound_rect.bottom - bound_rect.top;
4326 pixel_data = GdipAlloc(sizeof(*pixel_data) * gp_bound_rect.Width * gp_bound_rect.Height);
4332 stat = brush_fill_pixels(graphics, brush, pixel_data,
4333 &gp_bound_rect, gp_bound_rect.Width);
4336 stat = alpha_blend_pixels_hrgn(graphics, gp_bound_rect.X,
4337 gp_bound_rect.Y, (BYTE*)pixel_data, gp_bound_rect.Width,
4338 gp_bound_rect.Height, gp_bound_rect.Width * 4, hregion);
4340 GdipFree(pixel_data);
4343 DeleteObject(hregion);
4349 /*****************************************************************************
4350 * GdipFillRegion [GDIPLUS.@]
4352 GpStatus WINGDIPAPI GdipFillRegion(GpGraphics* graphics, GpBrush* brush,
4355 GpStatus stat = NotImplemented;
4357 TRACE("(%p, %p, %p)\n", graphics, brush, region);
4359 if (!(graphics && brush && region))
4360 return InvalidParameter;
4365 if (!graphics->image)
4366 stat = GDI32_GdipFillRegion(graphics, brush, region);
4368 if (stat == NotImplemented)
4369 stat = SOFTWARE_GdipFillRegion(graphics, brush, region);
4371 if (stat == NotImplemented)
4373 FIXME("not implemented for brushtype %i\n", brush->bt);
4380 GpStatus WINGDIPAPI GdipFlush(GpGraphics *graphics, GpFlushIntention intention)
4382 TRACE("(%p,%u)\n", graphics, intention);
4385 return InvalidParameter;
4390 /* We have no internal operation queue, so there's no need to clear it. */
4398 /*****************************************************************************
4399 * GdipGetClipBounds [GDIPLUS.@]
4401 GpStatus WINGDIPAPI GdipGetClipBounds(GpGraphics *graphics, GpRectF *rect)
4403 TRACE("(%p, %p)\n", graphics, rect);
4406 return InvalidParameter;
4411 return GdipGetRegionBounds(graphics->clip, graphics, rect);
4414 /*****************************************************************************
4415 * GdipGetClipBoundsI [GDIPLUS.@]
4417 GpStatus WINGDIPAPI GdipGetClipBoundsI(GpGraphics *graphics, GpRect *rect)
4419 TRACE("(%p, %p)\n", graphics, rect);
4422 return InvalidParameter;
4427 return GdipGetRegionBoundsI(graphics->clip, graphics, rect);
4430 /* FIXME: Compositing mode is not used anywhere except the getter/setter. */
4431 GpStatus WINGDIPAPI GdipGetCompositingMode(GpGraphics *graphics,
4432 CompositingMode *mode)
4434 TRACE("(%p, %p)\n", graphics, mode);
4436 if(!graphics || !mode)
4437 return InvalidParameter;
4442 *mode = graphics->compmode;
4447 /* FIXME: Compositing quality is not used anywhere except the getter/setter. */
4448 GpStatus WINGDIPAPI GdipGetCompositingQuality(GpGraphics *graphics,
4449 CompositingQuality *quality)
4451 TRACE("(%p, %p)\n", graphics, quality);
4453 if(!graphics || !quality)
4454 return InvalidParameter;
4459 *quality = graphics->compqual;
4464 /* FIXME: Interpolation mode is not used anywhere except the getter/setter. */
4465 GpStatus WINGDIPAPI GdipGetInterpolationMode(GpGraphics *graphics,
4466 InterpolationMode *mode)
4468 TRACE("(%p, %p)\n", graphics, mode);
4470 if(!graphics || !mode)
4471 return InvalidParameter;
4476 *mode = graphics->interpolation;
4481 /* FIXME: Need to handle color depths less than 24bpp */
4482 GpStatus WINGDIPAPI GdipGetNearestColor(GpGraphics *graphics, ARGB* argb)
4484 FIXME("(%p, %p): Passing color unmodified\n", graphics, argb);
4486 if(!graphics || !argb)
4487 return InvalidParameter;
4495 GpStatus WINGDIPAPI GdipGetPageScale(GpGraphics *graphics, REAL *scale)
4497 TRACE("(%p, %p)\n", graphics, scale);
4499 if(!graphics || !scale)
4500 return InvalidParameter;
4505 *scale = graphics->scale;
4510 GpStatus WINGDIPAPI GdipGetPageUnit(GpGraphics *graphics, GpUnit *unit)
4512 TRACE("(%p, %p)\n", graphics, unit);
4514 if(!graphics || !unit)
4515 return InvalidParameter;
4520 *unit = graphics->unit;
4525 /* FIXME: Pixel offset mode is not used anywhere except the getter/setter. */
4526 GpStatus WINGDIPAPI GdipGetPixelOffsetMode(GpGraphics *graphics, PixelOffsetMode
4529 TRACE("(%p, %p)\n", graphics, mode);
4531 if(!graphics || !mode)
4532 return InvalidParameter;
4537 *mode = graphics->pixeloffset;
4542 /* FIXME: Smoothing mode is not used anywhere except the getter/setter. */
4543 GpStatus WINGDIPAPI GdipGetSmoothingMode(GpGraphics *graphics, SmoothingMode *mode)
4545 TRACE("(%p, %p)\n", graphics, mode);
4547 if(!graphics || !mode)
4548 return InvalidParameter;
4553 *mode = graphics->smoothing;
4558 GpStatus WINGDIPAPI GdipGetTextContrast(GpGraphics *graphics, UINT *contrast)
4560 TRACE("(%p, %p)\n", graphics, contrast);
4562 if(!graphics || !contrast)
4563 return InvalidParameter;
4565 *contrast = graphics->textcontrast;
4570 /* FIXME: Text rendering hint is not used anywhere except the getter/setter. */
4571 GpStatus WINGDIPAPI GdipGetTextRenderingHint(GpGraphics *graphics,
4572 TextRenderingHint *hint)
4574 TRACE("(%p, %p)\n", graphics, hint);
4576 if(!graphics || !hint)
4577 return InvalidParameter;
4582 *hint = graphics->texthint;
4587 GpStatus WINGDIPAPI GdipGetVisibleClipBounds(GpGraphics *graphics, GpRectF *rect)
4592 TRACE("(%p, %p)\n", graphics, rect);
4594 if(!graphics || !rect)
4595 return InvalidParameter;
4600 /* intersect window and graphics clipping regions */
4601 if((stat = GdipCreateRegion(&clip_rgn)) != Ok)
4604 if((stat = get_visible_clip_region(graphics, clip_rgn)) != Ok)
4607 /* get bounds of the region */
4608 stat = GdipGetRegionBounds(clip_rgn, graphics, rect);
4611 GdipDeleteRegion(clip_rgn);
4616 GpStatus WINGDIPAPI GdipGetVisibleClipBoundsI(GpGraphics *graphics, GpRect *rect)
4621 TRACE("(%p, %p)\n", graphics, rect);
4623 if(!graphics || !rect)
4624 return InvalidParameter;
4626 if((stat = GdipGetVisibleClipBounds(graphics, &rectf)) == Ok)
4628 rect->X = gdip_round(rectf.X);
4629 rect->Y = gdip_round(rectf.Y);
4630 rect->Width = gdip_round(rectf.Width);
4631 rect->Height = gdip_round(rectf.Height);
4637 GpStatus WINGDIPAPI GdipGetWorldTransform(GpGraphics *graphics, GpMatrix *matrix)
4639 TRACE("(%p, %p)\n", graphics, matrix);
4641 if(!graphics || !matrix)
4642 return InvalidParameter;
4647 *matrix = *graphics->worldtrans;
4651 GpStatus WINGDIPAPI GdipGraphicsClear(GpGraphics *graphics, ARGB color)
4657 TRACE("(%p, %x)\n", graphics, color);
4660 return InvalidParameter;
4665 if((stat = GdipCreateSolidFill(color, &brush)) != Ok)
4668 if((stat = get_graphics_bounds(graphics, &wnd_rect)) != Ok){
4669 GdipDeleteBrush((GpBrush*)brush);
4673 GdipFillRectangle(graphics, (GpBrush*)brush, wnd_rect.X, wnd_rect.Y,
4674 wnd_rect.Width, wnd_rect.Height);
4676 GdipDeleteBrush((GpBrush*)brush);
4681 GpStatus WINGDIPAPI GdipIsClipEmpty(GpGraphics *graphics, BOOL *res)
4683 TRACE("(%p, %p)\n", graphics, res);
4685 if(!graphics || !res)
4686 return InvalidParameter;
4688 return GdipIsEmptyRegion(graphics->clip, graphics, res);
4691 GpStatus WINGDIPAPI GdipIsVisiblePoint(GpGraphics *graphics, REAL x, REAL y, BOOL *result)
4697 TRACE("(%p, %.2f, %.2f, %p)\n", graphics, x, y, result);
4699 if(!graphics || !result)
4700 return InvalidParameter;
4707 if((stat = GdipTransformPoints(graphics, CoordinateSpaceDevice,
4708 CoordinateSpaceWorld, &pt, 1)) != Ok)
4711 if((stat = GdipCreateRegion(&rgn)) != Ok)
4714 if((stat = get_visible_clip_region(graphics, rgn)) != Ok)
4717 stat = GdipIsVisibleRegionPoint(rgn, pt.X, pt.Y, graphics, result);
4720 GdipDeleteRegion(rgn);
4724 GpStatus WINGDIPAPI GdipIsVisiblePointI(GpGraphics *graphics, INT x, INT y, BOOL *result)
4726 return GdipIsVisiblePoint(graphics, (REAL)x, (REAL)y, result);
4729 GpStatus WINGDIPAPI GdipIsVisibleRect(GpGraphics *graphics, REAL x, REAL y, REAL width, REAL height, BOOL *result)
4735 TRACE("(%p %.2f %.2f %.2f %.2f %p)\n", graphics, x, y, width, height, result);
4737 if(!graphics || !result)
4738 return InvalidParameter;
4745 pts[1].X = x + width;
4746 pts[1].Y = y + height;
4748 if((stat = GdipTransformPoints(graphics, CoordinateSpaceDevice,
4749 CoordinateSpaceWorld, pts, 2)) != Ok)
4752 pts[1].X -= pts[0].X;
4753 pts[1].Y -= pts[0].Y;
4755 if((stat = GdipCreateRegion(&rgn)) != Ok)
4758 if((stat = get_visible_clip_region(graphics, rgn)) != Ok)
4761 stat = GdipIsVisibleRegionRect(rgn, pts[0].X, pts[0].Y, pts[1].X, pts[1].Y, graphics, result);
4764 GdipDeleteRegion(rgn);
4768 GpStatus WINGDIPAPI GdipIsVisibleRectI(GpGraphics *graphics, INT x, INT y, INT width, INT height, BOOL *result)
4770 return GdipIsVisibleRect(graphics, (REAL)x, (REAL)y, (REAL)width, (REAL)height, result);
4773 GpStatus gdip_format_string(HDC hdc,
4774 GDIPCONST WCHAR *string, INT length, GDIPCONST GpFont *font,
4775 GDIPCONST RectF *rect, GDIPCONST GpStringFormat *format,
4776 gdip_format_string_callback callback, void *user_data)
4779 int sum = 0, height = 0, fit, fitcpy, i, j, lret, nwidth,
4780 nheight, lineend, lineno = 0;
4782 StringAlignment halign;
4785 HotkeyPrefix hkprefix;
4786 INT *hotkeyprefix_offsets=NULL;
4787 INT hotkeyprefix_count=0;
4788 INT hotkeyprefix_pos=0, hotkeyprefix_end_pos=0;
4791 if(length == -1) length = lstrlenW(string);
4793 stringdup = GdipAlloc((length + 1) * sizeof(WCHAR));
4794 if(!stringdup) return OutOfMemory;
4796 nwidth = rect->Width;
4797 nheight = rect->Height;
4800 hkprefix = format->hkprefix;
4802 hkprefix = HotkeyPrefixNone;
4804 if (hkprefix == HotkeyPrefixShow)
4806 for (i=0; i<length; i++)
4808 if (string[i] == '&')
4809 hotkeyprefix_count++;
4813 if (hotkeyprefix_count)
4814 hotkeyprefix_offsets = GdipAlloc(sizeof(INT) * hotkeyprefix_count);
4816 hotkeyprefix_count = 0;
4818 for(i = 0, j = 0; i < length; i++){
4819 /* FIXME: This makes the indexes passed to callback inaccurate. */
4820 if(!isprintW(string[i]) && (string[i] != '\n'))
4823 /* FIXME: tabs should be handled using tabstops from stringformat */
4824 if (string[i] == '\t')
4827 if (seen_prefix && hkprefix == HotkeyPrefixShow && string[i] != '&')
4828 hotkeyprefix_offsets[hotkeyprefix_count++] = j;
4829 else if (!seen_prefix && hkprefix != HotkeyPrefixNone && string[i] == '&')
4837 stringdup[j] = string[i];
4843 if (format) halign = format->align;
4844 else halign = StringAlignmentNear;
4846 while(sum < length){
4847 GetTextExtentExPointW(hdc, stringdup + sum, length - sum,
4848 nwidth, &fit, NULL, &size);
4854 for(lret = 0; lret < fit; lret++)
4855 if(*(stringdup + sum + lret) == '\n')
4858 /* Line break code (may look strange, but it imitates windows). */
4860 lineend = fit = lret; /* this is not an off-by-one error */
4861 else if(fit < (length - sum)){
4862 if(*(stringdup + sum + fit) == ' ')
4863 while(*(stringdup + sum + fit) == ' ')
4866 while(*(stringdup + sum + fit - 1) != ' '){
4869 if(*(stringdup + sum + fit) == '\t')
4878 while(*(stringdup + sum + lineend - 1) == ' ' ||
4879 *(stringdup + sum + lineend - 1) == '\t')
4885 GetTextExtentExPointW(hdc, stringdup + sum, lineend,
4886 nwidth, &j, NULL, &size);
4888 bounds.Width = size.cx;
4890 if(height + size.cy > nheight)
4891 bounds.Height = nheight - (height + size.cy);
4893 bounds.Height = size.cy;
4895 bounds.Y = rect->Y + height;
4899 case StringAlignmentNear:
4903 case StringAlignmentCenter:
4904 bounds.X = rect->X + (rect->Width/2) - (bounds.Width/2);
4906 case StringAlignmentFar:
4907 bounds.X = rect->X + rect->Width - bounds.Width;
4911 for (hotkeyprefix_end_pos=hotkeyprefix_pos; hotkeyprefix_end_pos<hotkeyprefix_count; hotkeyprefix_end_pos++)
4912 if (hotkeyprefix_offsets[hotkeyprefix_end_pos] >= sum + lineend)
4915 stat = callback(hdc, stringdup, sum, lineend,
4916 font, rect, format, lineno, &bounds,
4917 &hotkeyprefix_offsets[hotkeyprefix_pos],
4918 hotkeyprefix_end_pos-hotkeyprefix_pos, user_data);
4923 sum += fit + (lret < fitcpy ? 1 : 0);
4927 hotkeyprefix_pos = hotkeyprefix_end_pos;
4929 if(height > nheight)
4932 /* Stop if this was a linewrap (but not if it was a linebreak). */
4933 if ((lret == fitcpy) && format &&
4934 (format->attr & (StringFormatFlagsNoWrap | StringFormatFlagsLineLimit)))
4938 GdipFree(stringdup);
4939 GdipFree(hotkeyprefix_offsets);
4944 struct measure_ranges_args {
4946 REAL rel_width, rel_height;
4949 static GpStatus measure_ranges_callback(HDC hdc,
4950 GDIPCONST WCHAR *string, INT index, INT length, GDIPCONST GpFont *font,
4951 GDIPCONST RectF *rect, GDIPCONST GpStringFormat *format,
4952 INT lineno, const RectF *bounds, INT *underlined_indexes,
4953 INT underlined_index_count, void *user_data)
4957 struct measure_ranges_args *args = user_data;
4959 for (i=0; i<format->range_count; i++)
4961 INT range_start = max(index, format->character_ranges[i].First);
4962 INT range_end = min(index+length, format->character_ranges[i].First+format->character_ranges[i].Length);
4963 if (range_start < range_end)
4968 range_rect.Y = bounds->Y / args->rel_height;
4969 range_rect.Height = bounds->Height / args->rel_height;
4971 GetTextExtentExPointW(hdc, string + index, range_start - index,
4972 INT_MAX, NULL, NULL, &range_size);
4973 range_rect.X = (bounds->X + range_size.cx) / args->rel_width;
4975 GetTextExtentExPointW(hdc, string + index, range_end - index,
4976 INT_MAX, NULL, NULL, &range_size);
4977 range_rect.Width = (bounds->X + range_size.cx) / args->rel_width - range_rect.X;
4979 stat = GdipCombineRegionRect(args->regions[i], &range_rect, CombineModeUnion);
4988 GpStatus WINGDIPAPI GdipMeasureCharacterRanges(GpGraphics* graphics,
4989 GDIPCONST WCHAR* string, INT length, GDIPCONST GpFont* font,
4990 GDIPCONST RectF* layoutRect, GDIPCONST GpStringFormat *stringFormat,
4991 INT regionCount, GpRegion** regions)
4995 HFONT gdifont, oldfont;
4996 struct measure_ranges_args args;
4997 HDC hdc, temp_hdc=NULL;
5002 TRACE("(%p %s %d %p %s %p %d %p)\n", graphics, debugstr_w(string),
5003 length, font, debugstr_rectf(layoutRect), stringFormat, regionCount, regions);
5005 if (!(graphics && string && font && layoutRect && stringFormat && regions))
5006 return InvalidParameter;
5008 if (regionCount < stringFormat->range_count)
5009 return InvalidParameter;
5013 hdc = temp_hdc = CreateCompatibleDC(0);
5014 if (!temp_hdc) return OutOfMemory;
5017 hdc = graphics->hdc;
5019 if (stringFormat->attr)
5020 TRACE("may be ignoring some format flags: attr %x\n", stringFormat->attr);
5028 GdipTransformPoints(graphics, CoordinateSpaceDevice, CoordinateSpaceWorld, pt, 3);
5029 args.rel_width = sqrt((pt[1].Y-pt[0].Y)*(pt[1].Y-pt[0].Y)+
5030 (pt[1].X-pt[0].X)*(pt[1].X-pt[0].X));
5031 args.rel_height = sqrt((pt[2].Y-pt[0].Y)*(pt[2].Y-pt[0].Y)+
5032 (pt[2].X-pt[0].X)*(pt[2].X-pt[0].X));
5034 margin_x = stringFormat->generic_typographic ? 0.0 : font->emSize / 6.0;
5035 margin_x *= units_scale(font->unit, graphics->unit, graphics->xres);
5037 scaled_rect.X = (layoutRect->X + margin_x) * args.rel_width;
5038 scaled_rect.Y = layoutRect->Y * args.rel_height;
5039 if (stringFormat->attr & StringFormatFlagsNoClip)
5041 scaled_rect.Width = (REAL)(1 << 23);
5042 scaled_rect.Height = (REAL)(1 << 23);
5046 scaled_rect.Width = layoutRect->Width * args.rel_width;
5047 scaled_rect.Height = layoutRect->Height * args.rel_height;
5049 if (scaled_rect.Width >= 0.5)
5051 scaled_rect.Width -= margin_x * 2.0 * args.rel_width;
5052 if (scaled_rect.Width < 0.5) return Ok; /* doesn't fit */
5055 get_font_hfont(graphics, font, stringFormat, &gdifont);
5056 oldfont = SelectObject(hdc, gdifont);
5058 for (i=0; i<stringFormat->range_count; i++)
5060 stat = GdipSetEmpty(regions[i]);
5065 args.regions = regions;
5067 stat = gdip_format_string(hdc, string, length, font, &scaled_rect, stringFormat,
5068 measure_ranges_callback, &args);
5070 SelectObject(hdc, oldfont);
5071 DeleteObject(gdifont);
5079 struct measure_string_args {
5081 INT *codepointsfitted;
5083 REAL rel_width, rel_height;
5086 static GpStatus measure_string_callback(HDC hdc,
5087 GDIPCONST WCHAR *string, INT index, INT length, GDIPCONST GpFont *font,
5088 GDIPCONST RectF *rect, GDIPCONST GpStringFormat *format,
5089 INT lineno, const RectF *bounds, INT *underlined_indexes,
5090 INT underlined_index_count, void *user_data)
5092 struct measure_string_args *args = user_data;
5093 REAL new_width, new_height;
5095 new_width = bounds->Width / args->rel_width;
5096 new_height = (bounds->Height + bounds->Y) / args->rel_height - args->bounds->Y;
5098 if (new_width > args->bounds->Width)
5099 args->bounds->Width = new_width;
5101 if (new_height > args->bounds->Height)
5102 args->bounds->Height = new_height;
5104 if (args->codepointsfitted)
5105 *args->codepointsfitted = index + length;
5107 if (args->linesfilled)
5108 (*args->linesfilled)++;
5113 /* Find the smallest rectangle that bounds the text when it is printed in rect
5114 * according to the format options listed in format. If rect has 0 width and
5115 * height, then just find the smallest rectangle that bounds the text when it's
5116 * printed at location (rect->X, rect-Y). */
5117 GpStatus WINGDIPAPI GdipMeasureString(GpGraphics *graphics,
5118 GDIPCONST WCHAR *string, INT length, GDIPCONST GpFont *font,
5119 GDIPCONST RectF *rect, GDIPCONST GpStringFormat *format, RectF *bounds,
5120 INT *codepointsfitted, INT *linesfilled)
5122 HFONT oldfont, gdifont;
5123 struct measure_string_args args;
5124 HDC temp_hdc=NULL, hdc;
5128 INT lines, glyphs, format_flags = format ? format->attr : 0;
5130 TRACE("(%p, %s, %i, %p, %s, %p, %p, %p, %p)\n", graphics,
5131 debugstr_wn(string, length), length, font, debugstr_rectf(rect), format,
5132 bounds, codepointsfitted, linesfilled);
5134 if(!graphics || !string || !font || !rect || !bounds)
5135 return InvalidParameter;
5139 hdc = temp_hdc = CreateCompatibleDC(0);
5140 if (!temp_hdc) return OutOfMemory;
5143 hdc = graphics->hdc;
5145 if(linesfilled) *linesfilled = 0;
5146 if(codepointsfitted) *codepointsfitted = 0;
5149 TRACE("may be ignoring some format flags: attr %x\n", format->attr);
5157 GdipTransformPoints(graphics, CoordinateSpaceDevice, CoordinateSpaceWorld, pt, 3);
5158 args.rel_width = sqrt((pt[1].Y-pt[0].Y)*(pt[1].Y-pt[0].Y)+
5159 (pt[1].X-pt[0].X)*(pt[1].X-pt[0].X));
5160 args.rel_height = sqrt((pt[2].Y-pt[0].Y)*(pt[2].Y-pt[0].Y)+
5161 (pt[2].X-pt[0].X)*(pt[2].X-pt[0].X));
5163 margin_x = (format && format->generic_typographic) ? 0.0 : font->emSize / 6.0;
5164 margin_x *= units_scale(font->unit, graphics->unit, graphics->xres);
5166 scaled_rect.X = (rect->X + margin_x) * args.rel_width;
5167 scaled_rect.Y = rect->Y * args.rel_height;
5168 scaled_rect.Width = rect->Width * args.rel_width;
5169 scaled_rect.Height = rect->Height * args.rel_height;
5171 if ((format_flags & StringFormatFlagsNoClip) ||
5172 scaled_rect.Width >= 1 << 23 || scaled_rect.Width < 0.5) scaled_rect.Width = 1 << 23;
5173 if ((format_flags & StringFormatFlagsNoClip) ||
5174 scaled_rect.Height >= 1 << 23 || scaled_rect.Height < 0.5) scaled_rect.Height = 1 << 23;
5176 if (scaled_rect.Width >= 0.5)
5178 scaled_rect.Width -= margin_x * 2.0 * args.rel_width;
5179 if (scaled_rect.Width < 0.5) return Ok; /* doesn't fit */
5182 if (scaled_rect.Width >= 1 << 23 || scaled_rect.Width < 0.5) scaled_rect.Width = 1 << 23;
5183 if (scaled_rect.Height >= 1 << 23 || scaled_rect.Height < 0.5) scaled_rect.Height = 1 << 23;
5185 get_font_hfont(graphics, font, format, &gdifont);
5186 oldfont = SelectObject(hdc, gdifont);
5188 bounds->X = rect->X;
5189 bounds->Y = rect->Y;
5190 bounds->Width = 0.0;
5191 bounds->Height = 0.0;
5193 args.bounds = bounds;
5194 args.codepointsfitted = &glyphs;
5195 args.linesfilled = &lines;
5198 gdip_format_string(hdc, string, length, font, &scaled_rect, format,
5199 measure_string_callback, &args);
5201 if (linesfilled) *linesfilled = lines;
5202 if (codepointsfitted) *codepointsfitted = glyphs;
5205 bounds->Width += margin_x * 2.0;
5207 SelectObject(hdc, oldfont);
5208 DeleteObject(gdifont);
5216 struct draw_string_args {
5217 GpGraphics *graphics;
5218 GDIPCONST GpBrush *brush;
5219 REAL x, y, rel_width, rel_height, ascent;
5222 static GpStatus draw_string_callback(HDC hdc,
5223 GDIPCONST WCHAR *string, INT index, INT length, GDIPCONST GpFont *font,
5224 GDIPCONST RectF *rect, GDIPCONST GpStringFormat *format,
5225 INT lineno, const RectF *bounds, INT *underlined_indexes,
5226 INT underlined_index_count, void *user_data)
5228 struct draw_string_args *args = user_data;
5232 position.X = args->x + bounds->X / args->rel_width;
5233 position.Y = args->y + bounds->Y / args->rel_height + args->ascent;
5235 stat = draw_driver_string(args->graphics, &string[index], length, font, format,
5236 args->brush, &position,
5237 DriverStringOptionsCmapLookup|DriverStringOptionsRealizedAdvance, NULL);
5239 if (stat == Ok && underlined_index_count)
5241 OUTLINETEXTMETRICW otm;
5242 REAL underline_y, underline_height;
5245 GetOutlineTextMetricsW(hdc, sizeof(otm), &otm);
5247 underline_height = otm.otmsUnderscoreSize / args->rel_height;
5248 underline_y = position.Y - otm.otmsUnderscorePosition / args->rel_height - underline_height / 2;
5250 for (i=0; i<underlined_index_count; i++)
5252 REAL start_x, end_x;
5254 INT ofs = underlined_indexes[i] - index;
5256 GetTextExtentExPointW(hdc, string + index, ofs, INT_MAX, NULL, NULL, &text_size);
5257 start_x = text_size.cx / args->rel_width;
5259 GetTextExtentExPointW(hdc, string + index, ofs+1, INT_MAX, NULL, NULL, &text_size);
5260 end_x = text_size.cx / args->rel_width;
5262 GdipFillRectangle(args->graphics, (GpBrush*)args->brush, position.X+start_x, underline_y, end_x-start_x, underline_height);
5269 GpStatus WINGDIPAPI GdipDrawString(GpGraphics *graphics, GDIPCONST WCHAR *string,
5270 INT length, GDIPCONST GpFont *font, GDIPCONST RectF *rect,
5271 GDIPCONST GpStringFormat *format, GDIPCONST GpBrush *brush)
5275 GpPointF pt[3], rectcpy[4];
5277 REAL rel_width, rel_height, margin_x;
5278 INT save_state, format_flags = 0;
5280 struct draw_string_args args;
5282 HDC hdc, temp_hdc=NULL;
5283 TEXTMETRICW textmetric;
5285 TRACE("(%p, %s, %i, %p, %s, %p, %p)\n", graphics, debugstr_wn(string, length),
5286 length, font, debugstr_rectf(rect), format, brush);
5288 if(!graphics || !string || !font || !brush || !rect)
5289 return InvalidParameter;
5293 hdc = graphics->hdc;
5297 hdc = temp_hdc = CreateCompatibleDC(0);
5301 TRACE("may be ignoring some format flags: attr %x\n", format->attr);
5303 format_flags = format->attr;
5305 /* Should be no need to explicitly test for StringAlignmentNear as
5306 * that is default behavior if no alignment is passed. */
5307 if(format->vertalign != StringAlignmentNear){
5308 RectF bounds, in_rect = *rect;
5309 in_rect.Height = 0.0; /* avoid height clipping */
5310 GdipMeasureString(graphics, string, length, font, &in_rect, format, &bounds, 0, 0);
5312 TRACE("bounds %s\n", debugstr_rectf(&bounds));
5314 if(format->vertalign == StringAlignmentCenter)
5315 offsety = (rect->Height - bounds.Height) / 2;
5316 else if(format->vertalign == StringAlignmentFar)
5317 offsety = (rect->Height - bounds.Height);
5319 TRACE("vertical align %d, offsety %f\n", format->vertalign, offsety);
5322 save_state = SaveDC(hdc);
5330 GdipTransformPoints(graphics, CoordinateSpaceDevice, CoordinateSpaceWorld, pt, 3);
5331 rel_width = sqrt((pt[1].Y-pt[0].Y)*(pt[1].Y-pt[0].Y)+
5332 (pt[1].X-pt[0].X)*(pt[1].X-pt[0].X));
5333 rel_height = sqrt((pt[2].Y-pt[0].Y)*(pt[2].Y-pt[0].Y)+
5334 (pt[2].X-pt[0].X)*(pt[2].X-pt[0].X));
5336 rectcpy[3].X = rectcpy[0].X = rect->X;
5337 rectcpy[1].Y = rectcpy[0].Y = rect->Y;
5338 rectcpy[2].X = rectcpy[1].X = rect->X + rect->Width;
5339 rectcpy[3].Y = rectcpy[2].Y = rect->Y + rect->Height;
5340 transform_and_round_points(graphics, corners, rectcpy, 4);
5342 margin_x = (format && format->generic_typographic) ? 0.0 : font->emSize / 6.0;
5343 margin_x *= units_scale(font->unit, graphics->unit, graphics->xres);
5345 scaled_rect.X = margin_x * rel_width;
5346 scaled_rect.Y = 0.0;
5347 scaled_rect.Width = rel_width * rect->Width;
5348 scaled_rect.Height = rel_height * rect->Height;
5350 if ((format_flags & StringFormatFlagsNoClip) ||
5351 scaled_rect.Width >= 1 << 23 || scaled_rect.Width < 0.5) scaled_rect.Width = 1 << 23;
5352 if ((format_flags & StringFormatFlagsNoClip) ||
5353 scaled_rect.Height >= 1 << 23 || scaled_rect.Height < 0.5) scaled_rect.Height = 1 << 23;
5355 if (scaled_rect.Width >= 0.5)
5357 scaled_rect.Width -= margin_x * 2.0 * rel_width;
5358 if (scaled_rect.Width < 0.5) return Ok; /* doesn't fit */
5361 if (scaled_rect.Width >= 1 << 23 || scaled_rect.Width < 0.5) scaled_rect.Width = 1 << 23;
5362 if (scaled_rect.Height >= 1 << 23 || scaled_rect.Height < 0.5) scaled_rect.Height = 1 << 23;
5364 if (!(format_flags & StringFormatFlagsNoClip) &&
5365 scaled_rect.Width != 1 << 23 && scaled_rect.Height != 1 << 23)
5367 /* FIXME: If only the width or only the height is 0, we should probably still clip */
5368 rgn = CreatePolygonRgn(corners, 4, ALTERNATE);
5369 SelectClipRgn(hdc, rgn);
5372 get_font_hfont(graphics, font, format, &gdifont);
5373 SelectObject(hdc, gdifont);
5375 args.graphics = graphics;
5379 args.y = rect->Y + offsety;
5381 args.rel_width = rel_width;
5382 args.rel_height = rel_height;
5384 GetTextMetricsW(hdc, &textmetric);
5385 args.ascent = textmetric.tmAscent / rel_height;
5387 gdip_format_string(hdc, string, length, font, &scaled_rect, format,
5388 draw_string_callback, &args);
5391 DeleteObject(gdifont);
5393 RestoreDC(hdc, save_state);
5400 GpStatus WINGDIPAPI GdipResetClip(GpGraphics *graphics)
5402 TRACE("(%p)\n", graphics);
5405 return InvalidParameter;
5410 return GdipSetInfinite(graphics->clip);
5413 GpStatus WINGDIPAPI GdipResetWorldTransform(GpGraphics *graphics)
5415 TRACE("(%p)\n", graphics);
5418 return InvalidParameter;
5423 graphics->worldtrans->matrix[0] = 1.0;
5424 graphics->worldtrans->matrix[1] = 0.0;
5425 graphics->worldtrans->matrix[2] = 0.0;
5426 graphics->worldtrans->matrix[3] = 1.0;
5427 graphics->worldtrans->matrix[4] = 0.0;
5428 graphics->worldtrans->matrix[5] = 0.0;
5433 GpStatus WINGDIPAPI GdipRestoreGraphics(GpGraphics *graphics, GraphicsState state)
5435 return GdipEndContainer(graphics, state);
5438 GpStatus WINGDIPAPI GdipRotateWorldTransform(GpGraphics *graphics, REAL angle,
5439 GpMatrixOrder order)
5441 TRACE("(%p, %.2f, %d)\n", graphics, angle, order);
5444 return InvalidParameter;
5449 return GdipRotateMatrix(graphics->worldtrans, angle, order);
5452 GpStatus WINGDIPAPI GdipSaveGraphics(GpGraphics *graphics, GraphicsState *state)
5454 return GdipBeginContainer2(graphics, state);
5457 GpStatus WINGDIPAPI GdipBeginContainer2(GpGraphics *graphics,
5458 GraphicsContainer *state)
5460 GraphicsContainerItem *container;
5463 TRACE("(%p, %p)\n", graphics, state);
5465 if(!graphics || !state)
5466 return InvalidParameter;
5468 sts = init_container(&container, graphics);
5472 list_add_head(&graphics->containers, &container->entry);
5473 *state = graphics->contid = container->contid;
5478 GpStatus WINGDIPAPI GdipBeginContainer(GpGraphics *graphics, GDIPCONST GpRectF *dstrect, GDIPCONST GpRectF *srcrect, GpUnit unit, GraphicsContainer *state)
5480 FIXME("(%p, %p, %p, %d, %p): stub\n", graphics, dstrect, srcrect, unit, state);
5481 return NotImplemented;
5484 GpStatus WINGDIPAPI GdipBeginContainerI(GpGraphics *graphics, GDIPCONST GpRect *dstrect, GDIPCONST GpRect *srcrect, GpUnit unit, GraphicsContainer *state)
5486 FIXME("(%p, %p, %p, %d, %p): stub\n", graphics, dstrect, srcrect, unit, state);
5487 return NotImplemented;
5490 GpStatus WINGDIPAPI GdipComment(GpGraphics *graphics, UINT sizeData, GDIPCONST BYTE *data)
5492 FIXME("(%p, %d, %p): stub\n", graphics, sizeData, data);
5493 return NotImplemented;
5496 GpStatus WINGDIPAPI GdipEndContainer(GpGraphics *graphics, GraphicsContainer state)
5499 GraphicsContainerItem *container, *container2;
5501 TRACE("(%p, %x)\n", graphics, state);
5504 return InvalidParameter;
5506 LIST_FOR_EACH_ENTRY(container, &graphics->containers, GraphicsContainerItem, entry){
5507 if(container->contid == state)
5511 /* did not find a matching container */
5512 if(&container->entry == &graphics->containers)
5515 sts = restore_container(graphics, container);
5519 /* remove all of the containers on top of the found container */
5520 LIST_FOR_EACH_ENTRY_SAFE(container, container2, &graphics->containers, GraphicsContainerItem, entry){
5521 if(container->contid == state)
5523 list_remove(&container->entry);
5524 delete_container(container);
5527 list_remove(&container->entry);
5528 delete_container(container);
5533 GpStatus WINGDIPAPI GdipScaleWorldTransform(GpGraphics *graphics, REAL sx,
5534 REAL sy, GpMatrixOrder order)
5536 TRACE("(%p, %.2f, %.2f, %d)\n", graphics, sx, sy, order);
5539 return InvalidParameter;
5544 return GdipScaleMatrix(graphics->worldtrans, sx, sy, order);
5547 GpStatus WINGDIPAPI GdipSetClipGraphics(GpGraphics *graphics, GpGraphics *srcgraphics,
5550 TRACE("(%p, %p, %d)\n", graphics, srcgraphics, mode);
5552 if(!graphics || !srcgraphics)
5553 return InvalidParameter;
5555 return GdipCombineRegionRegion(graphics->clip, srcgraphics->clip, mode);
5558 GpStatus WINGDIPAPI GdipSetCompositingMode(GpGraphics *graphics,
5559 CompositingMode mode)
5561 TRACE("(%p, %d)\n", graphics, mode);
5564 return InvalidParameter;
5569 graphics->compmode = mode;
5574 GpStatus WINGDIPAPI GdipSetCompositingQuality(GpGraphics *graphics,
5575 CompositingQuality quality)
5577 TRACE("(%p, %d)\n", graphics, quality);
5580 return InvalidParameter;
5585 graphics->compqual = quality;
5590 GpStatus WINGDIPAPI GdipSetInterpolationMode(GpGraphics *graphics,
5591 InterpolationMode mode)
5593 TRACE("(%p, %d)\n", graphics, mode);
5595 if(!graphics || mode == InterpolationModeInvalid || mode > InterpolationModeHighQualityBicubic)
5596 return InvalidParameter;
5601 if (mode == InterpolationModeDefault || mode == InterpolationModeLowQuality)
5602 mode = InterpolationModeBilinear;
5604 if (mode == InterpolationModeHighQuality)
5605 mode = InterpolationModeHighQualityBicubic;
5607 graphics->interpolation = mode;
5612 GpStatus WINGDIPAPI GdipSetPageScale(GpGraphics *graphics, REAL scale)
5614 TRACE("(%p, %.2f)\n", graphics, scale);
5616 if(!graphics || (scale <= 0.0))
5617 return InvalidParameter;
5622 graphics->scale = scale;
5627 GpStatus WINGDIPAPI GdipSetPageUnit(GpGraphics *graphics, GpUnit unit)
5629 TRACE("(%p, %d)\n", graphics, unit);
5632 return InvalidParameter;
5637 if(unit == UnitWorld)
5638 return InvalidParameter;
5640 graphics->unit = unit;
5645 GpStatus WINGDIPAPI GdipSetPixelOffsetMode(GpGraphics *graphics, PixelOffsetMode
5648 TRACE("(%p, %d)\n", graphics, mode);
5651 return InvalidParameter;
5656 graphics->pixeloffset = mode;
5661 GpStatus WINGDIPAPI GdipSetRenderingOrigin(GpGraphics *graphics, INT x, INT y)
5665 TRACE("(%p,%i,%i)\n", graphics, x, y);
5668 FIXME("value is unused in rendering\n");
5671 return InvalidParameter;
5673 graphics->origin_x = x;
5674 graphics->origin_y = y;
5679 GpStatus WINGDIPAPI GdipGetRenderingOrigin(GpGraphics *graphics, INT *x, INT *y)
5681 TRACE("(%p,%p,%p)\n", graphics, x, y);
5683 if (!graphics || !x || !y)
5684 return InvalidParameter;
5686 *x = graphics->origin_x;
5687 *y = graphics->origin_y;
5692 GpStatus WINGDIPAPI GdipSetSmoothingMode(GpGraphics *graphics, SmoothingMode mode)
5694 TRACE("(%p, %d)\n", graphics, mode);
5697 return InvalidParameter;
5702 graphics->smoothing = mode;
5707 GpStatus WINGDIPAPI GdipSetTextContrast(GpGraphics *graphics, UINT contrast)
5709 TRACE("(%p, %d)\n", graphics, contrast);
5712 return InvalidParameter;
5714 graphics->textcontrast = contrast;
5719 GpStatus WINGDIPAPI GdipSetTextRenderingHint(GpGraphics *graphics,
5720 TextRenderingHint hint)
5722 TRACE("(%p, %d)\n", graphics, hint);
5724 if(!graphics || hint > TextRenderingHintClearTypeGridFit)
5725 return InvalidParameter;
5730 graphics->texthint = hint;
5735 GpStatus WINGDIPAPI GdipSetWorldTransform(GpGraphics *graphics, GpMatrix *matrix)
5737 TRACE("(%p, %p)\n", graphics, matrix);
5739 if(!graphics || !matrix)
5740 return InvalidParameter;
5745 TRACE("%f,%f,%f,%f,%f,%f\n",
5746 matrix->matrix[0], matrix->matrix[1], matrix->matrix[2],
5747 matrix->matrix[3], matrix->matrix[4], matrix->matrix[5]);
5749 GdipDeleteMatrix(graphics->worldtrans);
5750 return GdipCloneMatrix(matrix, &graphics->worldtrans);
5753 GpStatus WINGDIPAPI GdipTranslateWorldTransform(GpGraphics *graphics, REAL dx,
5754 REAL dy, GpMatrixOrder order)
5756 TRACE("(%p, %.2f, %.2f, %d)\n", graphics, dx, dy, order);
5759 return InvalidParameter;
5764 return GdipTranslateMatrix(graphics->worldtrans, dx, dy, order);
5767 /*****************************************************************************
5768 * GdipSetClipHrgn [GDIPLUS.@]
5770 GpStatus WINGDIPAPI GdipSetClipHrgn(GpGraphics *graphics, HRGN hrgn, CombineMode mode)
5775 TRACE("(%p, %p, %d)\n", graphics, hrgn, mode);
5778 return InvalidParameter;
5780 status = GdipCreateRegionHrgn(hrgn, ®ion);
5784 status = GdipSetClipRegion(graphics, region, mode);
5786 GdipDeleteRegion(region);
5790 GpStatus WINGDIPAPI GdipSetClipPath(GpGraphics *graphics, GpPath *path, CombineMode mode)
5792 TRACE("(%p, %p, %d)\n", graphics, path, mode);
5795 return InvalidParameter;
5800 return GdipCombineRegionPath(graphics->clip, path, mode);
5803 GpStatus WINGDIPAPI GdipSetClipRect(GpGraphics *graphics, REAL x, REAL y,
5804 REAL width, REAL height,
5809 TRACE("(%p, %.2f, %.2f, %.2f, %.2f, %d)\n", graphics, x, y, width, height, mode);
5812 return InvalidParameter;
5820 rect.Height = height;
5822 return GdipCombineRegionRect(graphics->clip, &rect, mode);
5825 GpStatus WINGDIPAPI GdipSetClipRectI(GpGraphics *graphics, INT x, INT y,
5826 INT width, INT height,
5829 TRACE("(%p, %d, %d, %d, %d, %d)\n", graphics, x, y, width, height, mode);
5832 return InvalidParameter;
5837 return GdipSetClipRect(graphics, (REAL)x, (REAL)y, (REAL)width, (REAL)height, mode);
5840 GpStatus WINGDIPAPI GdipSetClipRegion(GpGraphics *graphics, GpRegion *region,
5843 TRACE("(%p, %p, %d)\n", graphics, region, mode);
5845 if(!graphics || !region)
5846 return InvalidParameter;
5851 return GdipCombineRegionRegion(graphics->clip, region, mode);
5854 GpStatus WINGDIPAPI GdipSetMetafileDownLevelRasterizationLimit(GpMetafile *metafile,
5859 TRACE("(%p,%u)\n", metafile, limitDpi);
5862 FIXME("not implemented\n");
5864 return NotImplemented;
5867 GpStatus WINGDIPAPI GdipDrawPolygon(GpGraphics *graphics,GpPen *pen,GDIPCONST GpPointF *points,
5873 TRACE("(%p, %p, %d)\n", graphics, points, count);
5875 if(!graphics || !pen || count<=0)
5876 return InvalidParameter;
5883 FIXME("graphics object has no HDC\n");
5887 pti = GdipAlloc(sizeof(POINT) * count);
5889 save_state = prepare_dc(graphics, pen);
5890 SelectObject(graphics->hdc, GetStockObject(NULL_BRUSH));
5892 transform_and_round_points(graphics, pti, (GpPointF*)points, count);
5893 Polygon(graphics->hdc, pti, count);
5895 restore_dc(graphics, save_state);
5901 GpStatus WINGDIPAPI GdipDrawPolygonI(GpGraphics *graphics,GpPen *pen,GDIPCONST GpPoint *points,
5908 TRACE("(%p, %p, %p, %d)\n", graphics, pen, points, count);
5910 if(count<=0) return InvalidParameter;
5911 ptf = GdipAlloc(sizeof(GpPointF) * count);
5913 for(i = 0;i < count; i++){
5914 ptf[i].X = (REAL)points[i].X;
5915 ptf[i].Y = (REAL)points[i].Y;
5918 ret = GdipDrawPolygon(graphics,pen,ptf,count);
5924 GpStatus WINGDIPAPI GdipGetDpiX(GpGraphics *graphics, REAL* dpi)
5926 TRACE("(%p, %p)\n", graphics, dpi);
5928 if(!graphics || !dpi)
5929 return InvalidParameter;
5934 *dpi = graphics->xres;
5938 GpStatus WINGDIPAPI GdipGetDpiY(GpGraphics *graphics, REAL* dpi)
5940 TRACE("(%p, %p)\n", graphics, dpi);
5942 if(!graphics || !dpi)
5943 return InvalidParameter;
5948 *dpi = graphics->yres;
5952 GpStatus WINGDIPAPI GdipMultiplyWorldTransform(GpGraphics *graphics, GDIPCONST GpMatrix *matrix,
5953 GpMatrixOrder order)
5958 TRACE("(%p, %p, %d)\n", graphics, matrix, order);
5960 if(!graphics || !matrix)
5961 return InvalidParameter;
5966 m = *(graphics->worldtrans);
5968 ret = GdipMultiplyMatrix(&m, matrix, order);
5970 *(graphics->worldtrans) = m;
5975 /* Color used to fill bitmaps so we can tell which parts have been drawn over by gdi32. */
5976 static const COLORREF DC_BACKGROUND_KEY = 0x0c0b0d;
5978 GpStatus WINGDIPAPI GdipGetDC(GpGraphics *graphics, HDC *hdc)
5982 TRACE("(%p, %p)\n", graphics, hdc);
5984 if(!graphics || !hdc)
5985 return InvalidParameter;
5990 if (graphics->image && graphics->image->type == ImageTypeMetafile)
5992 stat = METAFILE_GetDC((GpMetafile*)graphics->image, hdc);
5994 else if (!graphics->hdc ||
5995 (graphics->image && graphics->image->type == ImageTypeBitmap && ((GpBitmap*)graphics->image)->format & PixelFormatAlpha))
5997 /* Create a fake HDC and fill it with a constant color. */
6001 BITMAPINFOHEADER bmih;
6004 stat = get_graphics_bounds(graphics, &bounds);
6008 graphics->temp_hbitmap_width = bounds.Width;
6009 graphics->temp_hbitmap_height = bounds.Height;
6011 bmih.biSize = sizeof(bmih);
6012 bmih.biWidth = graphics->temp_hbitmap_width;
6013 bmih.biHeight = -graphics->temp_hbitmap_height;
6015 bmih.biBitCount = 32;
6016 bmih.biCompression = BI_RGB;
6017 bmih.biSizeImage = 0;
6018 bmih.biXPelsPerMeter = 0;
6019 bmih.biYPelsPerMeter = 0;
6021 bmih.biClrImportant = 0;
6023 hbitmap = CreateDIBSection(NULL, (BITMAPINFO*)&bmih, DIB_RGB_COLORS,
6024 (void**)&graphics->temp_bits, NULL, 0);
6026 return GenericError;
6028 temp_hdc = CreateCompatibleDC(0);
6031 DeleteObject(hbitmap);
6032 return GenericError;
6035 for (i=0; i<(graphics->temp_hbitmap_width * graphics->temp_hbitmap_height); i++)
6036 ((DWORD*)graphics->temp_bits)[i] = DC_BACKGROUND_KEY;
6038 SelectObject(temp_hdc, hbitmap);
6040 graphics->temp_hbitmap = hbitmap;
6041 *hdc = graphics->temp_hdc = temp_hdc;
6045 *hdc = graphics->hdc;
6049 graphics->busy = TRUE;
6054 GpStatus WINGDIPAPI GdipReleaseDC(GpGraphics *graphics, HDC hdc)
6058 TRACE("(%p, %p)\n", graphics, hdc);
6060 if(!graphics || !hdc || !graphics->busy)
6061 return InvalidParameter;
6063 if (graphics->image && graphics->image->type == ImageTypeMetafile)
6065 stat = METAFILE_ReleaseDC((GpMetafile*)graphics->image, hdc);
6067 else if (graphics->temp_hdc == hdc)
6072 /* Find the pixels that have changed, and mark them as opaque. */
6073 pos = (DWORD*)graphics->temp_bits;
6074 for (i=0; i<(graphics->temp_hbitmap_width * graphics->temp_hbitmap_height); i++)
6076 if (*pos != DC_BACKGROUND_KEY)
6083 /* Write the changed pixels to the real target. */
6084 alpha_blend_pixels(graphics, 0, 0, graphics->temp_bits,
6085 graphics->temp_hbitmap_width, graphics->temp_hbitmap_height,
6086 graphics->temp_hbitmap_width * 4);
6089 DeleteDC(graphics->temp_hdc);
6090 DeleteObject(graphics->temp_hbitmap);
6091 graphics->temp_hdc = NULL;
6092 graphics->temp_hbitmap = NULL;
6094 else if (hdc != graphics->hdc)
6096 stat = InvalidParameter;
6100 graphics->busy = FALSE;
6105 GpStatus WINGDIPAPI GdipGetClip(GpGraphics *graphics, GpRegion *region)
6110 TRACE("(%p, %p)\n", graphics, region);
6112 if(!graphics || !region)
6113 return InvalidParameter;
6118 if((status = GdipCloneRegion(graphics->clip, &clip)) != Ok)
6121 /* free everything except root node and header */
6122 delete_element(®ion->node);
6123 memcpy(region, clip, sizeof(GpRegion));
6129 static GpStatus get_graphics_transform(GpGraphics *graphics, GpCoordinateSpace dst_space,
6130 GpCoordinateSpace src_space, GpMatrix **matrix)
6132 GpStatus stat = GdipCreateMatrix(matrix);
6133 REAL scale_x, scale_y;
6135 if (dst_space != src_space && stat == Ok)
6137 scale_x = units_to_pixels(1.0, graphics->unit, graphics->xres);
6138 scale_y = units_to_pixels(1.0, graphics->unit, graphics->yres);
6140 if(graphics->unit != UnitDisplay)
6142 scale_x *= graphics->scale;
6143 scale_y *= graphics->scale;
6146 /* transform from src_space to CoordinateSpacePage */
6149 case CoordinateSpaceWorld:
6150 GdipMultiplyMatrix(*matrix, graphics->worldtrans, MatrixOrderAppend);
6152 case CoordinateSpacePage:
6154 case CoordinateSpaceDevice:
6155 GdipScaleMatrix(*matrix, 1.0/scale_x, 1.0/scale_y, MatrixOrderAppend);
6159 /* transform from CoordinateSpacePage to dst_space */
6162 case CoordinateSpaceWorld:
6164 GpMatrix *inverted_transform;
6165 stat = GdipCloneMatrix(graphics->worldtrans, &inverted_transform);
6168 stat = GdipInvertMatrix(inverted_transform);
6170 GdipMultiplyMatrix(*matrix, inverted_transform, MatrixOrderAppend);
6171 GdipDeleteMatrix(inverted_transform);
6175 case CoordinateSpacePage:
6177 case CoordinateSpaceDevice:
6178 GdipScaleMatrix(*matrix, scale_x, scale_y, MatrixOrderAppend);
6185 GpStatus WINGDIPAPI GdipTransformPoints(GpGraphics *graphics, GpCoordinateSpace dst_space,
6186 GpCoordinateSpace src_space, GpPointF *points, INT count)
6191 if(!graphics || !points || count <= 0)
6192 return InvalidParameter;
6197 TRACE("(%p, %d, %d, %p, %d)\n", graphics, dst_space, src_space, points, count);
6199 if (src_space == dst_space) return Ok;
6201 stat = get_graphics_transform(graphics, dst_space, src_space, &matrix);
6205 stat = GdipTransformMatrixPoints(matrix, points, count);
6207 GdipDeleteMatrix(matrix);
6213 GpStatus WINGDIPAPI GdipTransformPointsI(GpGraphics *graphics, GpCoordinateSpace dst_space,
6214 GpCoordinateSpace src_space, GpPoint *points, INT count)
6220 TRACE("(%p, %d, %d, %p, %d)\n", graphics, dst_space, src_space, points, count);
6223 return InvalidParameter;
6225 pointsF = GdipAlloc(sizeof(GpPointF) * count);
6229 for(i = 0; i < count; i++){
6230 pointsF[i].X = (REAL)points[i].X;
6231 pointsF[i].Y = (REAL)points[i].Y;
6234 ret = GdipTransformPoints(graphics, dst_space, src_space, pointsF, count);
6237 for(i = 0; i < count; i++){
6238 points[i].X = gdip_round(pointsF[i].X);
6239 points[i].Y = gdip_round(pointsF[i].Y);
6246 HPALETTE WINGDIPAPI GdipCreateHalftonePalette(void)
6258 /*****************************************************************************
6259 * GdipTranslateClip [GDIPLUS.@]
6261 GpStatus WINGDIPAPI GdipTranslateClip(GpGraphics *graphics, REAL dx, REAL dy)
6263 TRACE("(%p, %.2f, %.2f)\n", graphics, dx, dy);
6266 return InvalidParameter;
6271 return GdipTranslateRegion(graphics->clip, dx, dy);
6274 /*****************************************************************************
6275 * GdipTranslateClipI [GDIPLUS.@]
6277 GpStatus WINGDIPAPI GdipTranslateClipI(GpGraphics *graphics, INT dx, INT dy)
6279 TRACE("(%p, %d, %d)\n", graphics, dx, dy);
6282 return InvalidParameter;
6287 return GdipTranslateRegion(graphics->clip, (REAL)dx, (REAL)dy);
6291 /*****************************************************************************
6292 * GdipMeasureDriverString [GDIPLUS.@]
6294 GpStatus WINGDIPAPI GdipMeasureDriverString(GpGraphics *graphics, GDIPCONST UINT16 *text, INT length,
6295 GDIPCONST GpFont *font, GDIPCONST PointF *positions,
6296 INT flags, GDIPCONST GpMatrix *matrix, RectF *boundingBox)
6298 static const INT unsupported_flags = ~(DriverStringOptionsCmapLookup|DriverStringOptionsRealizedAdvance);
6301 REAL min_x, min_y, max_x, max_y, x, y;
6303 TEXTMETRICW textmetric;
6304 const WORD *glyph_indices;
6305 WORD *dynamic_glyph_indices=NULL;
6306 REAL rel_width, rel_height, ascent, descent;
6309 TRACE("(%p %p %d %p %p %d %p %p)\n", graphics, text, length, font, positions, flags, matrix, boundingBox);
6311 if (!graphics || !text || !font || !positions || !boundingBox)
6312 return InvalidParameter;
6315 length = strlenW(text);
6319 boundingBox->X = 0.0;
6320 boundingBox->Y = 0.0;
6321 boundingBox->Width = 0.0;
6322 boundingBox->Height = 0.0;
6325 if (flags & unsupported_flags)
6326 FIXME("Ignoring flags %x\n", flags & unsupported_flags);
6329 FIXME("Ignoring matrix\n");
6331 get_font_hfont(graphics, font, NULL, &hfont);
6333 hdc = CreateCompatibleDC(0);
6334 SelectObject(hdc, hfont);
6336 GetTextMetricsW(hdc, &textmetric);
6344 GdipTransformPoints(graphics, CoordinateSpaceDevice, CoordinateSpaceWorld, pt, 3);
6345 rel_width = sqrt((pt[1].Y-pt[0].Y)*(pt[1].Y-pt[0].Y)+
6346 (pt[1].X-pt[0].X)*(pt[1].X-pt[0].X));
6347 rel_height = sqrt((pt[2].Y-pt[0].Y)*(pt[2].Y-pt[0].Y)+
6348 (pt[2].X-pt[0].X)*(pt[2].X-pt[0].X));
6350 if (flags & DriverStringOptionsCmapLookup)
6352 glyph_indices = dynamic_glyph_indices = GdipAlloc(sizeof(WORD) * length);
6356 DeleteObject(hfont);
6360 GetGlyphIndicesW(hdc, text, length, dynamic_glyph_indices, 0);
6363 glyph_indices = text;
6365 min_x = max_x = x = positions[0].X;
6366 min_y = max_y = y = positions[0].Y;
6368 ascent = textmetric.tmAscent / rel_height;
6369 descent = textmetric.tmDescent / rel_height;
6371 for (i=0; i<length; i++)
6376 if (!(flags & DriverStringOptionsRealizedAdvance))
6382 GetCharABCWidthsW(hdc, glyph_indices[i], glyph_indices[i], &abc);
6383 char_width = abc.abcA + abc.abcB + abc.abcC;
6385 if (min_y > y - ascent) min_y = y - ascent;
6386 if (max_y < y + descent) max_y = y + descent;
6387 if (min_x > x) min_x = x;
6389 x += char_width / rel_width;
6391 if (max_x < x) max_x = x;
6394 GdipFree(dynamic_glyph_indices);
6396 DeleteObject(hfont);
6398 boundingBox->X = min_x;
6399 boundingBox->Y = min_y;
6400 boundingBox->Width = max_x - min_x;
6401 boundingBox->Height = max_y - min_y;
6406 static GpStatus GDI32_GdipDrawDriverString(GpGraphics *graphics, GDIPCONST UINT16 *text, INT length,
6407 GDIPCONST GpFont *font, GDIPCONST GpStringFormat *format,
6408 GDIPCONST GpBrush *brush, GDIPCONST PointF *positions,
6409 INT flags, GDIPCONST GpMatrix *matrix)
6411 static const INT unsupported_flags = ~(DriverStringOptionsRealizedAdvance|DriverStringOptionsCmapLookup);
6417 if (flags & unsupported_flags)
6418 FIXME("Ignoring flags %x\n", flags & unsupported_flags);
6421 FIXME("Ignoring matrix\n");
6423 if (!(flags & DriverStringOptionsCmapLookup))
6424 eto_flags |= ETO_GLYPH_INDEX;
6426 save_state = SaveDC(graphics->hdc);
6427 SetBkMode(graphics->hdc, TRANSPARENT);
6428 SetTextColor(graphics->hdc, get_gdi_brush_color(brush));
6431 GdipTransformPoints(graphics, CoordinateSpaceDevice, CoordinateSpaceWorld, &pt, 1);
6433 get_font_hfont(graphics, font, format, &hfont);
6434 SelectObject(graphics->hdc, hfont);
6436 SetTextAlign(graphics->hdc, TA_BASELINE|TA_LEFT);
6438 ExtTextOutW(graphics->hdc, gdip_round(pt.X), gdip_round(pt.Y), eto_flags, NULL, text, length, NULL);
6440 RestoreDC(graphics->hdc, save_state);
6442 DeleteObject(hfont);
6447 static GpStatus SOFTWARE_GdipDrawDriverString(GpGraphics *graphics, GDIPCONST UINT16 *text, INT length,
6448 GDIPCONST GpFont *font, GDIPCONST GpStringFormat *format,
6449 GDIPCONST GpBrush *brush, GDIPCONST PointF *positions,
6450 INT flags, GDIPCONST GpMatrix *matrix)
6452 static const INT unsupported_flags = ~(DriverStringOptionsCmapLookup|DriverStringOptionsRealizedAdvance);
6454 PointF *real_positions, real_position;
6458 int min_x=INT_MAX, min_y=INT_MAX, max_x=INT_MIN, max_y=INT_MIN, i, x, y;
6459 DWORD max_glyphsize=0;
6460 GLYPHMETRICS glyphmetrics;
6461 static const MAT2 identity = {{0,1}, {0,0}, {0,0}, {0,1}};
6464 int text_mask_stride;
6466 int pixel_data_stride;
6468 UINT ggo_flags = GGO_GRAY8_BITMAP;
6473 if (!(flags & DriverStringOptionsCmapLookup))
6474 ggo_flags |= GGO_GLYPH_INDEX;
6476 if (flags & unsupported_flags)
6477 FIXME("Ignoring flags %x\n", flags & unsupported_flags);
6480 FIXME("Ignoring matrix\n");
6482 pti = GdipAlloc(sizeof(POINT) * length);
6486 if (flags & DriverStringOptionsRealizedAdvance)
6488 real_position = positions[0];
6490 transform_and_round_points(graphics, pti, &real_position, 1);
6494 real_positions = GdipAlloc(sizeof(PointF) * length);
6495 if (!real_positions)
6501 memcpy(real_positions, positions, sizeof(PointF) * length);
6503 transform_and_round_points(graphics, pti, real_positions, length);
6505 GdipFree(real_positions);
6508 get_font_hfont(graphics, font, format, &hfont);
6510 hdc = CreateCompatibleDC(0);
6511 SelectObject(hdc, hfont);
6513 /* Get the boundaries of the text to be drawn */
6514 for (i=0; i<length; i++)
6517 int left, top, right, bottom;
6519 glyphsize = GetGlyphOutlineW(hdc, text[i], ggo_flags,
6520 &glyphmetrics, 0, NULL, &identity);
6522 if (glyphsize == GDI_ERROR)
6524 ERR("GetGlyphOutlineW failed\n");
6527 DeleteObject(hfont);
6528 return GenericError;
6531 if (glyphsize > max_glyphsize)
6532 max_glyphsize = glyphsize;
6534 left = pti[i].x + glyphmetrics.gmptGlyphOrigin.x;
6535 top = pti[i].y - glyphmetrics.gmptGlyphOrigin.y;
6536 right = pti[i].x + glyphmetrics.gmptGlyphOrigin.x + glyphmetrics.gmBlackBoxX;
6537 bottom = pti[i].y - glyphmetrics.gmptGlyphOrigin.y + glyphmetrics.gmBlackBoxY;
6539 if (left < min_x) min_x = left;
6540 if (top < min_y) min_y = top;
6541 if (right > max_x) max_x = right;
6542 if (bottom > max_y) max_y = bottom;
6544 if (i+1 < length && (flags & DriverStringOptionsRealizedAdvance) == DriverStringOptionsRealizedAdvance)
6546 pti[i+1].x = pti[i].x + glyphmetrics.gmCellIncX;
6547 pti[i+1].y = pti[i].y + glyphmetrics.gmCellIncY;
6551 glyph_mask = GdipAlloc(max_glyphsize);
6552 text_mask = GdipAlloc((max_x - min_x) * (max_y - min_y));
6553 text_mask_stride = max_x - min_x;
6555 if (!(glyph_mask && text_mask))
6557 GdipFree(glyph_mask);
6558 GdipFree(text_mask);
6561 DeleteObject(hfont);
6565 /* Generate a mask for the text */
6566 for (i=0; i<length; i++)
6568 int left, top, stride;
6570 GetGlyphOutlineW(hdc, text[i], ggo_flags,
6571 &glyphmetrics, max_glyphsize, glyph_mask, &identity);
6573 left = pti[i].x + glyphmetrics.gmptGlyphOrigin.x;
6574 top = pti[i].y - glyphmetrics.gmptGlyphOrigin.y;
6575 stride = (glyphmetrics.gmBlackBoxX + 3) & (~3);
6577 for (y=0; y<glyphmetrics.gmBlackBoxY; y++)
6579 BYTE *glyph_val = glyph_mask + y * stride;
6580 BYTE *text_val = text_mask + (left - min_x) + (top - min_y + y) * text_mask_stride;
6581 for (x=0; x<glyphmetrics.gmBlackBoxX; x++)
6583 *text_val = min(64, *text_val + *glyph_val);
6592 DeleteObject(hfont);
6593 GdipFree(glyph_mask);
6595 /* get the brush data */
6596 pixel_data = GdipAlloc(4 * (max_x - min_x) * (max_y - min_y));
6599 GdipFree(text_mask);
6603 pixel_area.X = min_x;
6604 pixel_area.Y = min_y;
6605 pixel_area.Width = max_x - min_x;
6606 pixel_area.Height = max_y - min_y;
6607 pixel_data_stride = pixel_area.Width * 4;
6609 stat = brush_fill_pixels(graphics, (GpBrush*)brush, (DWORD*)pixel_data, &pixel_area, pixel_area.Width);
6612 GdipFree(text_mask);
6613 GdipFree(pixel_data);
6617 /* multiply the brush data by the mask */
6618 for (y=0; y<pixel_area.Height; y++)
6620 BYTE *text_val = text_mask + text_mask_stride * y;
6621 BYTE *pixel_val = pixel_data + pixel_data_stride * y + 3;
6622 for (x=0; x<pixel_area.Width; x++)
6624 *pixel_val = (*pixel_val) * (*text_val) / 64;
6630 GdipFree(text_mask);
6632 /* draw the result */
6633 stat = alpha_blend_pixels(graphics, min_x, min_y, pixel_data, pixel_area.Width,
6634 pixel_area.Height, pixel_data_stride);
6636 GdipFree(pixel_data);
6641 static GpStatus draw_driver_string(GpGraphics *graphics, GDIPCONST UINT16 *text, INT length,
6642 GDIPCONST GpFont *font, GDIPCONST GpStringFormat *format,
6643 GDIPCONST GpBrush *brush, GDIPCONST PointF *positions,
6644 INT flags, GDIPCONST GpMatrix *matrix)
6646 GpStatus stat = NotImplemented;
6649 length = strlenW(text);
6651 if (graphics->hdc &&
6652 ((flags & DriverStringOptionsRealizedAdvance) || length <= 1) &&
6653 brush->bt == BrushTypeSolidColor &&
6654 (((GpSolidFill*)brush)->color & 0xff000000) == 0xff000000)
6655 stat = GDI32_GdipDrawDriverString(graphics, text, length, font, format,
6656 brush, positions, flags, matrix);
6657 if (stat == NotImplemented)
6658 stat = SOFTWARE_GdipDrawDriverString(graphics, text, length, font, format,
6659 brush, positions, flags, matrix);
6663 /*****************************************************************************
6664 * GdipDrawDriverString [GDIPLUS.@]
6666 GpStatus WINGDIPAPI GdipDrawDriverString(GpGraphics *graphics, GDIPCONST UINT16 *text, INT length,
6667 GDIPCONST GpFont *font, GDIPCONST GpBrush *brush,
6668 GDIPCONST PointF *positions, INT flags,
6669 GDIPCONST GpMatrix *matrix )
6671 TRACE("(%p %s %p %p %p %d %p)\n", graphics, debugstr_wn(text, length), font, brush, positions, flags, matrix);
6673 if (!graphics || !text || !font || !brush || !positions)
6674 return InvalidParameter;
6676 return draw_driver_string(graphics, text, length, font, NULL,
6677 brush, positions, flags, matrix);
6680 GpStatus WINGDIPAPI GdipRecordMetafileStream(IStream *stream, HDC hdc, EmfType type, GDIPCONST GpRect *frameRect,
6681 MetafileFrameUnit frameUnit, GDIPCONST WCHAR *desc, GpMetafile **metafile)
6683 FIXME("(%p %p %d %p %d %p %p): stub\n", stream, hdc, type, frameRect, frameUnit, desc, metafile);
6684 return NotImplemented;
6687 /*****************************************************************************
6688 * GdipIsVisibleClipEmpty [GDIPLUS.@]
6690 GpStatus WINGDIPAPI GdipIsVisibleClipEmpty(GpGraphics *graphics, BOOL *res)
6695 TRACE("(%p, %p)\n", graphics, res);
6697 if((stat = GdipCreateRegion(&rgn)) != Ok)
6700 if((stat = get_visible_clip_region(graphics, rgn)) != Ok)
6703 stat = GdipIsEmptyRegion(rgn, graphics, res);
6706 GdipDeleteRegion(rgn);
6710 GpStatus WINGDIPAPI GdipResetPageTransform(GpGraphics *graphics)
6714 TRACE("(%p) stub\n", graphics);
6717 FIXME("not implemented\n");
6719 return NotImplemented;