A generic error occurred in GDI+问题对应~

Bitmap.save(): A generic error occurred in GDI+ Try the following code You will get the above mentioned error:A generic error occurred in GDI+.

Dim  oBitmap  As  Bitmap        
oBitmap 
=   New  Bitmap( " c:/example.jpg " )        
Dim  oGraphic  As  Graphics    
oGraphic 
=  Graphics.FromImage(oBitmap)    
Dim  oBrush  As   New  SolidBrush(Color.Black)        
Dim  ofont  As   New  Font( " Arial " 8 )        
oGraphic.DrawString(
" Some text to write " , ofont, oBrush,  10 10 )        
oBitmap.Save(
" c:/example.jpg " ,ImageFormat.Jpeg)    
oBitmap.Dispose()    
oGraphic.Dispose()

       This problem occurs because until the bitmap object is disposed, it creates a lock on the underlying image file. So you can save the newly generated file with different name but not overwrite the file because of lock. Now suppose you want to overwrite the file then create another bitmap from old bitmap. dispose the object of old bitmap, process new bitmap object and save the new bitmap object with original file name. The above chunk of code should be written in the following way.

 

Dim  oBitmap  As  Bitmap oBitmap  =   New  Bitmap( " c:/example.jpg "
Dim  oGraphic  As  Graphics 
'  Here create a new bitmap object of the same height and width of the image. 
Dim  bmpNew  As  Bitmap  =   New  Bitmap(oBitmap.Width, oBitmap.Height) 
oGraphic 
=  Graphics.FromImage(bmpNew) 
oGraphic.DrawImage(oBitmap, 
New  Rectangle( 0 0 , _ bmpNew.Width, bmpNew.Height),  0 0 , oBitmap.Width, _ oBitmap.Height, GraphicsUnit.Pixel) 
'  Release the lock on the image file. Of course, 
'
 image from the image file is existing in Graphics object 
oBitmap.Dispose() 
oBitmap 
=  bmpNew 
Dim  oBrush  As   New  SolidBrush(Color.Black) 
Dim  ofont  As   New  Font( " Arial " 8
oGraphic.DrawString(
" Some text to write " , ofont, oBrush,  10 10
oGraphic.Dispose() 
ofont.Dispose() 
oBrush.Dispose() 
oBitmap.Save(
" c:/example.jpg " , ImageFormat.Jpeg) 
oBitmap.Dispose() 
  • 0
    点赞
  • 0
    收藏
    觉得还不错? 一键收藏
  • 0
    评论

“相关推荐”对你有帮助么?

  • 非常没帮助
  • 没帮助
  • 一般
  • 有帮助
  • 非常有帮助
提交
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值