taietel Posted November 1, 2010 Share Posted November 1, 2010 (edited) No explanation needed. Title says it all: #include <GUIConstantsEx.au3> #Include <File.au3> GUICreate("Photo Mosaic", 800, 600) _GenerateMosaic(800,600) GUISetState(@SW_SHOW) While 1 Sleep(10) Switch GUIGetMsg() Case $GUI_EVENT_CLOSE Exit EndSwitch WEnd Func _GenerateMosaic($iW, $iH, $iX=0,$iY=0) Local $PathToPhotoDir = FileSelectFolder("Select Folder","") & "\" If @error then Exit $arPhoto = _FileListToArray($PathToPhotoDir,"*.jpg",1) If @error then MsgBox(0,"ERROR:","Replace @ScriptDir&'\Foto\' with your path to the photo directory!") Exit EndIf GUICtrlCreatePic($PathToPhotoDir&$arPhoto[1], $iX, $iY, $iW, $iH);first photo as background GUICtrlSetState(-1, $GUI_DISABLE) SplashTextOn("", "Wait!"&@LF&"generating mosaic...", 240, 60, -1, -1, 1+32, "Tahoma", 12,800) For $i=1 To 10;number of passes $n = Random(-100,100,1) For $j=1 To UBound($arPhoto)-1; be careful with the array; the bigger it is, the longer you wait! $xx = Random($iX,$iW,1) $yy = Random($iY,$iH,1) $Pic1 = GUICtrlCreatePic($PathToPhotoDir&$arPhoto[$j], $xx-$n, $yy-$n, 102.4+$n, 76.8+$n) Next Next SplashOff() EndFunc Edited November 1, 2010 by taietel Things you should know first...In the beginning there was only ONE! And zero... Progs: Create PDF(TXT2PDF,IMG2PDF) 3D Bar Graph DeskGadget Menu INI Photo Mosaic 3D Text Link to comment Share on other sites More sharing options...
fighter1 Posted November 1, 2010 Share Posted November 1, 2010 Simple and wonderful ... Thank you Link to comment Share on other sites More sharing options...
taietel Posted November 1, 2010 Author Share Posted November 1, 2010 Thanks! There is a big poster on the front building, with loads of photos overlapping together, so I thought it would be nice to make one with my photos too. Things you should know first...In the beginning there was only ONE! And zero... Progs: Create PDF(TXT2PDF,IMG2PDF) 3D Bar Graph DeskGadget Menu INI Photo Mosaic 3D Text Link to comment Share on other sites More sharing options...
somdcomputerguy Posted November 1, 2010 Share Posted November 1, 2010 Simple and wonderful ... Thank you Ya. What he said! - Bruce /*somdcomputerguy */ If you change the way you look at things, the things you look at change. Link to comment Share on other sites More sharing options...
Skrip Posted November 1, 2010 Share Posted November 1, 2010 This seems pretty cool, however it does not actually generate any images. It say's "Please wait, generating", then the GUI is empty. [left][sub]We're trapped in the belly of this horrible machine.[/sub][sup]And the machine is bleeding to death...[/sup][sup][/sup][/left] Link to comment Share on other sites More sharing options...
taietel Posted November 1, 2010 Author Share Posted November 1, 2010 (edited) Skrip, replace @ScriptDir&"\Foto\" with a path to a directory with photos. M.I. [EDIT] Updated first post (error checking) Edited November 1, 2010 by taietel Things you should know first...In the beginning there was only ONE! And zero... Progs: Create PDF(TXT2PDF,IMG2PDF) 3D Bar Graph DeskGadget Menu INI Photo Mosaic 3D Text Link to comment Share on other sites More sharing options...
somdcomputerguy Posted November 1, 2010 Share Posted November 1, 2010 Skrip, replace @ScriptDir&"\Foto\"with a path to a directory with photos.M.I.And don't forget, do it twice! At the $arPhoto and $Pic1 definitions. - Bruce /*somdcomputerguy */ If you change the way you look at things, the things you look at change. Link to comment Share on other sites More sharing options...
taietel Posted November 1, 2010 Author Share Posted November 1, 2010 somdcomputergui, done! Remains only one place to replace (updated first post). Things you should know first...In the beginning there was only ONE! And zero... Progs: Create PDF(TXT2PDF,IMG2PDF) 3D Bar Graph DeskGadget Menu INI Photo Mosaic 3D Text Link to comment Share on other sites More sharing options...
eracross Posted November 1, 2010 Share Posted November 1, 2010 Not working on vista? nothing appears.. Link to comment Share on other sites More sharing options...
taietel Posted November 1, 2010 Author Share Posted November 1, 2010 eracross, I've tested on Win7/32 and XPsp3/32 and it works. You have to change in the script where I've wrote ";<<<<<<<". Things you should know first...In the beginning there was only ONE! And zero... Progs: Create PDF(TXT2PDF,IMG2PDF) 3D Bar Graph DeskGadget Menu INI Photo Mosaic 3D Text Link to comment Share on other sites More sharing options...
eracross Posted November 1, 2010 Share Posted November 1, 2010 I did the image wont appear.. Link to comment Share on other sites More sharing options...
taietel Posted November 1, 2010 Author Share Posted November 1, 2010 (edited) When you run it it will appear a slash text ("Wait! generating mosaic...") and after few seconds the gui with the images overlapped. Something like this: http://img840.imageshack.us/img840/1531/mosaicju.jpg The script uses jpg's, but you can add bmp's also. Edited November 1, 2010 by taietel Things you should know first...In the beginning there was only ONE! And zero... Progs: Create PDF(TXT2PDF,IMG2PDF) 3D Bar Graph DeskGadget Menu INI Photo Mosaic 3D Text Link to comment Share on other sites More sharing options...
eracross Posted November 1, 2010 Share Posted November 1, 2010 Oh i see it wont work with 2 photos..needs more pics.hehe thanks nice work Link to comment Share on other sites More sharing options...
JohnOne Posted November 1, 2010 Share Posted November 1, 2010 For example purpose, perhaps yopu should change the line Local $PathToPhotoDir = @ScriptDir&"\Foto\" with Local $PathToPhotoDir = FileSelectFolder("Select Folder","") & "\" AutoIt Absolute Beginners Require a serial Pause Script Video Tutorials by Morthawt ipify Monkey's are, like, natures humans. Link to comment Share on other sites More sharing options...
taietel Posted November 1, 2010 Author Share Posted November 1, 2010 Thanks John, I've modified it (first post). For example purpose is indeed more handy than modifying the script. Things you should know first...In the beginning there was only ONE! And zero... Progs: Create PDF(TXT2PDF,IMG2PDF) 3D Bar Graph DeskGadget Menu INI Photo Mosaic 3D Text Link to comment Share on other sites More sharing options...
Skrip Posted November 1, 2010 Share Posted November 1, 2010 somdcomputergui, done! Remains only one place to replace (updated first post).Ah, much better! That is awesome! [left][sub]We're trapped in the belly of this horrible machine.[/sub][sup]And the machine is bleeding to death...[/sup][sup][/sup][/left] Link to comment Share on other sites More sharing options...
JScript Posted November 3, 2010 Share Posted November 3, 2010 @taietel Magnificent! Are you just keep proving that creativity and imagination to do a thousand things with a simple code. This forum needs people like you, keep it up; You're the man! http://forum.autoitbrasil.com/ (AutoIt v3 Brazil!!!) Somewhere Out ThereJames Ingram Download Dropbox - Simplify your life!Your virtual HD wherever you go, anywhere! Link to comment Share on other sites More sharing options...
1957classic Posted November 3, 2010 Share Posted November 3, 2010 Nice script! Works great on Win7/64 Link to comment Share on other sites More sharing options...
SUB0DH Posted November 4, 2010 Share Posted November 4, 2010 Nice work. I think it would be better if the generated mosaic could be saved as an image. It would also be better if images used in the mosaic wouldn't repeat itself. Link to comment Share on other sites More sharing options...
taietel Posted November 4, 2010 Author Share Posted November 4, 2010 1957clasic, it's good to know! I'm on 32 (XP and 7) and no chance to test it myself.. SUB0DH, I know that. The script posted is just an example. Rest is up to you. Things you should know first...In the beginning there was only ONE! And zero... Progs: Create PDF(TXT2PDF,IMG2PDF) 3D Bar Graph DeskGadget Menu INI Photo Mosaic 3D Text Link to comment Share on other sites More sharing options...
Recommended Posts
Create an account or sign in to comment
You need to be a member in order to leave a comment
Create an account
Sign up for a new account in our community. It's easy!
Register a new accountSign in
Already have an account? Sign in here.
Sign In Now