Skip to main content

Notice: This Wiki is now read only and edits are no longer possible. Please see: https://gitlab.eclipse.org/eclipsefdn/helpdesk/-/wikis/Wiki-shutdown-plan for the plan.

Jump to: navigation, search

Examples/Image Utilities

< Examples
Revision as of 16:44, 2 March 2009 by Unnamed Poltroon (Talk) (Set up)

The ImageUtils example contains views and other components that add support for previewing and manipulating images (though currently only preview is provided).

Image Preview view

The image viewer plug-ins, curiously enough, displays an image derived from the current selection in the Eclipse workbench. The image below shows the image viewer in action.

Image-viewer.png

In this example, the contents of the image file selected in the Package Explorer is displayed. The plug-in is designed to be to display images for arbitrary selections. In fact, the image viewer is actually two plug-ins. The base plug-in, org.eclipse.examples.imageutils.viewer.ui, provides the view and the basic infrastructure required to display the image. The other plug-in, org.eclipse.examples.imagesutils.viewer.files, contains code that provides an image for a selected file. Other types of selected objects can contribute images by providing their additional plug-ins similar to this one.

Set up

The source code is also available through the Eclipse CVS server which you can access using the Team Project Set found here. This Team Project Set contains the information required by Eclipse to install the collection of projects that make up the image viewer.

Back to the top