Archive for the ‘Multimedia’ Category

Create your own text to speech converter software to make your computer speak whatever you type. Steps 1. Open the Notepad. 2.Copy/Write the code as given below into the notepad. Dim message, sapimessage=InputBox(“What do you want me to say?”,”Speak to Me”)Set sapi=CreateObject(“sapi.spvoice”)sapi.Speak message 3. Save the file with any name with an extension .vbs 4. [...]

As a Windows lover, I have always tried to make it more secure, convenient and easy to use. This is my must-have list of 25 Free Softwares and Utilities that I use as an installation checklist on every fresh Windows installation. After these are installed, Windows is much more stable and powerful. These apps and [...]

    VLC 1.0 has gotten several cool new features, one of which is the ability to record what is playing in the screen. Here we will take a look at how easy it is to record a DVD or other video formats using VLC.   Record Using VLC   You won’t see the record [...]

Interpolation (Resizing) of a Bitmap image

To Change the Sharpness of R, G,B values of a Pixel of the image

To Change the Contrast of R, G, B values of a Pixel of the image

To Change the brightness of a Pixel of the imag

To Change the Gamma of R, G,B values of a Pixel of the image

To Change the Saturation of R, G, B values of a Pixel of the image

#define BCHANNEL 0 #define GCHANNEL 1 #define RCHANNEL 2 unsigned char Clip(int iVal) { return ( iVal > 255 ? 255 : ( iVal < 0 ) ? 0 : iVal) ; } //Pixel Functions int GetValue(int iX, int iY, int iImageWidth, int iImageHeight, int iChannel, int iBPP, BYTE *pbySrc) { Clip(iX); Clip(iY); return pbySrc[iY [...]