Showing Images in an Formless app!

Collapse
X
 
  • Time
  • Show
Clear All
new posts
  • amin85
    New Member
    • Mar 2009
    • 6

    #1

    Showing Images in an Formless app!

    Hello,
    How can I write a formless application to view images?
    Thanks
  • amin85
    New Member
    • Mar 2009
    • 6

    #2
    Display Filter

    Hello,
    I want to read current dispayed image on monitor(Everyth ing, including Windows, apps, movies, ... whatever you see on the screen) as input then implement an image processing algorithm on it and then show it!
    It should happen REAL-TIME & CONTINUOUS.
    At last what the user feels is a colorful filter on his screen!
    Please Help.
    What's the right solution?
    Thanks

    Comment

    • tlhintoq
      Recognized Expert Specialist
      • Mar 2008
      • 3532

      #3
      If you have no form, how do you plan to guide the user to selecting the picture file?

      Comment

      • amin85
        New Member
        • Mar 2009
        • 6

        #4
        Actually it's some part of other app!
        The complete question is another topic in .NET section, named "Display Filter".
        Thanks

        Comment

        • tlhintoq
          Recognized Expert Specialist
          • Mar 2008
          • 3532

          #5
          The two threads have been merged to keep everyone with some input able to track this as one project.

          Comment

          • tlhintoq
            Recognized Expert Specialist
            • Mar 2008
            • 3532

            #6
            Screen recorders seem like spyware to me

            Originally posted by amin85
            Hello,
            I want to read current dispayed image on monitor(Everyth ing, including Windows, apps, movies, ... whatever you see on the screen) as input then implement an image processing algorithm on it and then show it!
            It should happen REAL-TIME & CONTINUOUS.
            At last what the user feels is a colorful filter on his screen!
            Please Help.
            What's the right solution?
            Thanks
            I'm having trouble understanding the idea of monitoring and recording the entire screen in real time PLUS showing it. If you show what you are recording, then you are recording the window in which you are showing etc. A mirror reflecting a mirror comes to mind.

            Further, the need to have this be a formless (invisible/hidden/covert) screen recorder makes me think it falls in the realm of spyware.

            Comment

            • amin85
              New Member
              • Mar 2009
              • 6

              #7
              Ok, Let's make it more clear.
              There is no spyware!!
              It captures the screen then PERFORMS AN IMAGE PROCESSING ALGORITHM on it and then shows it.
              It will be some thing like "MagicLensM ax" or "MagicalGla ss".
              Is it ok?

              Comment

              • tlhintoq
                Recognized Expert Specialist
                • Mar 2008
                • 3532

                #8
                So a screen capture app

                It should happen REAL-TIME & CONTINUOUS.
                The fact that you want to be capturing continuously is what makes it seem suspicous.

                But.. Ok... benefit of the doubt. You wan to to create a screen capture application is what you are saying. Is that right?

                There are tons of tutorials on this topic.
                Hit Google with C# screen capture how-to [SEARCH]
                in one search

                Comment

                • amin85
                  New Member
                  • Mar 2009
                  • 6

                  #9
                  Actually there is nothing suspicous since the user roles... Just like "Magical Glass"! Everything is optional.
                  I know how to capture using GDI/GDI+, but they're really slow! I'm looking for a DirectDraw or other fast method.
                  Now the main problem is how to show the filtered picture in fullscreen! & also formless. I think if you could check "MagicLensM ax-Shareware" or "MagicalGla ss-Freeware" there will be no doubt!
                  OR GENERALLY I'D BE HAPPY TO KNOW YOUR SOLUTION!
                  Thanks alot.

                  Comment

                  • tlhintoq
                    Recognized Expert Specialist
                    • Mar 2008
                    • 3532

                    #10
                    Now the main problem is how to show the filtered picture in fullscreen! & also formless. I think if you could check "MagicLensM ax-Shareware" or "MagicalGla ss-
                    Form properties

                    FormBorderStyle .None
                    WindowState.Max imized

                    Comment

                    • amin85
                      New Member
                      • Mar 2009
                      • 6

                      #11
                      In this way the capture functions like "GetDC()", "GetWindowDC()" , ...
                      will capture my application form. But I need everything except my app window.
                      another question, What's the fastest capture method?
                      Is any FrameBuffer modifying way t implemnt this project?
                      Thanks

                      Comment

                      • tlhintoq
                        Recognized Expert Specialist
                        • Mar 2008
                        • 3532

                        #12
                        . Experiment.

                        Comment

                        Working...