Results for "Category: Graphics/ Sound"
Just For Users Enjoyment.
ScreenCapture.vb is a .Net class that allows you take a screenshot (printscreen) of the desktop, or part of it, or of the active window, or of any window you got the HWND from. It doesn't use sendkeys or the clipboard, this is a proper implementation with API. Basicly the class exists out of two shared functions that are overloaded a bit, give me a vote if you like it. Usage: PictureBox1.Image = ScreenCapture.GrabScreen() PictureBox1.Image = ScreenCapture.GrabActiveWindow() PictureBox1.Image = ScreenCapture.GrabWindow(SomeHwnd) PictureBox1.Image = ScreenCapture.GrabScreen(X, Y, Width, Height) PictureBox1.Image = ScreenCapture.GrabScreen(Rect) PictureBox1.Image = ScreenCapture.GrabScreen(Location, Size)
Edited quote from www.boutell.com: "GD is an open source code library for the dynamic creation of images by programmers. GD creates PNG, JPEG and GIF images, and is commonly used to generate charts, graphics, thumbnails, graphs, text and almost anything on the fly." For a demonstration of this project: http://www.pinnacle.co.za/gif/dynamicgif.asp - Press F5 to refresh and see a new random image. Read more here: http://www.codeproject.com/asp/GDLibraryWrapper.asp - 3 ASP examples included! Readme.txt included. What can it do? An image can be created/loaded, drawn on, saved to file/database or sent to a browser in less than 5 lines of code! Read/Write directly to BLOB/Image types in SQL.opening a file and writing a copyright message on it or adding a watermark/logo. Creating pie charts or graphs for stats. Drawing lines, pixels, circles/ellipses, gradient fills (this dll only, thanks to my best friend, L). Writing horizontal/vertical text. Loading/saving to file/database (BLOB/Image data type). Store and load an image in SQL, and output it dynamically to a client. Or first write something dynamically on it and then output it to a client browser. Upload an image to the server, change the file dynamically (like resize it, or write a message on it, or change it's format) and save it back to file for use later. The uses are endless! I hope people will vote, simply to show others the quality of this project, as I invested a lot of time to code/test/debug this project & research GD Library. NB: This project is not for the faint of heart, it might take time before you need this or have the skill set to use it! PS: You will need to compile this code in VB6 and download the GD Library DLL from www.boutel.com/gd/
it is just a simple but exquisite animation.
Play music directly to PC's Internal Speaker
This is a code that plot functions , 100% working and with a good quality.. Functions like cos, tan , sin or even any complex function like : (30+10)((cos(x)+ sin(x/0.8))x^3).. just check it yourself and please dun forget to vote for this code if you liked it..
Simple Audio Player, shows how to load up a DX9 initialized video into a controllable Picturebox. Also displays some other techniques for .Net like OpenFileDialog, ResizeEvents in .Net, and how to load up pictures at run time in .Net.
Randomizes images on your web page so that viewers will see a different picture each visit or refresh. I did this script to add a little diversity to my personal site.
Why load DirectX to play a sound when you can just call the Windows library?
OpenGL 3D Cube with reflections. The code is written in VC++.NET with Win32 and is using the GL headers
It's a little 3D experiement with C# and GDI+. All I did was mixed in some trig, some drawing functions, and a little alpha-blending. And presto! http://www.stronglytyped.com/software/glass3d/index.html
This tutorial will give you the knowledge to use Microsoft Direct X 9 to play music in your applications. We will do this by using the Direct X 9 Audio class.
Resamples an uploaded image to 75% jpeg, without changing the ratio! If x and y size is equal, the image will be [100px]*[100px]. If x is bigger than y, the image will be [150px or less] * [100px]. If y is bigger than x, the image will be [100px] * [150px or less].
Cube Game ver 1.5 (opengl) You need to order the Cube by Color (everyone know this game) this 3d Game need a fast computer if the cube move slow then you need better graphics Card this a beta version and i will improve it (please Excellent me!!)
shows you how to create effective and good window
Class that draws Pie Graphs.
ALPHABLEND CROP AND INVERT IMAGE
This is awesome!!! G-Text is now a fully customizable, graphical text designer. What does that mean? Well, this thing is great for making text with wonderful effects that can go into a website or anything! It saves images to BMP, GIF, JPG, or PNG. Download now, but don't forget to vote! UPDATE INFO: > You no longer need to press DRAW TEXT: Auto-Redraw now! > Save in 4 different file formats > Load and Save settings > Properties pane > Much more... download now!
hey, this is a brilliant work on the basics of c++ graphics. check this out.. briiliant for understanding graphics applications
This is my first approach to the amazing graphic's word. This code is a picture viewer, which can apply some effects like, rotate, zoom, sharpen, smooth, etc. All this, using new GDI+ and without any line of API code, because the new .NET classes can operate pixel by pixel. The code shows also how to use MDI environments, Clipboard class and open/save dialogs. This code is just an EXAMPLE you can use freely as a base to build real complete image processing applications. Any comment or improvement would be welcomed. I must say that some of the graphic algorithms are based on the excellent book "Mastering Visual Basic .NET" auth: Evangelos Petrousos , which I strongly recommned. Finnally, just say that the code is fully commented to make easier understanding.