Scrolling graphics

loning

New member
Joined
Oct 1, 2025
Messages
1
Programming Experience
Beginner
Hello, I need to write a graphics application, but I don't know if C Sharp or Java is sophisticated enough to let me do what I want to do.

I am developing a website. The company I work for needs to know if it is possible to have scrolling graphics. Let me give you and idea of what I am after. I need to display a graphical picture in a window.(The window Does not have to be an applet, but maybe this is the best way to do it)

I would like to be able to scroll a graphical picture in a window. For example, imagine 360 degree panoramic view of your office area. Suppose the view is stored in a graphics file format, like a gif or tif. Suppose only 1/10 of the view can be displayed in a window at any on time. But by pressing a button, you can scroll right or left to view the entire 360 degree picture of your window.

How do you do this in C sharp or Java. If someone knows of a better language or tool to do this, could you please tell me.

Thank you
 
Neither C# nor Java are inherently graphically oriented. It's what libraries and OS APIs that you have access to in those languages that dictate whether you can perform the scrolling. And if you are unwilling to use existing libraries, how much time do you have to write your own graphics library. Many C# and Java programs have been written to support scrolling of graphics.
 
Last edited:
Back
Top Bottom