Jump to content

Tukata

Active Members
  • Posts

    114
  • Joined

  • Last visited

Tukata's Achievements

Adventurer

Adventurer (3/7)

0

Reputation

  1. Hi I need to extract jpg images from multi page TIF with autoit? Can this be done ? thank you for any tip tukata
  2. Lazycat Thank you for your quick action. The updated file works perfect now. I like very much your work. thank you tukata
  3. Hi I want to get Date & Time of an image. I tried this code but got nothing. Please help. _AddPair($aTag, 0x9003, "DateTimeOriginal") $FileDate = _ImageGetParam($aInfo, "DateTimeOriginal") MsgBox (0, "All Picture Info", $FileDate) Thank you tukata
  4. WOW ! Thank you AndyG. That's what I was looking for and could not find. tukata
  5. Melba23 Thank you for your kind reply. Your example works perfect. I added image to it: $hPic = GUICtrlCreatePic("", 0, 0, 2560, 1920) and there is one peoblems: The image is not fully displayed. I assume a change has to be made to the way the scrollbars works, but I don't know how to make it that it will fit to any size of image. I am very thankful to you for your explanation about the way how to use the different Styles. Many thanks tukata
  6. Hi I created a GUI window inside a GUI window and then "GUICtrlCreatePic" in which I display images. Since some images are too big, I added scrollbars to the second GUI window and decreased it. I thought I will be able to scroll the big images (which now I can see only part of them) but I was wrong. Here is the part of my script that does not work as I want. I hope someone will give me an idea how to do it. G=GUICreate("text", 400, 300, 100, 100, $WS_BORDER+$WS_EX_TOPMOST+ $WS_HSCROLL+$WS_VSCROLL) $Pic = GUICtrlCreatePic($a, 0, 0, 400, 300) GUICtrlSetImage($G, $hImage) WinMove ($G, "text", 100, 100, 200, 200) ; at this stage I can see the top-left corner of the images (100x100) and the scrollbars, which had no effect. Thank you tukata
  7. Yashied, thank you very much ! I see that I have to include "FreeImage.dll" and "FreeImage.au3" which will increase the project by over 2200 kb. Is there any lighter way to do this ? Thank you tukata
  8. I am tryig this script and can not find my mistake. #include <FreeImage.au3> _FreeImage_LoadDLL(@ScriptDir&"\FreeImage.dll") _FreeImage_Initialise() $sFile = @ScriptDir & "\flagirl.bmp" $FIF = _FreeImage_GetFIFFromFilenameU($sFile) $hImage = _FreeImage_LoadU($FIF, $sFile) _FreeImage_ConvertToGreyscale($hImage) $sFileName = @ScriptDir & "\New.bmp" _FreeImage_SaveU($FIF, $hImage, $sFileName) _FreeImage_Unload($hImage) _FreeImage_DeInitialise() Please help tukata
  9. BrettF ! Thank you. You have been very helpful. tukata
  10. I tried to download FreeImage many times but the link takes me back. I searched the forum for almost one week. Can at least someone help me find FreeImage UDF ? tukata
  11. Hi I will appreciate if someone can write me the script for converting to grayscale and save to a file. Thank you tukata
  12. Hi I use "GUICtrlCreatePic" and need to replace the image few times and display the original dimension of each image. The help file says: "If you want to have a picture having the same size as the file content just use width=height=0." Whatever I tried I failed. Please help. Another question, Is there a way to use "SplashImageOn" instead and how do I display original dimensions ? And last question: Is there a way to click on the SplashImage to activate the "SplashOff()" ? thank you in advance tukata
  13. Hi Sorry, I tried but could not make it. Can someone write me the numbers to use for Thai script and how to send a Thai key to notepad ? Thank you Tuk
  14. Is that means it can't be done with autoit ?
  15. Is it possible to create one wav file from 2 files ? How ? thank you tuk
×
×
  • Create New...