Results 1 to 3 of 3

Thread: GIF Extractor + Viewer Update

  1. #1

    Thread Starter
    Fanatic Member BenJones's Avatar
    Join Date
    Mar 2010
    Location
    Wales UK
    Posts
    629

    GIF Extractor + Viewer Update

    Hi this is an update of my GIF extractor that also been updated as a GIF viewer to see new features below: Hope you like the new update comments and suggesting welcome.

    Preview of Frames.
    Save selected frames.
    Save all frames.
    Copy selected frame to clipboard.
    Edit selected frame in mspaint
    Updated the programs icon
    More Image save formats

    Screen shot:
    Attached Files Attached Files
    Last edited by BenJones; Apr 1st, 2012 at 02:45 PM.

  2. #2
    Master Of Orion ForumAccount's Avatar
    Join Date
    Jan 2009
    Location
    Canada
    Posts
    2,802

    Re: GIF Extractor

    A good check you can do before you attempt to extract is check to make sure that you can access that frame dimension, otherwise you will get a generic GDI+ error:
    Code:
    Dim img = Image.FromFile("C:\test\orion.gif")
    Dim guids = img.FrameDimensionsList
    
    If Array.IndexOf(guids, FrameDimension.Time.Guid) > -1 Then
        Dim count = img.GetFrameCount(FrameDimension.Time)
    
        For i = 0 To count - 1
            Dim frame = img.SelectActiveFrame(FrameDimension.Time, i)
    
        Next
    
    End If
    Last edited by ForumAccount; Mar 29th, 2012 at 09:54 AM.

  3. #3

    Thread Starter
    Fanatic Member BenJones's Avatar
    Join Date
    Mar 2010
    Location
    Wales UK
    Posts
    629

    Re: GIF Extractor

    Thanks ForumAccount I add this to the new update when I do it.

Posting Permissions

  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts
  •  



Click Here to Expand Forum to Full Width