The windows clipboard works by the sending app offering the data in a number of different formats, and the receiving app the chooses which format it wants to take.

For example, if you are editing a document in MS Word, and you copy some text onto the clipboard, Word will create an offer for Word format, plain text and a number of intermediate formats with varying levels of mark-up support. If you paste the text into another word doc, then Word will accept the text in native format, but if you paste into a simple text editor like vim, then it will take the plain text version.

The point is, that you can't have an image in TIFF format, unless the sending application is offering an image in that format. You might want to experiment with an application that uses TIFF as it's native internal format, and then call EnumFormats() (From Win32::Clipboard) to see if TIFF is offered.

In the general case, you probably won't be offered a TIFF image file by most applications, so if you want to save in that format, you need a conversion libary. fisher suggested Image::Magick which I also think is a good choice.


In reply to Re: How to save the image in TIFF format by using Win32::Clipboard by chrestomanci
in thread How to save the image in TIFF format by using Win32::Clipboard by ashokpj

Title:
Use:  <p> text here (a paragraph) </p>
and:  <code> code here </code>
to format your post, it's "PerlMonks-approved HTML":



  • Posts are HTML formatted. Put <p> </p> tags around your paragraphs. Put <code> </code> tags around your code and data!
  • Titles consisting of a single word are discouraged, and in most cases are disallowed outright.
  • Read Where should I post X? if you're not absolutely sure you're posting in the right place.
  • Please read these before you post! —
  • Posts may use any of the Perl Monks Approved HTML tags:
    a, abbr, b, big, blockquote, br, caption, center, col, colgroup, dd, del, details, div, dl, dt, em, font, h1, h2, h3, h4, h5, h6, hr, i, ins, li, ol, p, pre, readmore, small, span, spoiler, strike, strong, sub, summary, sup, table, tbody, td, tfoot, th, thead, tr, tt, u, ul, wbr
  • You may need to use entities for some characters, as follows. (Exception: Within code tags, you can put the characters literally.)
            For:     Use:
    & &amp;
    < &lt;
    > &gt;
    [ &#91;
    ] &#93;
  • Link using PerlMonks shortcuts! What shortcuts can I use for linking?
  • See Writeup Formatting Tips and other pages linked from there for more info.