Resize layer to fit canvas - Gimp

2019-03-09 22:36发布

问题:

I'm currently using Gimp to resize some images. I'm a web developer but I don't really use image manipulation software much as most of the images are provided by designers so the Gimp tool is very unfamiliar to me. I've looked through all of the tutorials and help guides on the Gimp site but I cannot find the answer to the simplest of questions:

How do you resize a layer to fit within the current canvas whilst maintaining the aspect ratio?

I'm essentially setting a fixed size on my Canvas and importing an image as a layer into my project. What I then wish to do is scale this much larger image down so that is can fit within the Canvas with the aspect ratio preserved. I have found a way of scaling the Canvas to fit a layer but this is not what I am looking for.

Any help would be greatly appreciated.

回答1:

This is easy to do, but among the hundreds of possible options to be put on the program UI, it was not "elected" to be there.

The way out is to use the program's scripting capabilities to perform the action: what have to be determined programatcially is whether the ratio of the image/layer is larger on the width or height, and use this ratio to scale tha layer, and then center the layer.

For your convenience, I wrote some Python code for this in a single line, in a way you can just copy and paste on the python console (filters->python->console) to apply the effect on the top layer of the most recent open image.

img = gimp.image_list()[0]; layer = img.layers[0]; factor = min (float(img.width) / layer.width, float(img.height) / layer.height); layer.scale(int(layer.width * factor), int(layer.height * factor)); layer.set_offsets((img.width - layer.width) / 2, (img.height - layer.height) / 2)

Since this can be done, but is not practical, even more because it does not allow you to pick the image or layer to resize, I formated it as a python-script for GIMP as well. Just check your edit->preferences->folders->plug-ins for your plug-in directory, paste the contents bellow as a file there (if on Windows, the file must have the ".py" extension. On Linux and Mac OS, any extension would work, but you have to give the file the "exectuable" property" ).

After restarting GIMP, you will have the new command conveniently located on your Layer menu:

#! /usr/bin/env python
# coding: utf-8

from gimpfu import *

def scale_layer_to_canvas_size(img, layer):
    pdb.gimp_image_undo_group_start(img)
    factor = min (float(img.width) / layer.width,
                 float(img.height) / layer.height)

    layer.scale(int(layer.width * factor), int(layer.height * factor))
    layer.set_offsets((img.width - layer.width) / 2,
        (img.height - layer.height) / 2)
    pdb.gimp_image_undo_group_end(img)

register("scale-layer-to-canvas-size",
    "Scale layer to canvas size",
    "Scales the layer to canvas size, keeping the aspect ratio",
    "João S. O. Bueno", "Public domain", "2014",
    N_("Scale layer to canvas size..."),
    "*",
    [(PF_IMAGE, "image",       "Input image", None),
     (PF_DRAWABLE, "layer", "Input drawable", None), ], [],
    scale_layer_to_canvas_size,  menu="<Image>/Layer/",
    )

main()

Note it is the same code than above, but "img" and "layer" are now suplied by GIMP when picking the action from the menu, and there are two extra calls so that both scalignand centering are "undone" as a single action - the remaining code is justtheneeded boiler plate to register the function with GIMP



回答2:

That feature is not in gimp for some reason. An alternative without any scripts is:

Layer -> Scale Layer


回答3:

After shrinking my canvas using Image -> Canvas (and centering the layers as desired), the Layer -> Layer to Image Size did the trick (without scaling the image). This is with gimp 2.8.16



回答4:

  1. On your toolbox choose scale layer
  2. Click the image/layer you want to scale
  3. On the left side option for layers choose selection instead of layers/path
  4. Then resize the scale.
  5. Choose OK after done resizing.
  6. Right click on the image and select Image > Fit Image to Selection.
  7. Right click again choose Layer > Fit Layer to selection.