Custom Query (3922 matches)

Filters
 
Or
 
  
 
Columns

Show under each result:


Results (337 - 339 of 3922)

Ticket Resolution Summary Owner Reporter
#3651 No Bug AutoIT3 Wrapper error after installing new version Digdeep
Description

I just went ahead and installed AutoIT latest version and no longer able to use CTRL+F5 or CTRL+F7. Getting the attached error.

I tried multiple re-installs but it's happening the same coming from the C:\Program Files (x86)\AutoIt3\SciTE\AutoIt3Wrapper\AutoIt3Wrapper.au3.

#3650 Fixed Image size off-by-one error with_GDIPlus_ImageResize Jpm anonymous
Description

The function _GDIPlus_ImageResize creates images that seem to have an off-by-one error regarding the size of the source image placement inside the destination bitmap.

Please see the attached images. The code below was used to up-scale TestImage.png to TestResult.png, and then TestResult.png was viewed in Paint.Net. In the screenshot for Paint.Net you can clearly see the resulting image has a transparent border showing through along the right and bottom edges, while the left and top edges appear as they should. While the resulting image is the correct number of pixels overall, the content inside is slightly small, although not obvious since the missing part is transparent.

This seems to suggest the source image was placed into the destination image with the bottom right coordinates specified one x pixel and one y pixel less than ideal.

Test Code:

#include <GDIPlus.au3> _GDIPlus_Startup() Local $hImage = _GDIPlus_ImageLoadFromFile(@ScriptDir & "\TestImage.png") Local $iWidth = _GDIPlus_ImageGetWidth($hImage) Local $iHeight = _GDIPlus_ImageGetHeight($hImage) Local $hBitmap = _GDIPlus_ImageResize( _

$hImage, $iWidth * 4, $iHeight * 4, _ $GDIP_INTERPOLATIONMODE_HIGHQUALITYBICUBIC)

_GDIPlus_ImageSaveToFile($hBitmap, @ScriptDir & "\TestResult.png") Sleep(500) _GDIPlus_BitmapDispose($hBitmap) _GDIPlus_ImageDispose($hImage) _GDIPlus_Shutdown()

See also (somewhat) related ticket # 3647

#3649 Fixed Add the word glob to docs for search engines Jos anonymous
Description

People coming from other languages may search for the words "glob" or "file globbing" when they are looking for how to loop through a list of files matching a wildcard pattern. What they are looking for is likely to be the functions _FileListToArray and/or _FileListToArrayRec.

Please consider adding some wording about "file globbing" to the docs for those functions, so that when people google phrases like "autoit glob" or "autoit file globbing" they will end up finding these functions easily.

Batch Modify
Note: See TracBatchModify for help on using batch modify.
Note: See TracQuery for help on using queries.