Gallery.py: Difference between revisions

From Scribus Wiki
Jump to navigation Jump to search
Line 4: Line 4:
As stated in the USAGE notes, if you select your frames in the '''Outline''' dialog (note that you select multiple frames with Ctrl-click in the dialog, as opposed to Shift-click on the page itself), it can be easier than scrolling down the physical pages. You might notice that, for some reason, the frames are listed in reverse alphanumeric order in the '''Outline''' dialog.
As stated in the USAGE notes, if you select your frames in the '''Outline''' dialog (note that you select multiple frames with Ctrl-click in the dialog, as opposed to Shift-click on the page itself), it can be easier than scrolling down the physical pages. You might notice that, for some reason, the frames are listed in reverse alphanumeric order in the '''Outline''' dialog.
===gallery.py===
===gallery.py===
Here is another way of choosing images. In this case, we use a '''fileDialog()''' to choose images one by one. When you have chosen all the images you wish, hit '''Cancel''' in the dialog. After this, you then get the option to resize as desired.
In this method of choosing images, we use a '''fileDialog()''' to choose images one by one. When you have chosen all the images you wish, hit '''Cancel''' in the dialog. After this, you then get the option to resize as desired.


One source of irritation with the '''fileDialog()''' command is that each time it is invoked, it starts at your home directory, which is unlike the behavior on the canvas when you '''Get Image''', where the most recently chosen directory pops up at first. One way to ease this a bit might be to put the images you will select into a directory named AAAtemp so that it will show up easily. An advantage of this image file selection method is that the images are loaded into frames in the order they are selected unlike in '''gallery.py''', and in addition you get to preview them before selecting.
One source of irritation with the '''fileDialog()''' command is that each time it is invoked, it starts at your original directory, which is unlike the behavior on the canvas when you '''Get Image''', where the most recently chosen directory pops up at first. One way to ease this a bit might be to put the images you will select into a directory named AAAtemp so that it will show up easily. An advantage of this image file selection method is that the images are loaded into frames in the order they are selected and in addition you get to preview them before selecting. If you use this in 1.4.x versions, you may need to right-click filenames in order to see them more than briefly.


You might find this script an alternative to using '''InfoBox.py''' for images, since you can do multiple frames at once. You would, of course, have to note the column width so you could enter that in the resizing dialog. Also after running remember to set '''TextFlows''', or add that as a command in the script after '''setScaleImageToFrame()'''.
You might find this script an alternative to using '''InfoBox.py''' for images, since you can do multiple frames at once. You would, of course, have to note the column width so you could enter that in the resizing dialog. Also after running remember to set '''TextFlows''', or add that as a command in the script after '''setScaleImageToFrame()'''.

Revision as of 15:17, 10 December 2016

This article is part of the Scripts series.

Here is another script to automatically load images. Rather than the set layouts that other scripts generate, this one relies on the user to have a number of image frames created and selected, on one or more pages. Select images one by one. If you run out of frames or images, the script quits. Meanwhile, if you have Python Imaging Library, it will resize your frames proportionally to the image (as written with an arbitrary width of 250 points). What this means is that you could just have tiny frames, where you mainly are selecting some X,Y position on the page for the frame, not worrying about sizing it.

As stated in the USAGE notes, if you select your frames in the Outline dialog (note that you select multiple frames with Ctrl-click in the dialog, as opposed to Shift-click on the page itself), it can be easier than scrolling down the physical pages. You might notice that, for some reason, the frames are listed in reverse alphanumeric order in the Outline dialog.

gallery.py

In this method of choosing images, we use a fileDialog() to choose images one by one. When you have chosen all the images you wish, hit Cancel in the dialog. After this, you then get the option to resize as desired.

One source of irritation with the fileDialog() command is that each time it is invoked, it starts at your original directory, which is unlike the behavior on the canvas when you Get Image, where the most recently chosen directory pops up at first. One way to ease this a bit might be to put the images you will select into a directory named AAAtemp so that it will show up easily. An advantage of this image file selection method is that the images are loaded into frames in the order they are selected and in addition you get to preview them before selecting. If you use this in 1.4.x versions, you may need to right-click filenames in order to see them more than briefly.

You might find this script an alternative to using InfoBox.py for images, since you can do multiple frames at once. You would, of course, have to note the column width so you could enter that in the resizing dialog. Also after running remember to set TextFlows, or add that as a command in the script after setScaleImageToFrame().

#!/usr/bin/env python
# -*- coding: utf-8 -*-
# gallery.py
# created 2016.11.20  Gregory Pittman

"""
USAGE

Before running this script, you should have created and selected one or more image frames.
Run the script, after which the script informs you of your selection number, then asks for a 
file.

Once you choose an image, there is a loop that repeatedly asks for another image file. Hit Cancel
to break out of the loop.

You next are asked what width you wish frames to be resized to (default 250 points), but if you enter
0 (zero), no resizing will be done.
The script will quit either when you run out of selected frames or run out of images in the
selection list.

HINT: Using the Outline dialog can facilitate frame selection, especially when you are selecting
frames on more than one page. The order of selection of frames seems to matter in trials of 
this script. The order of selection of images does determine the order in which they are placed.

"""

