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 12:04, 21 April 2013 by Unnamed Poltroon (Talk)

(diff) ← Older revision | Latest revision (diff) | Newer revision → (diff)

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 available through the Eclipse Git server: http://git.eclipse.org/c/examples/org.eclipse.examples.imageutils.git/

Back to the top