Click here to Skip to main content
15,891,136 members
Home / Discussions / C / C++ / MFC
   

C / C++ / MFC

 
AnswerRe: How to get access to CMyView variables from CMainFrame in MFC Pin
11917640 Member 4-Jan-21 22:29
11917640 Member 4-Jan-21 22:29 
GeneralRe: How to get access to CMyView variables from CMainFrame in MFC Pin
Member 150337045-Jan-21 2:44
Member 150337045-Jan-21 2:44 
Questionhaving problem to find an error Pin
bot-joy28-Dec-20 7:25
bot-joy28-Dec-20 7:25 
AnswerRe: having problem to find an error Pin
jeron128-Dec-20 7:40
jeron128-Dec-20 7:40 
AnswerRe: having problem to find an error Pin
CPallini28-Dec-20 20:22
mveCPallini28-Dec-20 20:22 
QuestionRe: having problem to find an error Pin
David Crow29-Dec-20 3:14
David Crow29-Dec-20 3:14 
AnswerRe: having problem to find an error Pin
Patrice T30-Dec-20 12:42
mvePatrice T30-Dec-20 12:42 
Questiongdi+ bitmap save on existing file - showing error Pin
Gopi Nath24-Dec-20 22:21
Gopi Nath24-Dec-20 22:21 
Hello,

I am trying to draw an image (2nd image) over the other image (existing image file - 1st image) using gdi+ bitmap and graphics and then saving (overwriting) the same 1st image file. But saving is not getting done, when i use GetLasError(), it shows error message,
"The process cannot access the file because it is being used by another process"

Here is the code what i am doing.

C++
<pre>Gdiplus::Bitmap *gpBitmap = new Gdiplus::Bitmap(mImagePath1); /// existing image file
Gdiplus::Graphics *gr = Gdiplus::Graphics::FromImage(gpBitmap);

Gdiplus::Bitmap img(mImagePath2); // second image 
Gdiplus::Bitmap* pThumbnail = static_cast<Gdiplus::Bitmap*>(img.GetThumbnailImage(32, 32, NULL, NULL));
gr->DrawImage(pThumbnail, newWpos, newHpos); // drawing the second image on some position of first image

Gdiplus::Status stat = gpBitmap->Save(mImagePath1, pClsid); // pClsid - image encoder set for png output


I tried making copy also, but same issue.

please suggest.

Regards,
Gopi.
AnswerRe: gdi+ bitmap save on existing file - showing error Pin
Richard MacCutchan24-Dec-20 23:33
mveRichard MacCutchan24-Dec-20 23:33 
GeneralSolved - gdi+ bitmap save on existing file - showing error Pin
Gopi Nath24-Dec-20 23:53
Gopi Nath24-Dec-20 23:53 
Questionstd:strstream does not work Pin
Haakon S.22-Dec-20 2:38
Haakon S.22-Dec-20 2:38 
AnswerRe: std:strstream does not work Pin
Richard MacCutchan22-Dec-20 4:14
mveRichard MacCutchan22-Dec-20 4:14 
GeneralRe: std:strstream does not work Pin
Haakon S.22-Dec-20 22:21
Haakon S.22-Dec-20 22:21 
GeneralRe: std:strstream does not work Pin
Richard MacCutchan22-Dec-20 23:37
mveRichard MacCutchan22-Dec-20 23:37 
GeneralRe: std:strstream does not work Pin
Stefan_Lang23-Dec-20 23:59
Stefan_Lang23-Dec-20 23:59 
AnswerRe: std:strstream does not work Pin
Stefan_Lang23-Dec-20 23:56
Stefan_Lang23-Dec-20 23:56 
GeneralRe: std:strstream does not work Pin
Haakon S.24-Dec-20 0:37
Haakon S.24-Dec-20 0:37 
GeneralRe: std:strstream does not work Pin
Richard MacCutchan24-Dec-20 4:18
mveRichard MacCutchan24-Dec-20 4:18 
GeneralRe: std:strstream does not work Pin
Stefan_Lang24-Dec-20 5:10
Stefan_Lang24-Dec-20 5:10 
GeneralRe: std:strstream does not work Pin
Haakon S.24-Dec-20 11:59
Haakon S.24-Dec-20 11:59 
AnswerRe: std:strstream does not work. Solution (sort of) Pin
Haakon S.26-Dec-20 1:11
Haakon S.26-Dec-20 1:11 
GeneralRe: std:strstream does not work. Solution (sort of) Pin
Randor 26-Dec-20 3:28
professional Randor 26-Dec-20 3:28 
QuestionConfigure Script Issue Pin
jblixt21-Dec-20 12:37
professionaljblixt21-Dec-20 12:37 
AnswerRe: Configure Script Issue Pin
Randor 21-Dec-20 13:01
professional Randor 21-Dec-20 13:01 
AnswerRe: Configure Script Issue Pin
k505421-Dec-20 17:42
mvek505421-Dec-20 17:42 

General General    News News    Suggestion Suggestion    Question Question    Bug Bug    Answer Answer    Joke Joke    Praise Praise    Rant Rant    Admin Admin   

Use Ctrl+Left/Right to switch messages, Ctrl+Up/Down to switch threads, Ctrl+Shift+Left/Right to switch pages.