Advertisement

Results for "Category: Graphics/ Sound"

2002ASP #8036
^! A dos based GUI and event driven program using TC++(full source code)

A freehand drawing application that resembles MS Paint of Windows as a example with which you can create a good graphical user interface (GUI). It offers the power, versatility, and flexibility of C/C++ language. VOTE FOR ME PLZ!!!!

2002ASP #8087
Have Any Web Page Spoken

New Version of SpeakIt! reads and speaks any page on the Internet using animated characters and allows web page designers to create animated speaking presentations in 11 different languages using any one of 5 supported MSAgent Characters. It should be noted that this is the ONLY utility that allows you to add Microsoft Agent Presentations to your web pages with no SCRIPT of any kind, no VBScript, no JavaScript, Nada! If your web page visitors are missing ANY required software to present your animated speaking presentation, it will be installed automatically from Microsoft using ActiveX. Even if your web page visitor does not have any Microsoft Agent Characters the play sequences in your presentation will be retrieved from the Internet without any need for your web page visitors to manually Download anything. We have been told by people who have installed SpeakIt! that their web page visitors have increased. They say this is because people tell friends and family members about a utility that can read and speak ANY web page on the Internet using animated characters. Not only do your web page visitors get to see your special presentations, but they walk away with a useful utility that they can use anywhere on the internet. One of the changes to this version allows you the web page designer to decide if you want to Invoke SpeakIt! on a web page, even if the web page visitor has not yet clicked on the SpeakIt! gif to download SpeakIt!. This means you can always make sure that your SpeakIt! presentation is presented to every visitor who visits that page.

2002ASP #8148
Read Image Dimensions

Allows you to read the width and height for GIF, JPEG (JPG/JFIF), Bitmap(BMP), and PNG files. You can upload a file or load a binary file from the server in the demonstration. This is great when you allow users to Upload files and need to ensure that they fit within a specific set of boundries (ie - uploading banners). Update - Now supports AVI, MOV, MPG/MPEG, and SWF with support from my brother Lucas Moten. JPEG files have also been fixed to read correctly.

2002ASP #8149
Oppisite Colour2 (HEX)

Grab the opposite 6 character HEX color. This sums up David Weirs Color invert script with just one line of code. See his original code at http://www.pscode.com/vb/scripts/showcode.asp?txtCodeId=7176&lngWId=4 Be careful when comming close to middle gray scale (808080). opposites are same.

2002ASP #8160
Dynamic Pixel Image

Allows you to create 1x1 images of any color including transparent images. (Images can be streatched by defining height and width in image tag)

2002ASP #8161
Color Picker 2

This version of the Color Picker supports just about any browser that uses javascript - Including Netscape 3. The downfall is that you "must" run it with a server that allows ASP. A script is included to create "dynamic" images of various colors. Thus - more bandwidth is used to allow visitors to choose colors. It is still a great asset to anyone who wishes to allow users to pick colors dynamically to affect the sites layout and design instantly.

2002ASP #8214
Scalable Vector Graphics Charts (SVG) with ASP, Version: Beta 1.0

I originally posted SVG code on 10/12/01 that rendered charts using HTML and VBScript. ** On 1/31/02 I have posted a JavaScript version ... check Java/JavaScript site for code or visit my website at home.att.net/~p.walchli **. This code creates the charts utilizing ASP by creating the SVG image on the fly and in a "virtual" page. As with the HTML version, this one is also a Beta version. The colors are ugly and the layout is weak. But, on the bright-side, it's functional. I'll post improvements as time allows. To test this code you will need to create a database, table, and three fields. I have included the information from my database in the ReadMe.txt file included in the zip file. If you use the field names above, all you should need to do is change the database name in three files: Default.asp, incBuildPage.asp, and incBuildSVG.asp. If you do a search/replace for "YourDatabaseNameHere" you'll find the line number of where the connection is. If you have any questions, please contact me at p.walchli@att.net. Paul

2002ASP #8215
Scalable Vector Graphics Charts (SVG) w/ HTML, Version: Beta 0.1

** ASP VERSION POSTED 11-14-01 ** ** On 1/31/02 I have posted a JavaScript version ... check Java/JavaScript site for code or visit my website at home.att.net/~p.walchli **. This code is based on what I have posted previously using Vector Markup Language (VML). This code is written in VBScript and SVG. You will be presented an interface that allows you to enter values, pick a chart type, and render the chart to the screen. What you'll see are very basic charts (boring visually) but you will gain the understanding on how you can create SVG charts on the fly with VBScript. What you'll see rendered is well below what you are capable of creating using SVG (there are no animations or transformations). That is the main reason for naming this posting Beta 0.1. In order to view the pages correctly you must 1) download and install an SVG Viewer. 2) Copy the file (included in the zip file) Chart.svg to the root directory of your C: drive (C:\). You can change this location in the code if you wish. 3) Copy the remainder of the files into the same directory on you drive (SVGCharts or whatever). Finally, if you are interested in SVG, I highly recommend Andrew Watts' new book on SVG by New Riders: Designing SVG Web Graphics. The book is well written and you'll find it easy to apply its concepts. Please let me know if you have any comments or suggestions for the code. I can be contacted at: p.walchli@att.net. I do intend to post updates (integrating animation and transformations) as time permits as well as an ASP version sometime in November. Happy coding!

2002ASP #8216
Vector Markup Language (VML) Charts Version 2

