Guest User

Untitled

a guest
Jan 22nd, 2019
76
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.61 KB | None | 0 0
  1. foreach (OMath math in doc.Content.OMaths)
  2. {
  3. math.Range.Select();
  4. math.Range.CopyAsPicture();
  5.  
  6. System.Windows.Forms.IDataObject dobj = System.Windows.Forms.Clipboard.GetDataObject();
  7.  
  8. if( dobj.GetDataPresent(typeof(System.Drawing.Bitmap)) )
  9. {
  10. System.Drawing.Bitmap bitmap = (Bitmap)dobj.GetData(typeof(System.Drawing.Bitmap));
  11. bitmap.Save("C:\tempFolder\Image" + cnt + ".bmp", ImageFormat.Bmp);
  12. }
  13.  
  14. cnt++;
  15.  
  16. }
Add Comment
Please, Sign In to add comment