 |
Alpha DIBSections
|
Total Hit (2641) |
This article provides an enhanced DIBSection class which allows you to create and draw images with per-pixel alpha. The alpha component of a pixel allows you to determine how transparent you would like a pixel to be. This concept is being increasingly used in the Windows UI to enhance the user exper
....Read More |
Rating
 |
|
 |
256 Colour DIBSections
|
Total Hit (2386) |
The Image Processing using DIBSections sample provided on this site shows you how to implement a True-Colour DIBSection in VB. This is great for code which needs an effectively unlimited number of colours to perform effectively (such as blurring, sharpening, resampling and so on) but if you are inte
....Read More |
Rating
 |
|
 |
Scale, Rotate, Skew and Transform Images using GDI+
|
Total Hit (1815) |
GDI+'s image rendering is considerably more powerful than the basic bitmap transfer functions provided under GDI. You can perform high-quality rotation, scaling and skewing with no additional lines of code: and better still the functions run very fast on half decent machines.
....Read More |
Rating
 |
|
 |
Reading EXIF and Other Image Properties Using GDI+
|
Total Hit (1367) |
Many digital cameras record information about when and how a picture was taken using the EXIF format (which is slowly becoming the DCF format under ISO). You can read and write this information using GDI+; not just that but you can also read the image metadata from TIF and PNG files.
....Read More |
Rating
 |
|
 |
Reading and Writing JPG, PNG, TIF and GIF Files
|
Total Hit (897) |
This article demonstrates using GDI+ to read and write files in multiple formats (JPEG, PNG, TIF, GIF and BMP files are all supported for reading and writing; you can also read EMG, WMF and ICO files).
Using GDI+ is a great alternative to using the Intel JPEG Library that is now no longer distri
....Read More |
Rating
 |
|
 |
GDI+ Wrapper
|
Total Hit (2494) |
The GDI+ Wrapper project is a DLL that works on top of Dana Seaman's excellent GDI+ Type Library and aims to provide COM applications with a wrapper providing equivalent functionality to the C++ and .NET GDI+ classes.
The current version provides support for Images and Bitmaps. Further contribut
....Read More |
Rating
 |
|
 |
CD Track Listing Using freedb.org
|
Total Hit (1072) |
This article demonstrates how to use ASPI to read the table of contents from a CD, and then to use FreeDB's CD look-up service to retrieve artist, title and track listing information for the CD. Along the way it describes some of the alternatives and pitfalls.
....Read More |
Rating
 |
|
 |
Streaming .WAV File Player
|
Total Hit (2274) |
Playing digital audio can be achieved at a number of different levels under windows. At the simplest level, there is the Multimedia Control Interface (MCI) control provided with VB. This is turn is a very thin wrapper around the MCI API provided with Win32, which offers about the same level of contr
....Read More |
Rating
 |
|
 |
Transparent GDI Sprite Library
|
Total Hit (2218) |
This VB library aims to make it simple to add fast, animated graphics using transparent sprites, something which is either missing or dismally slow using VB's standard methods. The source code provides a complete screen saver, and a simpler (and somewhat smaller) sample which animates a large number
....Read More |
Rating
 |
|
 |
RunTime Debug Tracing
|
Total Hit (2107) |
Sometimes you want to be able to view trace messages when running your application outside the VB IDE. Perhaps something slightly different happens as an Executable; or you may be running something that's not so easy to debug, such as subclasses, callback procedures and custom COM implementations. W
....Read More |
Rating
 |
|
 |
A Fast Index-Based Collection
|
Total Hit (1780) |
VB provides a simple Collection for storing objects. However, this object is internally implemented as a hashed linked list, and as such provides good performance for access either by an item's key or through enumeration. If you want to access an object by its index, however, you need to enumerate t
....Read More |
Rating
 |
|
 |
StringBuilder Class for VB
|
Total Hit (1922) |
If you need to build a string by adding lots of pieces together, VB's string handling is slow because a new string is created in memory every time a new piece is added. This article presents a class which allocates a string chunk and then uses memory copy methods to manipulate the data within the sa
....Read More |
Rating
 |
|
 |
Optimised Colour Reduction Using Octrees
|
Total Hit (841) |
Describes the working of the Octree colour quantisation algorithm be used to create optimised colour palettes of arbitrary depth (although typically used for 256 colours) from any image and compares the results with other colour reduction methods.
|
Rating
 |
|
|
 |
Rank Filters
|
Total Hit (792) |
This is a supporting note describing the Rank filter provided in the vbAccelerator Image Processor. Rank filters can either be linear, yielding a softening effect, or non-linear, giving an impressionistic effects to a images.
|
Rating
 |
