Resize layer to fit canvas - Gimp

白昼怎懂夜的黑 提交于 2019-12-02 18:19:31

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

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

Layer -> Scale Layer

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

As of GIMP 2.10, this is included by default in GIMP under Layer -> Layer to Image Size

Denshio
  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.
易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!