AutoHotkey Homepage AutoHotkey Community
Let's help each other out
 
 FAQFAQ   SearchSearch   MemberlistMemberlist   RegisterRegister 
 ProfileProfile   Log in to check your private messagesLog in to check your private messages   Log inLog in 

Shutterfly Image Stealer

 
Reply to topic    AutoHotkey Community Forum Index -> Scripts & Functions
View previous topic :: View next topic  
Author Message
DevX



Joined: 07 Jan 2009
Posts: 43

PostPosted: Wed Aug 19, 2009 2:20 pm    Post subject: Shutterfly Image Stealer Reply with quote

Hey guys,

Had to get an image album off this crappy website for some reason, but they don't let you download, you have to order prints from them. At least thats what they think.

Here is code to download their images, it does require fiddler for internet explorer to pick up the urls, instructions are in the code.

Someone else may find a need for it, if not, oh well.

Code:

; Capture Images from shutterfly ( shitty service that doesn't allow downloads, must pay for their services )
; - Use internet explorer Fiddler to capture packets
; - After it gets the album preview images, select all the /img/ media etc from fiddler, right click, copy, url.
; - Alter script folder path below to save images in
; - Run script

Loop, Parse, clipboard, `n, `r
{
vara := A_LoopField
StringReplace, vara, vara, 3d110, 3d1500, all
UrlDownloadToFile, %vara%, C:\SaveImagesHere\Image_B%A_Index%.jpg
}
Back to top
View user's profile Send private message
engunneer



Joined: 30 Aug 2005
Posts: 8255
Location: Maywood, IL

PostPosted: Wed Aug 19, 2009 2:41 pm    Post subject: Reply with quote

are you sure that 3d110 and 3d1500 will always be right? It seems like something that will change on a per-album basis. (I didn't check)
_________________

(Common Answers)
Back to top
View user's profile Send private message Visit poster's website
Chicken Pie 4 Tea



Joined: 18 Aug 2009
Posts: 375
Location: holland

PostPosted: Sat Aug 22, 2009 12:06 pm    Post subject: Reply with quote

taking thinks without permission, how dare you!
and, Well done!
_________________
"Choose your parents wisely"
Back to top
View user's profile Send private message
DevX



Joined: 07 Jan 2009
Posts: 43

PostPosted: Thu Sep 17, 2009 1:42 pm    Post subject: Reply with quote

Sorry, long wait before reply lol.

The 3d110 is the size they use to get their images. Of course it can change if they want it to. If you look in fiddler, you'll see the image name attributes on each thumbnail you grab, so you can adjust as necessary.
Back to top
View user's profile Send private message
MasterFocus



Joined: 08 Apr 2009
Posts: 3035
Location: Rio de Janeiro - RJ - Brasil

PostPosted: Thu Sep 17, 2009 1:44 pm    Post subject: Reply with quote

Instead of
Code:
vara := A_LoopField
StringReplace, vara, vara, 3d110, 3d1500, all
you can use
Code:
StringReplace, vara, A_LoopField, 3d110, 3d1500, all

_________________
"Read the manual. Read it again. Search the forum.
Try something before asking. Show what you've tried.
"

Antonio França
My stuff: Google Profile
Back to top
View user's profile Send private message Visit poster's website
Display posts from previous:   
Reply to topic    AutoHotkey Community Forum Index -> Scripts & Functions All times are GMT
Page 1 of 1

 
Jump to:  
You can post new topics in this forum
You can reply to topics in this forum


Powered by phpBB © 2001, 2005 phpBB Group