18-09-15, 06:17 PM
ابشر
سويت برنامج بسيط يصور الشاشة واشخبط عليه شوي شرح تمام؟
الصور تكون مجمعة في ملف بدل ما ارفعها صورة صورة
ودي اجمعها في صورة gif
زي ما نسوي في Camtasia
الكود الاول زي ما انت قلت ياخذ بس صورة خلفية البوتن
حاولت استخدمه
Private Sub Form1_Paint(sender As Object, e As System.Windows.Forms.PaintEventArgs) Handles Me.Paint
' Construct a bitmap from the button image resource.
Dim bmp1 As New Bitmap("C:\VB4Arab\18092015\1.png")
Dim bmp2 As New Bitmap("C:\VB4Arab\18092015\2.png")
' Save the image as a GIF.
bmp1.Save("C:\AA.gif", System.Drawing.Imaging.ImageFormat.Gif)
bmp2.Save("C:\AA.gif", System.Drawing.Imaging.ImageFormat.Gif)
' Construct a new image from the GIF file.
Dim bmp3 As New Bitmap("c:\AA.gif")
' Draw the two images.
e.Graphics.DrawImage(bmp1, New Point(1, 1))
e.Graphics.DrawImage(bmp2, New Point(1, 2))
e.Graphics.DrawImage(bmp3, New Point(2, 3))
' Dispose of the image files.
bmp1.Dispose()
bmp2.Dispose()
bmp3.Dispose()
End Sub
لكن ما ضبط بياخذ بس اخر صورة تكون ظاهر في gif
سويت برنامج بسيط يصور الشاشة واشخبط عليه شوي شرح تمام؟
الصور تكون مجمعة في ملف بدل ما ارفعها صورة صورة
ودي اجمعها في صورة gif
زي ما نسوي في Camtasia
الكود الاول زي ما انت قلت ياخذ بس صورة خلفية البوتن
حاولت استخدمه
Private Sub Form1_Paint(sender As Object, e As System.Windows.Forms.PaintEventArgs) Handles Me.Paint
' Construct a bitmap from the button image resource.
Dim bmp1 As New Bitmap("C:\VB4Arab\18092015\1.png")
Dim bmp2 As New Bitmap("C:\VB4Arab\18092015\2.png")
' Save the image as a GIF.
bmp1.Save("C:\AA.gif", System.Drawing.Imaging.ImageFormat.Gif)
bmp2.Save("C:\AA.gif", System.Drawing.Imaging.ImageFormat.Gif)
' Construct a new image from the GIF file.
Dim bmp3 As New Bitmap("c:\AA.gif")
' Draw the two images.
e.Graphics.DrawImage(bmp1, New Point(1, 1))
e.Graphics.DrawImage(bmp2, New Point(1, 2))
e.Graphics.DrawImage(bmp3, New Point(2, 3))
' Dispose of the image files.
bmp1.Dispose()
bmp2.Dispose()
bmp3.Dispose()
End Sub
لكن ما ضبط بياخذ بس اخر صورة تكون ظاهر في gif
سبحان الله والحمدلله ولا إله إلا الله والله أكبر
اللهم اغْفِرْ لِلمؤمنين والمؤمنات والمسلمين والمسلمات الأحياء منهم والأموات