** On 1/31/02 I have posted a Scalable Vector Graphics/JavaScript version ... check Java/JavaScript site for code or visit my website at home.att.net/~p.walchli **. Create VML Charts on the fly with ASP. This is (finally) Version 2 of what I previously posted. I have included five files (VML.asp, BuildPage.asp, BuildLineChart.asp, BuildBarChart.asp, and BuildPie.asp) that will show you how to choose a chart type, enter some values and build the chart. As I have mentioned before, and do so in each file, VML does not render in anything but Internet Explorer 5.0 (IE 5.0). IE 5.5 seems to have some quirks rendering text … I have not worked on a work-around as of yet. I have also not tested the code in IE 6.0. Please let me know how it works if you do. That said, VML is excellent for a controlled environment using IE 5.0. I would also plan on one day converting your VML over to Scalable Vector Graphics (SVG). SVG will be (at least it appears that way today) far more widely supported. Contact me with any questions or if you find any bugs. Enjoy!

2002ASP #8217
Vector Markup Language (VML) Line Chart

** On 1/31/02 I have posted a Scalable Vector Graphics/JavaScript version ... check Java/JavaScript site for code or visit my website at home.att.net/~p.walchli **. Create a line chart dynamically with Vector Markup Language (VML). I wrote this code to dynamically create a line chart on an internal website. It actually runs as an ASP page, with the data for the chart being passed from a SQL server. For posting this example I changed the code to run in HTML & VBScript. I intend to post the ASP version and a Pie Chart done in VML in March, 2001. The downloadable code is fully commented and explained (as best I can). FYI: If you wish to use this code in ASP and connect it to a database, you'll need to convert the VBS document.write tags to response.write ...

2002ASP #8398
Dynamic Surveysystem v1

Dynamic Surveysystem v1 Just take a look at the best: -Simply administration functions (like all of my programs) -Premade grafics -Totally dynamic: You only have to edit ONE file and my program modifies all the others automatically. -Cookie based voting: To prevent one user voting several times. Just download it and enjoy this great Surveysystem coded by Guo Xu. You won't be dissappointed. And by the way, don't forget to vote for a 15 years old asp programmer ;) This code was tested on Win 98 SE/PWS and Win2K Server/IIS5. To create or edit a survey just load setup.asp from your browser once setup.asp is uploaded to your server. Of course you can change the grafics of the surveybars. The easiest way is to open the default grafic in the grafix folder and modify them in an Editor like Photoshop, Photo Impact, Fireworks. NOTE: You better dont modify the size of the grafix. If you do some errors may occur.

2002ASP #8423
Bar Graph

An ASP bar graph. Easily customized and great examples. Customizations include Top Padding, Side Padding, Bar Width, Bar Padding, (Only if bars are in groups.) Group Padding, Number of Groups, Number of Bars Per Group, Maximum Value Values For Each Bar, Colors of Bars, and Titles Of Each Bar! The inputs are all at the top of the code with explanations. Nicely blocked off for your convenience. I have not tested this with Netscape. Please let me know how it does. You can only have a maximum of 18 bars due to restrictions from style properties. This problem is easily breached by using javascript. If you would like that code please email me @ checkerman_1985@yahoo.com

2002ASP #8516
ibrowser

i-browser this script is an-asp based image browser which will show all the images in your specified folder in a navigable format. it can also delete images. It also shows the subfolders of the current folder in view.

2002C #15858
Morphyx MP3 Encoder

An MP3 encoder using a GUI. Very simple, easy-to-use program that gives you the option of using two encoding engines. The GUI was written in Visual Basic, but the encoder was written in C. Enjoy!

2002C #15883
Gravity Works!

Gravity Simulator that uses the OpenGL Libraries. I used the GLUT event handler interface to control Mouse functions. Found at: http://modzer0.cs.uaf.edu/~hartsock/C_Cpp/OpenGL/Gravity.html

2002C #15931
Visual C++, Window Creation, Line Drawing/Basic Win32 Game Programming, Looping Therory

The purpose of this is to show various Win32 Methods and some Theory. It creates a Win32 Extended class, it then Creates and Extended Window, it then starts to show that basics of Win32 Game Programming, that is an infinite loop. This shows a good theory of how to initialize variables in game programming. At first my approach was to initialize the variables in the loop and use a BOOL to say it was the first time in the loop, then on my third look at how the code was working I found the fastest way to set the first time variables, outside the loop, rather than having the computer check an if statement was true, this was the theory. This programme starts at a random position (the initializing theory), (in the loop) draws a line to a new random position, then sets the end of the line to the beginning of the new one (this is where the loop ends).

2002C #15932
Particle Engine

This program shows how a 2D particle engine works. It's not the best code but it gets the job done. I know it could be greatly optimized but I just needed the code like this.

2002C #15941
circle

demonstrate how to make a circle with out using the provided circle command. for those of you who have ever need to make use of the symetry of a circle here's a program that will help. The code provided is made into a simple screen saver

2002C #15944
Fire Effect

A simple fire like effect is drawn onto the screen.

2002C #15951
A Sonique Visual Plugin

Hi Everyone, I'm Very New At This, I'm Usually Found In The VB Section. This Is My Very FIRST C++ Application! I Just Thought I'd Let You Know How Simple It Is To Make A Sonique (www.sonique.com) Visual Plugin. It's Shows The PCM Waveform Of The Mp3 You Are Playing, And Has A Cool Colour Changing Effect. Please Note That This Code May Be Very Sloppy. It Is Also Un-commented, But If You Ask, I Shall Upload An Annotated Version. (P.S. This Has Only Been Tested On Sonique 1.51.0 , And Pleassseeee Vote And Give Comments.)

Languages
Top Categories
Global Discovery