Hii..

I want to know whether we can create .bmp file using QImage or QImageWriter class.

If we write following code :
Qt Code:
  1. QImage imgA;
  2. imgA->setText("","A");
  3. imgA.save("A_bmp.bmp","BMP",-1);
To copy to clipboard, switch view to plain text mode 

Can A.bmp be generated where it has only text "A" .
Is there any other meathod to implement the same?