Questions tagged [clipboard-pictures]

8 questions
3
votes
1 answer

WMZ files from MSWord when porting to HTML

When I copy the clipboard data in C# using Clipboard.GetData(DataFormats.Html).ToString();, there are ".wmz" files getting stored in the "temp" path. (it's present in the v:imagedata src section) There are math symbols like delta in the original…
Thiyaneshwaran S
  • 1,137
  • 2
  • 10
  • 14
1
vote
1 answer

Finding Image reference in MS Word using VBA

I am trying to copy an excel Table and image from MS EXCEL to MS WORD using VBA. I was struggling to find out how will I reference the tables and images into the Word once they are sent from excel. After a long research I came across a very simple…
geekay
  • 1,655
  • 22
  • 31
1
vote
3 answers

Convert clipboard into a GIF/PNG when clipboard contains a picture

I was wondering if anybody knew a way to detect when a picture is copied in the clipboard then perform the following when it happens: Convert this picture into a GIF/PNG Then put back this compressed picture into the clipboard The reason I am…
BlueTrin
  • 9,610
  • 12
  • 49
  • 78
1
vote
1 answer

Get Clipboard Image Data in Firefox

I read many article about this. But i don't solve it. I want to get clipboard image data with javascript(in Firefox). When i use contenteditable div and press printScreen button and paste with ctrl+v.this is work properly but how do you get this…
altandogan
  • 1,245
  • 6
  • 21
  • 44
1
vote
0 answers

"Saving" directly to Clipboard - Possible?

I'm working with an API that produces images in BMP or JPG format. The API method in question requires a path and filename. However, in some cases, I would like to simply put the image into the Clipboard. I know I can save to a file, then open the…
KeithS
  • 70,210
  • 21
  • 112
  • 164
0
votes
0 answers

Copy multiple images to clipboard in Python

Using Python 3.4.0 in Windows 7, I've managed to copy a single image to clipboard thanks to this question. Now I want to copy multiple images at the same time. I don't understand much of what is happening in this code, so I'm unable to modify…
0
votes
1 answer

C# Clipboard.ContainsImage() is working differently while copying file from file website and from desktop

I was investigating an interesting thing. I want to get Image from Clipboard in my C# program. Code sample: [STAThread] public Image GetClipboardImage() { MessageBox.Show("try to get image"); Image returnImage = null; if…
Anton Kasianchuk
  • 1,177
  • 5
  • 13
  • 31
0
votes
3 answers

Comparing two images from the clipboard class

In a C# winform app. I'm writing a Clipboard log manager that logs text to a log file, (everytime a Ctrl+c/x is pressed the copied/cut text gets appended to the file) I also did the same for images, that is, if you press "prtScreen", the screen shot…
vexe
  • 5,433
  • 12
  • 52
  • 81