Send free SMS API

http://ubaid.tk/api-usage/ Required Params : uid, pwd, phone, msg. uid : your userid for the required sms provider pwd : your password for the required sms provider provider : way2sms(default), fullonsms, smsindia, whozzat, smsinside, site2sms. if you do not specify any provider, way2sms will be used by default. phone : phone number whom you want to …

Microsoft Office Document to PDF convert

OfficeToPDF is a command line utility that converts Microsoft Office 2007 and 2010 documents from their native format into PDF using Office’s in-built PDF export features. OfficeToPDF is useful (and unique) if you want to automatically create PDF files on a server-wide basis and free individual users from an extra step of using the “Save …

PDF to Image

First of all you have download “GhostScript” from Here Installed it. C#.net Code as below 1) Create a new console application in Visual Studio 2010. 2) Copy the below code into your application public static void PdfToJpg(string ghostScriptPath,string input, string output) { //String ars = “-dNOPAUSE -sDEVICE=jpeg -r300 -o” + output + “-%d.jpg ” + …

Super Impose Image

Refere Link: http://www.codeproject.com/KB/GDI-plus/watermark.aspx Download code: https://skydrive.live.com/?cid=efc0ec2e2cd761ee#!/?cid=efc0ec2e2cd761ee&id=EFC0EC2E2CD761EE%21150 impose one image on another image. it’s also called watermark effect also.

Cross Platform Socket Programming (Mac-Windows)

Overview: Sockets vs Streams Socket represents a unique communication endpoint on the network. When your app needs to exchange data with another app, it creates a socket and uses it to connect to the other app’s socket. You can both send and receive data through the same socket. Each socket has an IP address and …