Skip to main content

Fresh Paint - Windows 8 app

I recently found this great app, really superb. Give it a try. Here is the official description:
Meet Fresh Paint – a delightfully realistic and fun painting application for you and your family.
Fresh Paint is an easy-to-use, free app that includes oil paint and all the tools you need to paint.
Whether you are an aspiring artist, parent or child (or child at heart), Fresh Paint will help you unleash your inner creativity.
We believe that brilliant, creative ideas can come from anyone, anytime. It’s time to set your creativity free.
Welcome to Fresh Paint – the canvas for your big ideas.

Fresh paint windows 8 app screenshot

Features
  • Experience highly realistic oil paint. It works just like real oil on a canvas, but just a little easier.
  • Paint without the mess, clean-up and costly supplies.
  • Help your kids be creative and explore their imagination.
  • Blend and mix paints to get just the colour you want.
  • Turn your photos into paintings with Fresh Paint. Import a photo, and then just brush and blend the colours to transform your picture into a beautiful oil painting.
  • Purchase painting templates to help you improve your skill, or purchase colouring pages to help your kids explore their imagination.
  • Choose from different brushes and change your brush size.
  • Erase paint with the eraser and correct any mistakes with the Undo button.
  • Click the Fan button to instantly dry all the paint on your canvas.
  • Paint in the way that is most natural for you. Get hands-on and finger paint, use a stylus or even a mouse or purchase a capacitive paint brush and paint.
  • Easily share your paintings with people you care about. Just swipe from the right edge of the screen and tap “Share.”
  • More than just a digital painting program; Fresh Paint helps you bring your imagination to life.
  • Now available – Disney•Pixar Finding Nemo Pack!
I find it difficult to paint using mouse(may be need little more experience), but really impressive with trackpad.
To install it click here or search it in Windows Store.

Comments

Popular posts from this blog

Java: Use BigInteger in for-loop

In my previous post , I mentioned a way to handle large integers by using BigInteger. Now I'm going to provide a very important usage of it. We often use for-loop. So here is the way to use it: Ordinary integers: for(int i = 1; i <= n; i++) {  //Task to do } BigInteger: for (BigInteger bi = BigInteger.valueOf(1);                 bi.compareTo(n) <= 0;                 bi = bi.add(BigInteger.ONE)) { //Task to do } here n is a BigInteger variable.

OS X 10.8 Mountain Lion bootable USB (without MAC)

Download the raw file from here . How to use: 1 - Copy the .raw file to an USB stick using  SUSE Studio Image Writer . If you have error during copy, eject and re-connect the pen drive. When Windows asks if you want to format it, cancel and run Image Writer again. If the problem persists, disable your anti-virus software, it may be blocking raw write to the drive. Another Image Writer for Windows, if SUSE doesn't work https://launchpad.net/win32-image-writer/+download 2 - Boot the USB drive and install. If you need, type  boot options , for example: -v (verbose boot) [default] -x (safe) -s (single user) GraphicsEnabler=yes (enable graphics card drivers) [default] USBBusFix=yes (fix problems with USB devices) npci=0x2000 (use if boot stops at "PCI configuration begin") cpus=1 If you need, use  TransMac  to remove kexts which are causing problems (System/Library/Extensions) and use the flag -f (ignore caches) at boot, or remove /System/Libra...

Anagram search from a file

// All the words are in the file Dictionary.txt import java.io.*; import java.util.*; public class Anag {     static String[] words;     public static void main(String args[]) throws IOException     {         Hashtable<String, List> ht;         try {             FileInputStream fstream = new FileInputStream("Dictionary.txt");             DataInputStream in = new DataInputStream(fstream);             BufferedReader br = new BufferedReader(new InputStreamReader(in));             List<String> lines = new ArrayList<String>();             String ele;             while ((ele = br.readLine...