@BasicallyPure
Absolutely fantastic. Thanks for the additional code. This just keeps getting better and better.
Search found 4 matches
- Sat Nov 11, 2017 3:52 am
- Forum: Tricks 'n' Tips
- Topic: Simple Pixelation Effect for Images
- Replies: 9
- Views: 3597
- Thu Nov 09, 2017 4:59 pm
- Forum: Tricks 'n' Tips
- Topic: Simple Pixelation Effect for Images
- Replies: 9
- Views: 3597
Re: Simple Pixelation Effect for Images
Thanks for the code addition Andre. I am going to check it out.
- Sat Nov 04, 2017 2:23 am
- Forum: Tricks 'n' Tips
- Topic: Simple Pixelation Effect for Images
- Replies: 9
- Views: 3597
Re: Simple Pixelation Effect for Images
Crudely Animated:
OpenWindow(0,0,0,675,350,"Test_Pixelation_Effect",#WindowFlags)
ImageGadget(0,25,25,300,300,0)
LoadImage(0,"c:/pic2.jpg") ; change this to one of your images
d.d = 10
For i = 100 To 1 Step -1
CopyImage(0,5)
ResizeImgAR(5,GadgetWidth(0)/d,GadgetHeight(0)/d)
ResizeImgAR(5 ...
OpenWindow(0,0,0,675,350,"Test_Pixelation_Effect",#WindowFlags)
ImageGadget(0,25,25,300,300,0)
LoadImage(0,"c:/pic2.jpg") ; change this to one of your images
d.d = 10
For i = 100 To 1 Step -1
CopyImage(0,5)
ResizeImgAR(5,GadgetWidth(0)/d,GadgetHeight(0)/d)
ResizeImgAR(5 ...
- Fri Nov 03, 2017 10:29 pm
- Forum: Tricks 'n' Tips
- Topic: Simple Pixelation Effect for Images
- Replies: 9
- Views: 3597
Simple Pixelation Effect for Images
I was looking around the forum for an image pixelation effect but could not find any so I did some tinkering and came up with this. It creates a pixelate effect from just simple code. Change 8 to increase of decrease pixels size. Best to choose a number from 5 to 10 for best appearance. Any number ...