Click here to Skip to main content
15,881,856 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

 
QuestionNot working on iss Pin
altanaltan22-May-13 2:54
altanaltan22-May-13 2:54 
AnswerRe: Not working on iss Pin
rahulkasar12-Sep-13 3:22
rahulkasar12-Sep-13 3:22 
BugDemo Problem Pin
Dhen LaCrouix Bordeaux26-Dec-12 20:08
Dhen LaCrouix Bordeaux26-Dec-12 20:08 
Questionget the file path Pin
Member 927009611-Oct-12 19:13
Member 927009611-Oct-12 19:13 
AnswerRe: get the file path Pin
Dhen LaCrouix Bordeaux23-Jan-13 21:03
Dhen LaCrouix Bordeaux23-Jan-13 21:03 
Hello ! I have the same situation as you, i can save temp file(which is already in .jpeg format) on client machine. But the thing is i couldn't get it done to save onto the web server. I wanna ask you if you already save the picture onto the server? and How ? Dead | X|
GeneralRe: get the file path Pin
Member 927009624-Jan-13 11:54
Member 927009624-Jan-13 11:54 
GeneralRe: get the file path Pin
Dhen LaCrouix Bordeaux24-Jan-13 14:13
Dhen LaCrouix Bordeaux24-Jan-13 14:13 
GeneralRe: get the file path Pin
Member 927009624-Jan-13 15:21
Member 927009624-Jan-13 15:21 
GeneralRe: get the file path Pin
Dhen LaCrouix Bordeaux24-Jan-13 16:38
Dhen LaCrouix Bordeaux24-Jan-13 16:38 
Questiontrouble Pin
Todor Ivanov Ginchev27-Jul-12 3:56
Todor Ivanov Ginchev27-Jul-12 3:56 
QuestionTrying to run the demo Pin
Member 797599112-Oct-11 7:05
Member 797599112-Oct-11 7:05 
GeneralUnable to sign the ClipBoard ActiveX Pin
Rafshad3-Sep-10 8:33
Rafshad3-Sep-10 8:33 
GeneralRe: Unable to sign the ClipBoard ActiveX Pin
phylacterion21-Oct-10 11:50
phylacterion21-Oct-10 11:50 
GeneralRe: Unable to sign the ClipBoard ActiveX Pin
Rafshad11-Nov-10 7:23
Rafshad11-Nov-10 7:23 
GeneralNot displaying the image Pin
phylacterion16-Jun-10 4:36
phylacterion16-Jun-10 4:36 
GeneralRe: Not displaying the image Pin
Rafshad13-Oct-10 8:19
Rafshad13-Oct-10 8:19 
GeneralFails on Server Pin
raniskummari11-Mar-10 11:04
raniskummari11-Mar-10 11:04 
GeneralRe: Fails on Server Pin
Todor Ivanov Ginchev27-Jul-12 3:58
Todor Ivanov Ginchev27-Jul-12 3:58 
Generalworks great on my local machine Pin
anjali510-Feb-10 9:50
anjali510-Feb-10 9:50 
GeneralRe: works great on my local machine Pin
AmitChampaneri10-Feb-10 18:17
AmitChampaneri10-Feb-10 18:17 
GeneralRe: works great on my local machine Pin
xgc452-Aug-12 6:13
xgc452-Aug-12 6:13 
GeneralNot working on Windows 7 Pin
YasirLaghari12-Jan-10 3:51
YasirLaghari12-Jan-10 3:51 
GeneralDemo doesnt work Pin
kristapsozols17-Dec-09 3:49
kristapsozols17-Dec-09 3:49 
QuestionDoesn't work on some machines? Pin
UDG-Mark6-Oct-09 3:33
UDG-Mark6-Oct-09 3:33 
AnswerRe: Doesn't work on some machines? Pin
UDG-Mark6-Oct-09 4:47
UDG-Mark6-Oct-09 4:47 

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.