Simple Image Tiling in C#

14 May

So, you want to cut up an image into tiles?  Here is a simple C# class, ImageTile, that lets you provide an X and Y grid size and slice up a source image.  

Usage is pretty simple

Read More »

Read a file to a string in a single line of Java

23 Jun

Rarely in my career have I written significant amounts of Java, so when I do use it I’m always learning new things.  I thought this unique way to use Scanner to read a text file into a string was great:

Nice … Read More »