Advertisement

Results for "Category: Graphics/ Sound"

7_2009-2012 #236429
Jigsaw game in VB.Net

To code a Jigsaw is a good way to learn about GDI+ image manipulation capabilities. In this case, the game presents shuffled pieces generated from an jpg/gif image that the user have to sort before the ballon reach the top. Vote & enjoy.

7_2009-2012 #236430
Tweening animation

You can do animation in 2D with this technique called keyframming (or tweening). To do so, I used GDI and some math. Enjoy and vote.

7_2009-2012 #236442
MIDI player

This code demonstrates playing a MIDI file on Windows.

7_2009-2012 #236443
Convert Magic

This is an image converter for BMP, GIF, JPEG, PNG, and TIFF. There's a demo at http://www.coolgroups.com/cm/.

7_2009-2012 #236568
Transition effects class with GDI+

Class to generate 55 diferents effects beettwen images. This is the OOP version of my old article "PowerPoint image Effects" and with many more effects.

7_2009-2012 #236717
Per-Pixel Alpha-Blended Clock

You may have seen other programs on the internet that offer programs with alpha-blended forms. An example would be Konfabulator, DesktopX, ObjectDock, just to name a few. What you may not have known is that you, too, can create great alpha blended forms easily using "layered windows". If you search PSC for "layered windows", you will find (besides this) a few programs that have transparent colors or that let you make an entire form one set amount of translucency. However, just being able to choose between making your entire form slightly translucent, or making one color transparent is rather limiting. What if you want to make a form that has a particular section partially translucent? What if you want to have your form anit-aliased on the edges? What about window shadows that fade away as they fall farther from the form? Now, with the included class, you can do this all and more. I built a fully functional clock application just as an example. First, I designed a few PNG files for the diferent faces of the clock. Since PNG files store alpha information, I created shadows and partially translucent parts in the PNG. Basically, at runtime, "hands" are drawn onto the image to complete the clock once every second. You can drag the clock around and even set it to stay on top of all windows. I wrote this with Visual Basic .NET 2005 Express. If you still have 2003 or below, you can download Visual Basic .NET 2005 Express for free from the MSDN site. I don't think the code will work on anything below 2005.

7_2009-2012 #236739
qpEngine

qpEngine is a 2d rendering engine with 3d elements. Supports 8,16,24 & 32 bit modes. Features: aligned fills, RLE compression, decompression and blits, alpha transparency, affine and perspective correct texture mapping. New: Added MMX copy/fill routines, blits & fills are around %20 faster. Modified rle blitting & conversion code. conversion is almost %300 faster. The texture mapper is totally redesigned. now there are no restrictions on texture dimensions or size. We're using an active edge list, so polygons no longer need to be decomposed to triangles, and we are no longer restricted to convex polyhedra. This should handle any non-complex polygon. Performance wise we have cut down edge calculations for anything with more than three verts, and overall mapping is around 40% faster. Also the vector library has been overhauled, although at the moment it's still pretty experimental.

7_2009-2012 #236934
The Truth is Out There Demo

This is wannabe-demo.it's done in opengl using GLUT with c (compiled on windows machine using VC++6).3d earth rotating around the sun and the stars are shining and there is also some alien spaceship and xfiles music.It shows the basics of OpenGL(glut,user input,sphere mapping,playing music,lighting).it's really basic code and everyone should understand it.I used .raw textures, because they are easy to handle and easy to understand for beginners. ssk,comment,vote :)

7_2009-2012 #236948
Barcode Generator

This package implements a Web interface to generate barcode images according to well-known barcode formating standards. Currently it supports the following barcode format standards: Codabar, Code11, Code39, Code93, Code128, EAN-8, EAN-13, ISBN, Interleaved 2 of 5, Standard 2 of 5, MSI Plessey, UPC-A, UPC-E, UPC Extension 2, UPC Extension 5 and PostNet. The output images generated according to most of the standards have been tested with a barcode reader device to confirm that they are correctly generated. The classes require at least PHP 5.0.3 due to a bug in PHP found in previous versions that affects mainly the Code128 generation class. The PHP GD 2 extension is also required.

7_2009-2012 #237081
MediaPlayer 10

Media Player 10 EXAMPLE

7_2009-2012 #237216
A FUNNY CIRCLE

FUNNY CIRCLE

7_2009-2012 #237307
ExplosionEngine

This is an explosion engine of SPACESCR. You can see an explosion in the screen. It's colorful and random, at all.

7_2009-2012 #237357
Rotate bitmap with Graphics

If you rotate an image it is no problem using Graphics.RotateAt Methode in .Net. But if you want to rotate it back or calculate some stuff on the picture data you loose the edges. Here I show you my example how to calculate the image without loosing edges. It it works, please vote ;-)

7_2009-2012 #237358
Simple to use graphical ProgressBar

Shows an progressbar for any application. Uses graphical elements like 1000 times seen. But by using the color matrix system it will be very nice to change effects by using less code. With smoothing mode and an option to write the process value in the bar.

7_2009-2012 #237373
Image Factory v1.0

Image Factory v1.0 - Digital Image Processing Software System. Convert, Import, View, Resize, Rotate, Flip, Enhance, Share, Organise & Print your Images. Very first version, used pure .NET code. I have tried hard to make it a usefull software. If you find any bug please mail me. And please vote if you find it usefull in any way.

7_2009-2012 #237375
Pattern Thinning Module

This is an image processing module. The application produces the skeleton of the pattern. First you draw a pattern in the picturbox. Then thinning process begins and shows you one-pixel-thick skeleton view of the pattern. Lots of character recognition systems use thinning step in their applications. My application can be used by the programmers who interest in OCR or ICR. I used the thinning algorithm which is discovered by Lei Huang, Genxun Wan, Changping Liu.

7_2009-2012 #237376
Digit Recognition Module

This is an digit recognition application. (OCR or ICR application). First you draw a digit in the picturebox. Then the image processing begins and recognize the digit and returns you the result. I used correlation matching algorithm for character recognition and k-neighbor classifying algorithm to select the true digit. Database includes handwritten digit examples which are collected from a hundred persons. These digit images converted to binary type before added to the database.

7_2009-2012 #237446
Original SINe

This small VBscript (HTA) app is sort of like a screen saver you can tweak and play with. It's an old idea dating way back to the C64 era, sprites moving around in sine wave. I first made this with GIFs,then eventually DIVs with a wingding character in it. This lets me colour each sprite and set the size with style.FontSize (which is too slow to do in the mainloop unfortunately), but now I don't need graphics so it's standalone. Some of the text boxes use EVAL() which adds even more scope, but at the price of a big CPU hit. It runs OK on my dinosaur PC though (Pentium 3 450MHz) Save it as HTA and run it (or HTML,it isn't bothered) (This is a repost because I uploaded it to VB by mistake) Have fun! Alan.

7_2009-2012 #237460
A very simple BMP (bitmap) loader

This little code shows you how easy it is to load a bitmap into your window! I programmed this as simple as possible so most people can understand it and use it in their games and other programs!

7_2009-2012 #237476
Pure ASP VML Pie Chart #2 [update Jan-02-2005]

## Draw Pie Chart with Pure Asp## I have download the original code from this link: http://www.aspin.com/func/content?tree=aspin/tutorial/graphics&id=4027210 I have modify to class for easy to use , enjoy it. Fixed bug: Jan-02-2005 - Calculate X, Y Pin percentate align.

Languages
Top Categories
Global Discovery