Deleting Image IN VC++
-
Hi, I am working in vc++ mfc and i have been stuck some where I want to overwrite a selected Image in a particular path. Please help out me
raajpatel wrote:
I want to overwrite a selected Image in a particular path
That is rather unclear. Please edit your question and be more specific. Are you referring to an image file stored on the disk with known path and file name? What is the image source that you want to store (another file, a bitmap in memory)? What image format should be used (BMP, JPG, TIFF, PNG)?
-
Hi, I am working in vc++ mfc and i have been stuck some where I want to overwrite a selected Image in a particular path. Please help out me
-
raajpatel wrote:
I want to overwrite a selected Image in a particular path
That is rather unclear. Please edit your question and be more specific. Are you referring to an image file stored on the disk with known path and file name? What is the image source that you want to store (another file, a bitmap in memory)? What image format should be used (BMP, JPG, TIFF, PNG)?
-
Hi, I want to replace same image and over same path with resized on a disk and format is "gif" file
You can use the CImage Class[^]. Use the
Save()
function withImageFormatGIF
to save the image as GIF. How to create theCImage
depends on the source. It can be loaded from file or passed an existing in memory bitmap.