jpm
Developers-
Posts
10,513 -
Joined
-
Last visited
-
Days Won
16
jpm last won the day on June 21
jpm had the most liked content!
About jpm

- Birthday 04/04/1946
Profile Information
-
Member Title
a Real GUI/debug lover
-
Location
Hauts de Seine, France
jpm's Achievements
-
argumentum reacted to a post in a topic:
Help File/Documentation Issues. (Discussion Only)
-
Help File/Documentation Issues. (Discussion Only)
jpm replied to guinness's topic in AutoIt Technical Discussion
Done -
Werty reacted to a post in a topic:
Help File/Documentation Issues. (Discussion Only)
-
pixelsearch reacted to a post in a topic:
Help File/Documentation Issues. (Discussion Only)
-
donnyh13 reacted to a post in a topic:
Help File/Documentation Issues. (Discussion Only)
-
Help File/Documentation Issues. (Discussion Only)
jpm replied to guinness's topic in AutoIt Technical Discussion
Thanks I will update -
WildByDesign reacted to a post in a topic:
GUIDarkTheme UDF
-
mLipok reacted to a post in a topic:
Help File/Documentation Issues. (Discussion Only)
-
pixelsearch reacted to a post in a topic:
Keep graphics context always showing
-
argumentum reacted to a post in a topic:
Help File/Documentation Issues. (Discussion Only)
-
argumentum reacted to a post in a topic:
Crash with exit code -1073741571
-
Keep graphics context always showing
jpm replied to pixelsearch's topic in AutoIt Technical Discussion
Thanks I will use this new way in the _GDIPlus example -
Help File/Documentation Issues. (Discussion Only)
jpm replied to guinness's topic in AutoIt Technical Discussion
I add the example -
Do not understand why x86 works but x64 not as usually x64 has bigger limit I will investigate
-
Thanks You still need to fix unused var warnings (#forceref ...) also need tidies
-
ioa747 reacted to a post in a topic:
Help File/Documentation Issues. (Discussion Only)
-
Help File/Documentation Issues. (Discussion Only)
jpm replied to guinness's topic in AutoIt Technical Discussion
Already included!!! -
Help File/Documentation Issues. (Discussion Only)
jpm replied to guinness's topic in AutoIt Technical Discussion
Many thanks I will also change the _GdiPlus_PenSetColor() with your example -
Help File/Documentation Issues. (Discussion Only)
jpm replied to guinness's topic in AutoIt Technical Discussion
@ioa747 is this correct for _GDIPlus_GraphicsSetSmoothingMode() $GDIP_SMOOTHINGMODE_DEFAULT (0) - Smoothing is not applied. $GDIP_SMOOTHINGMODE_HIGHSPEED (1) - Smoothing is not applied. $GDIP_SMOOTHINGMODE_HIGHQUALITY (2) - Smoothing is applied using an 8 X 4 box filter (no antialiasing). $GDIP_SMOOTHINGMODE_NONE (3) - Smoothing is not applied. $GDIP_SMOOTHINGMODE_ANTIALIAS8X4 (4) - Smoothing is applied using an 8 X 4 box filter (alias $GDIP_SMOOTHINGMODE_ANTIALIAS). $GDIP_SMOOTHINGMODE_ANTIALIAS8X8 (5 ) - Smoothing is applied using an 8 X 8 box filter. -
Help File/Documentation Issues. (Discussion Only)
jpm replied to guinness's topic in AutoIt Technical Discussion
did you check _GDIPlus_PenSetColor() example? -
Help File/Documentation Issues. (Discussion Only)
jpm replied to guinness's topic in AutoIt Technical Discussion
_GDIPlus_PenSetColor() return GDIP_SMOOTHINGMODE_ANTIALIAS8X8 -
Help File/Documentation Issues. (Discussion Only)
jpm replied to guinness's topic in AutoIt Technical Discussion
Do You agree to change the doc for _GDIPlus_GraphicsSetSmoothingMode()? $GDIP_SMOOTHINGMODE_DEFAULT (0) - Smoothing is not applied. $GDIP_SMOOTHINGMODE_HIGHSPEED (1) - Smoothing is applied using an 8 X 4 box filter, no anti-aliasing applied. $GDIP_SMOOTHINGMODE_HIGHQUALITY (2) - Smoothing is applied using general high quality, not specifically an 8x4 filter. $GDIP_SMOOTHINGMODE_NONE (3) - Specifies that no smoothing Aliasing is applied. $GDIP_SMOOTHINGMODE_ANTIALIAS8X4 (4) ; Specifies that smoothing is applied using an 8 X 4 box filter (alias $GDIP_SMOOTHINGMODE_ANTIALIAS). $GDIP_SMOOTHINGMODE_ANTIALIAS8X8 (5 ); Specifies that smoothing is applied using an 8 X 8 box filter. -
Help File/Documentation Issues. (Discussion Only)
jpm replied to guinness's topic in AutoIt Technical Discussion
This behavior was introduced since the creation That looks strange to me no reference to $GDIP_SMOOTHINGMODE_HIGHSPEED Not sure if it will introduce a regression, but for me the best is to return the real mode -
Help File/Documentation Issues. (Discussion Only)
jpm replied to guinness's topic in AutoIt Technical Discussion
Now That the doc is clear I don't understand why the example display 1 as 2 is set Any idea -
Help File/Documentation Issues. (Discussion Only)
jpm replied to guinness's topic in AutoIt Technical Discussion
Thanks, the doc you pointed show the same anyway I will update our doc saying no antialiasing for SmoothingModeNone