HOME Delphi Print Display File I/O Status Check ShellExecute create a thumbnail SMTP CreateFile SW_SHOW GetDriveType SendMail SW_HIDE TOSVERSIONINFO Delphi Folder Navigation Dialog TPrintDialog Print Dialog Transparent Text Out Java GetVolumeInformation Is Audio CD ShowWindow Thumbnail creation from image stream Removable Disk Detection available memory Bitmap to Jpeg Conversion BitConverter available memory space GetSysDir GetSystemDefaultLangID GetSystemDir GetSystemDirectory GetVersionEx free memory size GetWinDir GetWindowsDir GetWindowsDirectory GetWindowsVersion Gradient Filled Form Hard Disk Volume Lable Hard Disk Volume Name HDD Volume Lable Animated Icon Comma DateTimeToSystemTime Delphi File System Control CreateEllipticRgn Desktop Wallpaper DISP_CHANGE_FAILED DISP_CHANGE_NOTUPDATED DISP_CHANGE_SUCCESSFUL confirm Drive Type Generate Thumbnail from Image Stream ChangeDisplaySettings CD ROM Drive Detection Caption Bar BrowseInfo FILE_ATTRIBUTE_NORMAL Focus 켜져있는시간

THUMBNAIL CREATION FROM IMAGE STREAM.ZIP

How to resize image ?   (created at Jun 03, 2009)   173  

Here's the simple example can resizing source image:

Creating thumbnail images   (created at Oct 03, 2007)   34  

Suppose you have a Web Form where uploading of files is enabled, using the HtmlInputFile HTML control, and a user is uploading an image. If you accept only images of a specified size, you might need to shrink the uploaded image / create a thumnail.Here's h...

Convert a mapped drive to a full UNC path   (created at Sep 10, 2007)   89  

Universal/Uniform Naming Convention. A UNC path describes the location of a volume, directory, or file.The format for a UNC path is \servervolumedirectoryfile and is not case-sensitive. For example:    \Shared1_svrShared1WGroupsNetworkOrders.xlsR...

Checking If File Is In Use   (created at Sep 10, 2007)   55  

IsFileInUse will return true if the file is locked for exclusive access. It would fail if the file doesn't exist at all. function IsFileInUse(fName : string) : boolean;var    HFileRes : HFILE;begin    Result := false;    if no...

Browse for Computers, Folders, Files and Printers   (created at Sep 10, 2007)   51  

By using the SHBrowseForFolder Windows API function and Delphi we can invoke a Windows system dialog used to browse for files and folders on users hard drive as well as network computers and printers. First, let's look at what SHBrowseForFolder needs. Here...

How to draw Transparent Text on bitmap   (created at Sep 01, 2007)   62  

You can set transparent mode by calling SetBkMode function.procedure TForm1.Button1Click(Sender: TObject);begin  with Image1.Picture.Bitmap.Canvas do  begin    Font.Color  := clBlue;    Brush.Style := bsclear;   ...

Send An Email Using A Bean   (created at Aug 30, 2007)   41  

This JSP snippets shows how to send an email using a reuasable javabean    JSP Sample - Send Email     
 
 ...

JQuery And Function Chaining   (created at Aug 30, 2007)   71  

I am learning new things about jQuery: function chaning is a really cool feature: