Adobe Distiller
-
Hi, I have a problem with the output of CBitmap images to Adobe Distiller. I can see my bitmap in the view and the preview. Printing is also fine. But the output into pdf does not work. Text and other graphics like lines or boxes works fine, only bitmaps are not visible. Is there anybody with a solution in the world? Greetings from Hannover, Germany Markus Dr-Kuulun
-
Hi, I have a problem with the output of CBitmap images to Adobe Distiller. I can see my bitmap in the view and the preview. Printing is also fine. But the output into pdf does not work. Text and other graphics like lines or boxes works fine, only bitmaps are not visible. Is there anybody with a solution in the world? Greetings from Hannover, Germany Markus Dr-Kuulun
I forgot my code:
CDC dc; dc.CreateCompatibleDC(pDC); CBitmap b; b.LoadBitmap(IDB\_BITMAP1); dc.SelectObject(&b); pDC->StretchBlt(100,100,200,200,&dc,0,0,48,48,SRCCOPY); pDC->MoveTo(0,0); pDC->LineTo(100,100);
The line is visible but not the bitmap. Dr-Kuulun
-
I forgot my code:
CDC dc; dc.CreateCompatibleDC(pDC); CBitmap b; b.LoadBitmap(IDB\_BITMAP1); dc.SelectObject(&b); pDC->StretchBlt(100,100,200,200,&dc,0,0,48,48,SRCCOPY); pDC->MoveTo(0,0); pDC->LineTo(100,100);
The line is visible but not the bitmap. Dr-Kuulun
Hi Dr-Kuulun I run your code and this work. I enter CDC *pDC=GetDC(); that I dont find in your code CDC dc; CDC *pDC=GetDC(); dc.CreateCompatibleDC(pDC); CBitmap b; b.LoadBitmap(IDB_BITMAP1); dc.SelectObject(&b); pDC->StretchBlt(100,100,200,200,&dc,0,0,48,48,SRCCOPY); pDC->MoveTo(0,0); pDC->LineTo(100,100);