Tagged Questions
0
votes
2answers
32 views
How to copy image to clipboard from internet?
I am modifying the browser source code and I need to be able to copy an image to the clipboard from the internet. I can't seem to find out how to do it, and I know it's possible because I've seen it ...
0
votes
0answers
17 views
clipboard to image using asp c# no picturebox
Hi everyone I've been having a hard time trying to solve this, i'm creating a forum, so i want either in the text box or on button click, get the users print screen and save it to a file and show it ...
0
votes
0answers
19 views
Copy image to clipboard and past on default apps Android
I want to implement copy image to clipboard functionality in my app.
I want to past my image on another applications for example polaris and ets. I try same codes but they not past my image on ...
1
vote
2answers
43 views
Saving image form Clipboard
i want to save one Image inside clipboard in winrt to file. but i found no way. can you help please?
var dataPackage = Clipboard.GetContent();
var t = await dataPackage.GetBitmapAsync();
...
3
votes
2answers
70 views
Allow user to copy image from picturebox and save it everywhere
In my application I have a pictureBox that shows an image. When user right clicks on the pictureBox and selects Copy from the context menu, I want to copy the image into the clipboard so the user can ...
0
votes
1answer
24 views
How can I cleanly programatically add images to the clipboard and paste them?
i have a global registered hotkey which works fine, inside this hotkey is the following code:
{
Clipboard.SetDataObject(Properties.Resources.cookie);
...
0
votes
1answer
38 views
Send unsaved image or image from clipboard to to a program as a parameter
Question may not be well written.
I have an image viewing program and I would like to be able to send an image to another program, like Photoshop.
I can do this if the image has a saved source, but ...
0
votes
1answer
38 views
Clipboard copy from outlook always has black background set when retrieved as image from Java clipboard object
Here are the application steps
copy some richtext from a html email message or from a website(a combination of text + image)
In your java code retrieve the content copied from the clipboard object ...
0
votes
2answers
288 views
Copy image from webbrowser to clipboard
I need to copy an image from a webbrowser control to my clipboard, because the image changes on every reload, and I tried to get the "src"-attribute and changing my picturebox.imagelocation to that, ...
0
votes
0answers
88 views
copy image to clipboard in python
the question is:
i have a JPG file. i want to use python to copy that image to clip board. how ?
if you give me a link about image objects in python , it would be appreciated.
thanks
p.s. : system ...
0
votes
1answer
173 views
Find format of clipboard image in Java
I'm getting images from clipboard using this:
if(Toolkit.getDefaultToolkit().getSystemClipboard().isDataFlavorAvailable(DataFlavor.imageFlavor)){
ImageIcon IMG = new ...
0
votes
0answers
235 views
TinyMCE: Upload pasted image to server with firefox (php script)
I am attempting to enable TinyMCE and Firefox using PHP to send an image that pasted in the editor to the server so that it will appear in the edited document. I have seen this on Moodle, so I know ...
1
vote
1answer
831 views
Copy and paste jpg/png to clipboard in android
I would like to copy image from my application and would like to paste in SMS application(Now SMS would be converted to MMS). I am implementing on android OS version 4.0 .
I have done as per follows ...
13
votes
1answer
1k views
Copy image to clipboard in android
I want to copy image to clipboard for all level of apis. For this i have found an answer from the below link
http://developer.android.com/guide/topics/text/copy-paste.html
But it does supports from ...
0
votes
0answers
29 views
Image on Clipboard [duplicate]
Possible Duplicate:
Copy BufferedImage to clipboard
So, I have the following:
BufferedImage image = img.getSubimage(x, y, width, height);
ImageSel imageSel = new ImageSel(image);
...
0
votes
1answer
575 views
Highcharts, export/copy image to clipboard
I need to copy highchart to clipboard as image, how i can do that?
Ther's export function build-in but it shows window prompt to open/download but i want to right click on chart (or use 'export' ...
2
votes
1answer
601 views
How to paste a transparent image from the clipboard in a C# winforms app?
Note: This question is about pasting from the clipboard, not copying to the clipboard. There are several posts about copying to the clipboard, but couldn't find one that addresses this question.
How ...
0
votes
1answer
366 views
1
vote
1answer
1k views
Convert image from clipboard to base64 encoded data with JavaScript
I want to be able to take a screenshot and then just simply paste it to the textarea field which would then turn the image into base64 encoded string. Then I could easily put it inside img elements ...
5
votes
1answer
736 views
Pasting images from clipboard in Firefox suddenly enabled (tinymce)
I'm using TinyMCE for richtext editing in a webmail client. Suddenly, after years and years of begging us to build something like this, customers are able to paste images directly from the clipboard ...
0
votes
2answers
1k views
Copying an image from the clipboard
I want to get an image which is copied from the galley to my app.Means the image will be there in the clipboard I want to get that image can anyone help me.
I need to copy the image from the ...
1
vote
3answers
1k views
Paste image from clipboard javascript
We have a program the wants to get an image copy into the clipboard to paste into a file on the HDD using javascript/HTA.
Does anyone done something like this before? Or How can I create an image ...
5
votes
1answer
2k views
Copying an image to clipboard using javascript/jquery
I need to copy an image to clipboard using javascript/jquery and I am using the following js to achieve that.
function copyImageToClipBoard() {
var div = ...
1
vote
1answer
1k views
Copying the image of a ScatterChart to system clipboard in JavaFX 2.0
I need to copy a ScatterChart in JavaFX 2.0 to the system clipboard. I'm not really sure how to copy the whole image of the ScatterChart with the potted points.
2
votes
2answers
336 views
VB.NET: Preserve image metadata when moved to clipboard as an image
Visual Studio 2010, .NET 4, VB.NET
Hello,
I am writing a little program to convert LaTeX snippets to images which can be pasted into whatever program one can paste images into. It's working alright ...
2
votes
2answers
952 views
Java/Swing: ownership of the system clipboard
I'm writing a small Java program that's supposed to run an external program that copies an image to the system clipboard (i.e. the Windows 7 "snipping tool"), wait for it to finish, save the image ...
9
votes
4answers
752 views
Determine if System Clipboard Images are equal
I am not sure if my problem is platform specific, but I think it is not.
Because my expirience is based on the Windows specific java.awt.Toolkit and the Windows-Clipboard.
The following example class ...
0
votes
2answers
69 views
How can I write text that the clipboard sees but isn't visible?
Until recently I'd been using style=display:none on an image to do this with its alt text. That method is no longer working, so what can I do?
1
vote
2answers
1k views
Drawing on a Image in C#
I'm trying to copy an image from the clipboard onto an existing image.
Basically the existing image is 150 X 150 white coloured .jpg image. (Acting as the canvas)
I would like to know how to draw my ...
7
votes
3answers
4k views
Paste an image into a web page
Is it in any way possible, using javascript (jquery), html (5) to get a pasted image.
e.a a user click the printscreen button, opens a web page, clicks CTRL+V and the image is uploaded to the server ...
1
vote
2answers
558 views
Find type of image in clipboard
I have an image copied to the clicpboard from the word using "Comment.Scope.CopyAsPicture()"
How can i find the type of this image in the clipboard, so that i can write the image with proper extension ...
2
votes
1answer
856 views
Show image from clipboard to defalut imageviewer of windows using c#.net
I am using below function to make a image of current form and set it in clipboard
Image bit = new Bitmap(this.Width, this.Height);
Graphics gs = Graphics.FromImage(bit);
...
3
votes
2answers
2k views
How to copy image of a chart from Silverlight application to clipboard?
I have a Silverlight 3.0 applications with some custom graphics and some charts. I need to find the best way to transfer these graphics to a PowerPoint presentation.
I've read that Silverlight 4.0 ...
2
votes
2answers
2k views
Copy Image to Clipboard from Browser in Javascript?
Is it possible to copy an image to the clipboard in javascript? I know how to copy text, but can you copy images?
Is it a security limitation?
1
vote
1answer
800 views
Flash plugin which allows image upload from clipboard to server
I want to embed a flash to my site, that allows the user to paste an image which is in clipboard, and this images will then be uploaded to the server.
Is there a script that can do that?
i googled ...
2
votes
2answers
5k views
copy image to clipboard and let it be pasted as file (vb.net)
I have a picture box and if I use Clipboard.SetImage(PictureBox.image) Then I can only paste the image into things like Paint and MS word. I can't paste it as a file into a folder/desktop.
So how can ...
6
votes
6answers
10k views
Programmatically (C#) convert Excel to an image
I want to convert an excel file to an image (every format is ok) programmatically (c#). Currently I'm using Microsoft Interop Libraries & Office 2007, but it does not support saving to an image by ...
1
vote
1answer
3k views
Cannot paste an image from clipboard to MS Word
I have an asp.net/C# web application. I have an image steaming .aspx page to render images. I have to copy an image to client's clipboard. So I first load the image in a hidden image box and copy it ...
1
vote
2answers
3k views
Realtime BMP to JPG conversion in Delphi 7 using Paradox
Researching here and at Code News Fast, I've seen nothing on point to my problem. I have an app where a customer picture (a JvDBImage) is acquired through the clipboard from a third-party ...
0
votes
1answer
321 views
clipboard image directly save to disk somehow on a local or iis
The user would have to press Alt prtScr to save the image to clipboard,
then maybe open word (Ctrl V)and get an path to save it to from the submit form page and save the document?
or is it possable ...
4
votes
4answers
4k views
How can I get an image out of the clipboard without losing the alpha channel in .NET?
I'm trying to save a copied image from the clipboard but it's losing its alpha channel:
Image clipboardImage = Clipboard.GetImage();
string imagePath = Path.GetTempFileName();
...
0
votes
1answer
1k views
Paste an image from clipboard doesnt work when web application is configured thro IIS
Am creating a web based application using ASP.NET v2.0. I have an urgent requirement in my project - to have a control in my web page that would allow the users to enter text or copy paste image from ...
8
votes
3answers
5k views
Pasting an image from clipboard to a website
I need to come up with a solution for users to be able to paste an image on to a website, then upload that image on to the web server. I'm not sure what the right solution for this - I am pretty sure ...