|
 |
Hue Luminance and Saturation (HLS) Model and Manipulating Colours
|
Total Hit (744) |
Normally in computers colours are described in terms of their Red, Green and Blue components. Whilst you can specify all displayable colours this way, it leaves something to be desired when it comes to picking a colour. For example, most people find it very difficult to determine what RGB values you
....Read More |
Rating
 |
|
|
 |
Saving Pictures to JPG Files Using GDI+
|
Total Hit (788) |
Although unfortunately Intel have discontinued support of their IJL library, Microsoft's GDI+ redistributable provides a way for VB coders to work with other file formats fully legitimately; and as a bonus you can also support PNG, TIF and GIF files too. This link redirects you to the new GDI+ file
....Read More |
Rating
 |
|
 |
Saving Pictures to JPG Files Using the Intel JPEG Library
|
Total Hit (2051) |
Whilst Visual Basic provides support for loading graphic files in various formats into a StdPicture object, it sadly forgets about all of these when it comes to saving the file again. You normally only have one choice of file format for writing: a BMP at the system colour depth.
Whilst there are
....Read More |
Rating
 |
|
 |
Reading and Writing MP3 ID3v1 and ID3v2 Tags
|
Total Hit (1131) |
This article describes the MP3 ID3v1 and ID3v2 tags and provides a sample application which can read and write both types from MP3 files, along with two reusable classes wrapping up the tag functionality.
|
Rating
 |
|
 |
AVI Frame Extractor
|
Total Hit (2939) |
The AVI Frame Extractor code provided here allows you to extract and display individual frames from AVIs. This can be useful if you're trying to create a derivative of an existing AVI as you can extract each of the frames and either edit them in a painting package or write a program to do it. There'
....Read More |
Rating
 |
|
 |
AVI Creation
|
Total Hit (2707) |
One thing that's always been tricky with AVIs is the lack of suitable software to create them. This article provides VB classes allowing 8-bit and 24-bit AVIs to be created, using any available Codec on the system. The demonstration project uses these classes to provide a pretty comprehensive progra
....Read More |
Rating
 |
|
 |
Perlin Noise
|
Total Hit (1701) |
Perlin Noise, named after its inventor Ken Perlin, is a widely used texturing primitive in two- and three- dimensional image creation. The Perlin Noise function generates a smoothly interpolated space of pseudo-random values which can be used as the basis for the procedural generation of realistic n
....Read More |
Rating
 |
|
 |
Totalistic Cellular Automata
|
Total Hit (1805) |
Continuing this short series on the use of cellular automata for creation of algorithmic images, this sample demonstrates using the Totalistic form. A Totalistic cellular automata differs from other the other forms of the algorithm by summing the contribution from surrounding cells, and using modula
....Read More |
Rating
 |
|
 |
Slow Grow
|
Total Hit (1766) |
This sample models diffusion-limited aggregation and demonstrates that random behaviours can lead to rather less random-looking results with hardly any constraints on the random behaviour.
|
Rating
 |
|
 |
Cellular Automata - Catalytic Reactions
|
Total Hit (894) |
This sample shows demonstrates a cellular automata which was initially designed to mimic catalytic reactions and in particular the Belousov-Zhabotinsky or "Clock" reaction. It produces a great variety of continuously varying, wave-like patterns.
|
Rating
 |
|
 |
Cellular Automata - Crystal Model
|
Total Hit (1303) |
A cellular automata are a class of mathematical systems which have been used widely in the investigation of complexity. An automaton is simple: an array of neighbouring cells each have a finite number of possible states. Each cell is then set to change its state when an imaginary clock ticks accordi
....Read More |
Rating
 |
|
 |
Alpha Image Creator
|
Total Hit (2166) |
As described in the Alpha DIBSection article, if you want to draw an image which has per-pixel-alpha using the AlphaBlend call, then you need a bitmap with an alpha channel and R,G,B components which have been pre-multiplied. These bitmaps are hard to come across in the wild, hence this utility to a
....Read More |
Rating
 |
|
 |
Resampling with Alpha
|
Total Hit (1936) |
If you want to change the size of a bitmap, you quickly find that standard techniques such as GDI's StretchBlt aren't particularly good and the result is usually very pixelated. Resampling is a technique which smooths the contribution of each pixel whilst changing the size, and although it takes mor
....Read More |
Rating
 |
|
 |
True Colour DIBSection
|
Total Hit (2856) |
This article describes in detail the DIB Section techniques used in the vbAccelerator Image Processor. It describes what DIB Sections are, how to use them and provides True Colour DIBSection class I wrote to wrap up the DIB Section.
|
Rating
 |
|