Click here to Skip to main content
15,880,796 members
Articles / Multimedia / GDI+
Article

Clipboard ActiveX for Image Copy/Paste into Web Forms

Rate me:
Please Sign up or sign in to vote.
2.75/5 (9 votes)
11 May 2008CPOL3 min read 163.6K   3.9K   24   63
An article for using Copy/Paste of images on Web forms
Image 1

Introduction

One of my client requirements was to use Windows copy/paste functionality on Web forms for Images. The client wished to have CTRL+V to paste any image on the client machine or on the clipboard. I just did some Googling and got few modules performing individual tasks. I modified them as per my requirements. The ActiveX gives the following functionalities:

  • Copy Image files from client machine and paste it into our Web forms
  • Upload that image onto our server
  • Use any image content like Microsoft Paint to use cropped part of any image, or Print Screen etc.

Note: My requirement was for using multiple DIVs on forms to use these functionalities, and hence you will find some conditions in JavaScript code in the demo project.

Requirements

As this is a very basic ActiveX control, it has not been signed yet. So in order to use this activeX, you need to Add your site to "Trusted Sites" as well as reduce your browser security levels down so that your browser can use unsigned ActiveX controls for the time being.

You can do this by going to Tools >> Options >> Security >> Trusted Sites.

If you are uploading an image to the server, your Web site requires one folder called Upload with appropriate privileges.

Using the Code

This whole implementation is full use of JavaScripts. I am showing you the important ones here. Form's BODY tag is calling the KeyPress() event, and that function calls the fnCall() function which performs the core operation of Copy/Paste.

Code Description for Demo Project

The HttpUtil1.aspx page is used to upload the pasted image onto the server. postVar is used to pass the query string values to that httpUtil page, id is used to create a sub folder under the Upload folder and will upload a file into it. You can use any generated random number to create different folders each time.

JavaScript
strURL = strURL + "/HttpUtil1.aspx";
                       postVar = "id=1";

This ActiveX creates temporary files on the client's machine. It only creates files if the user has not copied any existing image (like Paint cut or Print Screen etc). The path where it creates those files can be configured from the code below:

JavaScript
// Getting the Physical path on which the images will be stored on client machine.
var PhysicalPathForTempImage = "c:\\Amit\\";

Below is the call to the ActiveX method to create and save clipboard image onto the client's machine which later can be uploaded onto the server.

JavaScript
var strFilePath = objActiveX.getCopiedImage(PhysicalPathForTempImage);

After pasting the image into DIV, we can upload that onto the server with the same ActiveX. We cannot directly upload the image using any server code or JavaScript since what we have on hand is just fileName, instead of any fileUpload object containing image stream or something like that. So that uploading logic has been shifted into ActiveX logic.

JavaScript
response = objActiveX.UploadFiles(strFileName,strURL,postVar);

Code Description for ActiveX Project

I have used the basic USE32 for clipboard operations and kernel32 for GlobalAlloc, GlobalFree, GlobalLock, etc.

VB.NET
' Clipboard routines.
Private Declare Function OpenClipboard Lib "USER32" (ByVal hWnd As Long) As Long
Private Declare Function CloseClipboard Lib "USER32" () As Long
Private Declare Function SetClipboardData Lib "USER32" _
    (ByVal wFormat As Long, ByVal hMem As Long) As Long
Private Declare Function GetClipboardData Lib "USER32" (ByVal wFormat As Long) As Long

' Global memory routines.
Private Declare Function GlobalAlloc Lib "kernel32" _
    (ByVal wFlags As Long, ByVal dwBytes As Long) As Long
Private Declare Function GlobalFree Lib "kernel32" (ByVal hMem As Long) As Long
Private Declare Function GlobalLock Lib "kernel32" (ByVal hMem As Long) As Long
Private Declare Function GlobalUnlock Lib "kernel32" (ByVal hMem As Long) As Long
Private Declare Sub CopyMem Lib "kernel32" Alias "RtlMoveMemory" _
    (Destination As Any, Source As Any, ByVal Length As Long)

Below is the call to SaveAsJPG module to save the image content into an image file. This saves the file in very compressed size, unlike if we use the SavePicture() method of VB 6.0 which saves files around 2-3 MB in size, while this module saves a file around 60-80 KB of size.

VB.NET
Call SaveAsJPG.SaveJPG(Clipboard.GetData(vbCFBitmap), strTargetFilePath)

In order to upload the pasted image, this ActiveX method sends an HTTP Request to the httpUtil.aspx page to save the image contents to server.

