Advertisement

Results for "Category: Graphics/ Sound"

ASP_Volume2 #42831
Gallery Image with Zoom

This is a simple Image Gallery to automatic show all existing images in a folder. Just click one image to open it in a zoom popup window. See it in action: http://www.industriavirtual.com.br/codedemo/gallery/default.asp Please Vote!

ASP_Volume2 #42869
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.

ASP_Volume2 #43169
Dynamic Font Display Function

Allows you to dynamically build graphical font displays. Useful for page headers, especially if the change a lot. Also useful for pages created from templates! Now you don't have to create each header manually in your favorite graphics program. Have this function do it for you! Works with any graphical alphabet - download them from the web or create your own.

ASP_Volume2 #43181
Pie Chart class

Simple class that uses GD to draw pie charts. After the class definition there's some sample code to demonstrate how you use the class. by Bjørn Borud

ASP_Volume2 #43334
Image Gallery

** Updated! ** Removed some bugs, comments are now supported, changed the layout just a bit, and added a light and dark css style. Still in the works is the admin portion and a who's online. ------------------------------- This is a 1 file does all Image Gallery. FEATURES: No database is required - Individual user accounts - Sessions (so you dont have to keep entering username/password) - Email verification (if set) - Proper file uploading via POST. None of that crappy "copy" ;p - CSS stylesheet (embedded) - Automatic thumbnail creation with drop shadow - Thumbnail cacheing - individual image hit counter - All of these features all inside one script!

ASP_Volume2 #43353
Image ratio resampler

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].

ASP_Volume2 #43474
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.

ASP_Volume2 #43497
csMovieLibraryPro v2.0 with Example Application

A powerful Class Library for pretty much all of your movie playing needs. No 3rd party controls or DirectX to worry about. Uses the established MCI command interface. Designed to be easy to use, understand, and implement. The compiled Library is only 32KB. The Class was written in VB.Net. But once the Class is compiled, it can be used by any .Net language. Add COM Interop if you want to use it for the Classic Visual Basic versions. This Library includes over 55 subs, functions, and propertys to make a full and feature rich movie application. Some of the features include: Getting the movie and audio status. Get or Set the playing position in frames, millseconds or seconds. Get the length of the movie in frames, milliseconds or seconds. Get the nominal frame rate and frames per second. Play the movie in a child window or the default window. Play the movie in full screen or custom tune the location and size of the movie. Set the volume level for each channel separately or set the level for both channels. Shutdown the audio or video output. Can even change the speed at which the movie plays. There are many more features available that I don't have time to write. In this Class Library I include a simple Application to show some of the features or to get you started on using the library. This Library took a bit of time and work to build. So, it would be nice to get some feedback and comments on how to improve it. Please feel free to vote and visit my website at: http://www.vbcodesource.com. Hope you find this Class Library useful and beneficial. Note: the .dll file will most likely be stripped from the zip file. So, you will most likely need to recompile the Class Library project.

ASP_Volume2 #43570
Image 2 HTML

Converts an image to HTML table cells. Probably done many times before. This one also creates javascript to invert the image 1 pixel at a time.

ASP_Volume2 #43576
Animate an animate gif

thanks to the ImageAnimator class you can easily animate an animate gif on your form. change the gif location in code to one on your system of your choice then run the batch file to compile.

ASP_Volume2 #43599
TabPage XP

I keep seeing messages posted about the lack of support for Visual Styles in TabPages. Well, I thought, that can't be too difficult to overcome, and I was right it wasn't. OK so I already knew how to use the API's from VB6 and it was simply a case of getting those to work in DotNet(not quite as simple as I'd like). One problem though, I am using VS2003 Beta so this project will not load in VS2002. However, the TabPageXP.vb file is just plain text so you can add that to a VB2002 project, and really thats all you want. Full instructions for usage supplied in the TabPageXP Class file.

ASP_Volume2 #43601
AlphaFix

Tired of those ugly black shadows you get from WindowsXP Alpha Icons? Sure DrawIcon solves the problem, but sometimes you just want to pass a bitmap, created from an Icon, to an Image property. This project shows you how.

ASP_Volume2 #43672
Picture Browser

This project shows how to combine treeview, listview & GDI+ classes in a picture browser application. Some of codes collected from the net & retouched and the others written by me. If you like do not forget to vote! Thanks in advance

ASP_Volume2 #43828
VB.NET Pie/Bar chart class.

I didn't care for the examples of pie charting out there so I created my own. This contains 2 projects: Graphing and a GraphingTestApp. Pie/Bar(Horizontal and vertical). Working on a line graph some of the line graph code is in this version. Can be used in ASP.NET. I actually cleaned up the encapsulation. The new version is easier to create piecharts and bargraphs. Should work in a Windows App and a Web App.

ASP_Volume2 #43838
Programming graphics in visual basic.net

This article explains how to use the new GDI+ system with vb.net, this is the replacement for the old graphic drawing functions with loads more features.

ASP_Volume2 #43852
Transparent Bitmap Maker(32 bit depth BMP)

Here is a program that makes a Transparent bitmap that can be pasted on any other Image in .NET programming languages.

ASP_Volume2 #43967
ScreenCapture

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)

ASP_Volume2 #43980
Simple Video Player Using DX9

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.

ASP_Volume2 #43989
Play sound in C# without DirectX

Why load DirectX to play a sound when you can just call the Windows library?

ASP_Volume2 #43995
glass3d: 3d wine glass

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

Languages
Top Categories
Global Discovery