Vector Graphics A free program that creates vector images is Inkscape Inkscape does not draw raster graphics. It creates .svg files You can on the other hand save a .png file but it is just a raster snapshot of the image. So what the heck is a .svg file? (scalable vector graphic) It is a xml text file that store information about objects that are drawn. The image to the right has three objects. The main thing to note is that we can grab the object and move them around at any time. We CANNOT do this in Paint.net since it paints pixels to the image and then forgets the object you are painting. Try it. Here is the start of a xml-svg file. <?xml version="1.0" encoding="UTF-8" standalone="no"?><!-- Created with Inkscape (http://www.inkscape.org/) --><svg xmlns:dc="http://purl.org/dc/elements/1.1/" xmlns:cc="http://creativecommons.org/ns#" xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:svg="http://www.w3.org/2000/svg" xmlns="http://www.w3.org/2000/svg" xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd" xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape" width="744.09448819" height="1052.3622047" id="svg2" version="1.1" inkscape:version="0.48.2 r9819" sodipodi:docname="New document 1"> The name of this language is XML (extended markup language) Its also heavily used in web pages. You can make these guys any size you want and you get no pixelization. Cool. From within Inkscape you can export the image in any size you want to a .png file or you can save as .wmf or .emf files which CAN be inserted into powerpoint Office doesn’t speak .svg