Click here to Skip to main content
15,881,938 members
Please Sign up or sign in to vote.
1.00/5 (1 vote)
I am looking for the project in VB.NET with the following options.Let's say we have picture box and picture in it. When i clicked on the picture to zoom it the program calculate pixels of the zoom part. Or the other option is when I have video. Can someone show me this kind of project?

What I have tried:

Dim fs As FileStream

OpenFileDialog1.Filter = "JPG files (*.jpg)|*.jpg|" & "BMP Files (*.bmp)|*.bmp|" _
    & "TIF Files (*.tif)|*.tif|" & "PNG Files (*.png)|*.png|" & "ALL Files (*.*)|*.*"
OpenFileDialog1.Title = "Select an Image File"
If OpenFileDialog1.ShowDialog() = Windows.Forms.DialogResult.OK Then
    currentfilename = OpenFileDialog1.FileName
    If currentfilename.ToUpper.EndsWith(".JPG") Or _
    currentfilename.ToUpper.EndsWith(".BMP") Or _
    currentfilename.ToUpper.EndsWith(".TIF") Or _
    currentfilename.ToUpper.EndsWith(".PNG") Then
       If Not (Pic.Image Is Nothing) Then
             Pic.Image.Dispose()
             Pic.Image = Nothing
       End If
       fs = New FileStream(currentfilename, IO.FileMode.Open, IO.FileAccess.Read)
       Pic.Image = Image.FromStream(fs)
       original = Pic.Image
    End If
End If
Posted
Updated 7-Aug-17 21:44pm

1 solution

Here is a project using the ffmpeg library: FFMPEG Video Converter with Progressbar VB.NET[^]
Here you can find how to use the ffmpeg zoom commands: Zoom video using ffmpeg commands - Super User[^]

If you want a WPF solution, you can try WPF-MediaKit: GitHub - Sascha-L/WPF-MediaKit[^]
But I could not find much documentation about it, except this: Home · Sascha-L/WPF-MediaKit Wiki · GitHub[^]

Here is a C# project: EVR Presenter in pure C# with Direct3D Video Rendering[^]
 
Share this answer
 
v3

This content, along with any associated source code and files, is licensed under The Code Project Open License (CPOL)



CodeProject, 20 Bay Street, 11th Floor Toronto, Ontario, Canada M5J 2N8 +1 (416) 849-8900