views:

135

answers:

1

This similar question's answers all require the file to be saved. However, I'm trying to convert the file and then copy it to the clipboard.

How can I convert a Bitmap (or any image) to a PNG without saving it to the file system?

Update:
I'm trying to paste the image into an application (in this case Evernote). When you copy an image into the clipboard (e.g. via the browser), it remembers its image format and when you paste it in, it will create an image with the same exact format. For example, if you copy a PNG, it will paste a PNG. If you copy a JPG, it will paste a JPG, etc.

I am trying to take whatever image is currently in the clipboard, scale it to the size I want, and then keep it in the clipboard as a PNG, such that when it is pasted into Evernote, it will create a PNG.

When I copy a PNG image in my browser, I see the following formats: HTML FORMAT, CF_BITMAP, CF_DIB, CF_DIBV5. I'm not sure which of these Evernote is using for pasting. I was under the impression that it was CF_BITMAP, but after reading the comments below, I guess it's using one of the other formats.

How can I place an image in the clipboard which will be treated as a PNG when pasted?

+6  A: 

Save the Bitmap to a MemoryStream

byte[] result = null;
using (MemoryStream stream = new MemoryStream())
{
    bitmap.Save(stream, ImageFormat.Png);
    result = stream.ToArray();
}
russau
What type is result?
Senseful
it's a byte array, updated the answer
russau
Could you please include the code necessary to convert it to an `Image`? (I'm trying to figure this out myself right now and I'll post it as a comment so you can copy/paste)
Senseful
My best guess is `Image result = Image.FromStream(stream);` instead of the `result = ...` line. If you agree, could you please update the answer?
Senseful
@eagle: Am `Image` is an Image. It's only a Bmp/Png/Jpg/etc when it is written to a stream (file or memory).
James Curran
@eagle: You already have a `Bitmap`. `Bitmap` derives from `Image`, so it’s already an `Image` to begin with.
Timwi
@James, @Timwi: I updated the question to clarify what I'm trying to do.
Senseful