AutoHotkey Community

It is currently May 24th, 2012, 1:11 pm

All times are UTC [ DST ]


Search found 36 matches
Search these results:

Author Message

 Forum: Support   Topic: Detecting incomplete JPG

Posted: April 10th, 2012, 9:15 pm 

Replies: 7
Views: 160


Solved... quick and simple solution. Had to use StrGet. Thanks!!

Code:
validJPG(file)
{
   FileRead, Var, %file%
   If (StrGet(&Var + VarSetCapacity(Var)-4,4)="ÿÙ")
      Return True
   Else
      Return False
}

 Forum: Support   Topic: Detecting incomplete JPG

Posted: April 10th, 2012, 8:16 pm 

Replies: 7
Views: 160


From FileRead in the help file.. Note that once the data has been read into OutputVar, only the text before the first binary zero (if any are present) will be "seen" by most AutoHotkey commands and functions. However, the entire contents are still present and can be accessed by advanced me...

 Forum: Scripts   Topic: GDI+ Manual (v1.43)

 Post subject: Re: GDI+ Manual (v1.43)
Posted: April 10th, 2012, 1:48 pm 

Replies: 20
Views: 3816


Ok... solved it..
http://digitalpbk.com/windows-chm/chm-f ... -cancelled
Needed to uncheck 'Always ask before opening this file'

 Forum: Support   Topic: a script between Excel and google chrome

Posted: April 10th, 2012, 1:04 pm 

Replies: 1
Views: 125


You'll have better luck with IE on this one..
viewtopic.php?f=2&t=51020

 Forum: Support   Topic: Detecting incomplete JPG

 Post subject: Detecting incomplete JPG
Posted: April 10th, 2012, 12:58 pm 

Replies: 7
Views: 160


Trying to find a way for AHK to return true or false for a function validJPG() The attached file is incomplete.. but many libraries will still open it.. http://willyfoo.com/blog/uploads/2012/04/COR_6682.jpg Tried ImageMagick -identify -regard-warnings but doesn't show errors.. Tried GraphicsMagick g...

 Forum: Scripts   Topic: GDI+ Manual (v1.43)

 Post subject: Re: GDI+ Manual (v1.43)
Posted: April 10th, 2012, 12:43 pm 

Replies: 20
Views: 3816


Can't seem to display.. shows "Navigation on the webpage was canceled"

 Forum: Utilities   Topic: Graphicsmagick (Fork of ImageMagick)

Posted: April 10th, 2012, 10:51 am 

Replies: 4
Views: 2755


Seems like I can fairly easily make ImageMagick portable but not GraphicsMagick.. I would have to install GM in each system to use it.. am I mistaken here? Is there any way to run GM without installing it?

 Forum: Scripts   Topic: JPEG_GetExifAscTag() :: Read 'DATETIME' from Digital Photo

Posted: September 22nd, 2010, 10:04 pm 

Replies: 11
Views: 1054


Brilliant!! Thanks!

 Forum: Scripts   Topic: GDI+ standard library 1.45 by tic

 Post subject: Getting EXIF Tag
Posted: September 22nd, 2010, 9:07 pm 

Replies: 998
Views: 156806


Say I want to extract a particular exif tag, the orientation tag of a file.
How do I do it with GDIP?

 Forum: Scripts   Topic: Client & Server Script for TCP/IP Network Communication

 Post subject: FTP Server
Posted: December 13th, 2009, 8:24 pm 

Replies: 130
Views: 49471


Does anybody know if this can be modified to be a FTP server?

 Forum: Support   Topic: monitor webpages

Posted: January 24th, 2009, 11:33 pm 

Replies: 10
Views: 828


Eg.. on facebook I need to monitor how many friends I have online..
The ugly workaround is to copy & paste into clipboard..

Any other way?

 Forum: Support   Topic: USB device connected/disconnected notification?

Posted: February 27th, 2008, 4:43 am 

Replies: 32
Views: 7676


Hey guys thanks for this.. modified it to detect for images from cameras and automatically open up the folder with the images. This takes care of program running while the drive is already there, previously the drive list is not reset if the card is already there, thus the program can be left runnin...

 Forum: Support   Topic: Embed FTP Server

Posted: February 25th, 2008, 6:11 am 

Replies: 7
Views: 1171


Yeah.. it would seem a lot harder than just finding a suitable ftp server to embed ... hmm..

The I would have to detect a completely uploaded file ..
ExecNotificationQuery can let me know when a new file is added but how to check if it has finished?? (I'm receiving JPG files)

 Forum: Support   Topic: Minimize to Tray by Clicking Close Button?

Posted: February 25th, 2008, 3:49 am 

Replies: 16
Views: 1270


Perhaps a way to get around it is to hide the original minimize, restore, close button and put your own set to control what happens.

 Forum: Support   Topic: Embed FTP Server

Posted: February 25th, 2008, 3:24 am 

Replies: 7
Views: 1171


BoBo¨ wrote:
[OT]Your images (at the given links) are amazing![/OT] 8)


Lol... Thanks!
Sort by:  
Page 1 of 3 [ Search found 36 matches ]


All times are UTC [ DST ]


Powered by phpBB® Forum Software © phpBB Group