Shape Collage 2.0 (Default branch)


 
Thread Tools Search this Thread
Special Forums News, Links, Events and Announcements Software Releases - RSS News Shape Collage 2.0 (Default branch)
# 1  
Old 02-02-2009
Shape Collage 2.0 (Default branch)

Image Shape Collage is an automatic photo collage maker that lets you create picture collages in less than a minute with just a few mouse clicks. Shape Collage creates collages using an intelligent machine learning algorithm that automatically places the photos in the collage and can arrange the photos to form different shapes. You can even save the collage as an Adobe Photoshop PSD file, and edit the collage afterwards in Photoshop or GIMP. Image

Image

More...
Login or Register to Ask a Question

Previous Thread | Next Thread

4 More Discussions You Might Find Interesting

1. Linux

make collage

I need a script that makes a collage out of all jpg files in a specific folder. Do you know any good ones for linux? (0 Replies)
Discussion started by: locoroco
0 Replies

2. Solaris

How to make man outputs in English look in good shape?

Hi, My question is how to make man outputs in English look in good shape. I use OpenSolais with a locale setting "LANG=ja_JP.UTF-8". Under this circumstance running "man something" shows Japanese translated man pages, but I need to read original English man explanations occasionally. "LANG=C... (2 Replies)
Discussion started by: fragile_it
2 Replies

3. Shell Programming and Scripting

V shape

Hi, Im new to UNIX and figured I should sign up to this board to get some help. I was wondering if someone can help me out with a CShell script. Im trying to get it to display a V shape of the word school. Using a while loop i.e S S C C H H OO L (1 Reply)
Discussion started by: SilverFang
1 Replies

4. Shell Programming and Scripting

shape up the script

HI all ! does anyone have an idea how can i make a script look better ?? what i mean is thah its a menu that is being activated with case options. i need it to look better , is there a way to do it on unix ?? (except with ==== & ****** ) 10x alot bye (1 Reply)
Discussion started by: udi
1 Replies
Login or Register to Ask a Question
Panner(3I)						    InterViews Reference Manual 						Panner(3I)

NAME
Panner - two-dimensional scrolling and zooming SYNOPSIS
#include <InterViews/panner.h> DESCRIPTION
A panner is an interactor that manipulates the perspective of another interactor to provide two-dimensional scrolling and zooming. A pan- ner is composed of a slider and several adjusters, including two zoomers and four movers. The slider's position and size reflect the cur- rent origin, size, and aspect ratio in the interactor's perspective. Dragging the slider around with the mouse changes the perspective's curx and cury members. PUBLIC OPERATIONS
Panner(Interactor*, int size = 0) Create a panner for the given interactor, optionally with the given width. If the size is 0, a reasonable default size is used. The panner's aspect ratio reflects that of the perspective. Slider(Interactor*) Slider::Handle(Event&) Slider::Reshape(Shape&) Slider::Update() A slider reflects and lets the user specify the visible portion of the view. A rectangle represents the visible area, while the area surrounding it represents the total area. Clicking and holding down any mouse button on the rectangle allows you to drag it to a different position within the total area. The perspective's current origin is shifted to reflect the new position when the button is released. Holding down the shift key while dragging the rectangle constrains its motion horizontally or vertically. Clicking outside the rectangle moves it in the corresponding one of eight directions; for example, clicking to the right of the rectangle moves it to the right. If the left mouse button is used, the movement increment equals the perspective's sx or sy member variables. The middle mouse button increments by lx or ly, and the right mouse button centers the rectangle around the cursor. The Reshape call sets the width of the slider to that of the passed Shape and calls Change on the parent interactor. Update redisplays the slider to reflect a change in the interactor's perspective. X DEFAULTS
The ``syncScroll'' resource specifies whether the slider should work in real-time or not. When synchronized scrolling is employed the interactor scrolls synchronously as the slider is dragged; otherwise the slider's outline follows the mouse during dragging, and the inter- actor is scrolled only after the user stops dragging the slider. Sliders will scroll synchronously if their syncScroll resource is set to ``on'' or ``true.'' SEE ALSO
Adjuster(3I), Interactor(3I), Perspective(3I) InterViews 15 January 1988 Panner(3I)