VB.NET
Function UploadFiles(strFileName1 As String, strUrl As String, _
    Optional postVar As String, _
    Optional strUserName As String, Optional strPassword As String) As String

' Set the user name and password.
        WinHttpReq.SetCredentials strUserName, strPassword, _
        HTTPREQUEST_SETCREDENTIALS_FOR_SERVER

Points of Interest

When I started merging different modules into ActiveX, I lost link of the module to save the image in compressed mode, and hence my images were generating with a bulky size. I searched a lot to get that module. Finally, I found it from my Google history which I browsed few months ago. Thanks to Google for keeping my browsed links.

History

  • 11th May, 2008: Initial post

License

This article, along with any associated source code and files, is licensed under The Code Project Open License (CPOL)


Written By
Software Developer (Senior) Elan Emerging Technologies Pvt Ltd.
India India
I am a master graduate from Ahmedabad,India.I am in programming since last 2 years,and i love this job of programmer and wanted to do programming for lifetime.

Comments and Discussions

 
GeneralRe: demo still not fully working Pin
AmitChampaneri15-Jan-09 18:09
AmitChampaneri15-Jan-09 18:09 
GeneralRe: demo still not fully working Pin
Tara Alvarez16-Jan-09 3:45
Tara Alvarez16-Jan-09 3:45 
GeneralRe: demo still not fully working Pin
cawoodm5-Feb-09 8:34
cawoodm5-Feb-09 8:34 
GeneralRe: demo still not fully working Pin
Member 400910422-Oct-10 19:59
Member 400910422-Oct-10 19:59 
Generalbasic help [modified] Pin
Tara Alvarez14-Jan-09 9:00
Tara Alvarez14-Jan-09 9:00 
QuestionNot working on Mozilla Pin
Murtaza5217-Nov-08 6:29
Murtaza5217-Nov-08 6:29 
AnswerRe: Not working on Mozilla Pin
AmitChampaneri18-Nov-08 17:32
AmitChampaneri18-Nov-08 17:32 
AnswerRe: Not working on Mozilla Pin
cawoodm5-Feb-09 8:14
cawoodm5-Feb-09 8:14 
Mozilla does not support ActiveX - that means you cannot use this component in Firefox or anything other than Internet Explorer.
GeneralRe: Not working on Mozilla Pin
AmitChampaneri5-Feb-09 17:52
AmitChampaneri5-Feb-09 17:52 
AnswerRe: Not working on Mozilla Pin
YasirLaghari12-Jan-10 3:43
YasirLaghari12-Jan-10 3:43 
QuestionClassID Pin
jbeeler3-Oct-08 2:56
jbeeler3-Oct-08 2:56 
AnswerRe: ClassID Pin
AmitChampaneri3-Oct-08 3:13
AmitChampaneri3-Oct-08 3:13 
GeneralHi Amit, great code. but i have a problem Pin
lionsh26-Aug-08 20:49
lionsh26-Aug-08 20:49 
QuestionNo image! Only image place holder Pin
jbeeler15-Aug-08 7:07
jbeeler15-Aug-08 7:07 
AnswerRe: No image! Only image place holder Pin
AmitChampaneri21-Aug-08 21:32
AmitChampaneri21-Aug-08 21:32 
GeneralWorks Great But... Pin
MelvinB9-Jun-08 8:56
MelvinB9-Jun-08 8:56 
GeneralRe: Works Great But... Pin
MelvinB9-Jun-08 10:34
MelvinB9-Jun-08 10:34 
GeneralRe: Works Great But... Pin
AmitChampaneri9-Jun-08 19:19
AmitChampaneri9-Jun-08 19:19 
GeneralRe: Works Great But... Pin
MelvinB10-Jun-08 2:54
MelvinB10-Jun-08 2:54 
GeneralVB to VB.NET Pin
jbeeler27-May-08 2:27
jbeeler27-May-08 2:27 
GeneralRe: VB to VB.NET Pin
AmitChampaneri27-May-08 2:36
AmitChampaneri27-May-08 2:36 
Generalgood stuff Pin
vrsanaidu21-May-08 20:53
vrsanaidu21-May-08 20:53 
GeneralNot in the right place Pin
Mad Progs12-May-08 9:08
Mad Progs12-May-08 9:08 

General General    News News    Suggestion Suggestion    Question Question    Bug Bug    Answer Answer    Joke Joke    Praise Praise    Rant Rant    Admin Admin   

Use Ctrl+Left/Right to switch messages, Ctrl+Up/Down to switch threads, Ctrl+Shift+Left/Right to switch pages.