import sys
import os

try:
	import scribus
except ImportError:
	print 'Unable to import the scribus module. This script will only run within'
	print 'the Python interpreter embedded in Scribus. Try Script->Execute Script.'
	sys.exit(1)

try:
    from PIL import Image
    pil_found = 1
except ImportError:
    pil_found = 0


if not scribus.haveDoc():
	scribus.messageBox('Error','You must have a document open',scribus.ICON_WARNING,scribus.BUTTON_OK)
	sys.exit(2)

original_units = scribus.getUnit()
scribus.setUnit(scribus.UNIT_POINTS)
framecount = scribus.selectionCount()
if framecount == 0:
    scribus.messageBox('Scribus - Script Error','There is no object selected. Please select at least one image frame and try again.',scribus.ICON_WARNING, scribus.BUTTON_OK)
    sys.exit(2)
if framecount == 1:
        f = 'frame'
else:
        f = 'frames'
imageframes = []
images = []
frame = int(0)
nextimage = 0

scribus.messageBox('Image File', 'You have selected ' + str(framecount) + " " + f,scribus.ICON_NONE, scribus.BUTTON_OK)
while 1:
        image = scribus.fileDialog('Select Images', 'When finished, click Cancel(*.*)',haspreview=True)
        if image == '':
                break
        images.append(image)
nrimages = len(images)
frame_width = scribus.valueDialog('Size for Width', 'Change this to the standard width you desire, in points.\nChange to 0 to opt out of resizing.',"250")
if frame_width == "0":
    pil_found = 0 # now you pretend you don't have PIL
frame_width = float(frame_width)
while nextimage <= nrimages - 1:
    newimage = images[nextimage]
    currentframe = scribus.getSelectedObject(frame)
    if pil_found == 1:  # if you don't have PIL, frame will not be resized
        im = Image.open(newimage)
        xsize, ysize = im.size
        scribus.sizeObject(float(frame_width),float(frame_width*ysize/xsize),currentframe)
    scribus.loadImage(newimage, currentframe)
    scribus.setScaleImageToFrame(1,1,currentframe)
    frame += 1
    framecount -= 1
    nextimage += 1
    if framecount <= 0:
        break
scribus.setUnit(original_units)

Other Notes

One way of quickly setting up a page layout for an array of images would be to start out thinking about the width of frames you want and how many columns (best to think in points). For example, say I want some thumbnail-sized images, 100 pts wide. The width of my US Letter page between margins is 530 pts, the height 712 pts. So we'll estimate that I will get 5 columns and 7 rows. This will take 2 runs of the gallery.py script.

First I make an arbitrarily sized frame specifically at 40,40, where the corner of my margins is. Run the script for this one frame and set frame width to 100. Now select Item > Multiple Duplicate from the menu, pick the Rows and Columns tab, put in 7 rows, 5 columns. For the horizontal space we'll let Scribus to the math for 4 spaces with 30 pts to work with, and this comes to 7.5 pts. We then just match the vertical space at 7.5 also, click Ok.

OOPS! We can get 2 more rows in, what was I thinking! No matter, since Multiple Duplicate is a one-click undoable operation, so Undo back to our initial frame, go back to Multiple Duplicate for 9 rows, 5 columns, 7.5 pts horizontal gap and we'll make vertical gap 8 pts since we have a little extra space to work with, and click Ok.

Now, we run gallery.py again after selecting all of the frames, make sure to specify 100 pts for width, and there it is:

Thumbnailspage.png Ok, so I really like this, but this directory has a lot more than 45 images. Let's say it has 180. That's four of these pages, so Page > Copy for 3 copies. Now, select ALL the frames, including the first page, and run the script again, and don't forget to set width to 100 (but remember, if you do forget, just run the script again with the right setting, since all the frames will still be in the same X,Y positions). Be prepared for time to pass while this is loading so many images.

Further Notes After Testing

The first thing I found out when trying this out by making 4 copies of this page with 45 images is that even the page copying is very resource-intensive. So my advice would be first of all (saving a copy just in case), delete all the frames on this page except for the upper left one (remember, you can Undo), then delete its image – this will be easier than deleting all the images from all the frames. Now do the Multiple Duplicate for 9 rows and 5 columns, then copy this page of 45 empty frames, which will proceed MUCH faster – this is more or less instantaneous. After that, then select all the frames on all the pages, and run gallery.py one final time. On my computer, running the script to load 225 images took 7 minutes, and even after that Scribus was pretty sluggish. If your goal is to make a PDF from this, we know that PDF readers can much more easily handle a document with this many images.

Something else to consider about this script is that it can also be a substitute for the DirectImageImport script that comes with Scribus. You would have the additional step of pressing "I" (the keyboard shortcut), then clicking somewhere on the page, but the advantage is that you get to choose where the image is placed and you get to choose its size by assigning a width. Remember, when you simply click the page, you automatically create a 100 pt X 100 pt frame where you click. To me these outweigh the "disadvantages" of the extra step(s). You may find the gallery2.py below even more useful in that regard.