Copy link to clipboard
Copied
Wie kann ich "Generatives Erweitern" im Freistellungswerkzeug als Standard setzen?
Liebe Grüße
Severin
Copy link to clipboard
Copied
Copy link to clipboard
Copied
From my testing, it is only sticky per session. Perhaps a script can achieve this, but I am not a scripter. I will tag scripters who can provide the answer. If they can write a script to change to Generative Expand, then you can use File > Scripts > Script Events Manager to run the script on Photoshop Event > Start Application.
Copy link to clipboard
Copied
Da muss es eine einachere Möglichkeit geben. ich bin sicher, dass ich eine Lösung schon gesehen habe. Leider weiß ich nicht mehr wie es geht.
Copy link to clipboard
Copied
The setting seems to be sticky here (Photoshop 26.2.0 Mac OS 14.6.1).
Edit: Sorry, »Content-Aware Fill« appears to be sticky, »Generative Expand« not.
Copy link to clipboard
Copied
Leider nicht gefunden!
In Photoshop 25.12.1 ist "Generatives Erweitern" immer aktiv. In 26... ist es immer "Hintergrund" der Standard.
Ich möchte den Standard auf "Generatives Erweitern"setzen.
Copy link to clipboard
Copied
The following script is a bit of a hack/kludge. Perhaps another scripter can offer a more direct method of setting the tool properties without entering the interactive crop.
This code will interactively select the crop tool and set the default crop to the document width and height ready for extension in your preferred direction. Generative Expand is pre-selected.
var s2t = function (s) {
return app.stringIDToTypeID(s);
};
var descriptor = new ActionDescriptor();
var descriptor2 = new ActionDescriptor();
descriptor2.putUnitDouble(s2t("top"), s2t("pixelsUnit"), 0.000000);
descriptor2.putUnitDouble(s2t("left"), s2t("pixelsUnit"), 0.000000);
descriptor2.putUnitDouble(s2t("bottom"), s2t("pixelsUnit"), app.activeDocument.height.as("px"));
descriptor2.putUnitDouble(s2t("right"), s2t("pixelsUnit"), app.activeDocument.width.as("px"));
descriptor.putObject(s2t("to"), s2t("rectangle"), descriptor2);
descriptor.putUnitDouble(s2t("angle"), s2t("angleUnit"), 0.000000);
descriptor.putBoolean(s2t("delete"), false);
descriptor.putInteger(s2t("AutoFillMethod"), 0);
descriptor.putEnumerated(s2t("cropFillMode"), s2t("cropFillMode"), s2t("generative"));
descriptor.putEnumerated(s2t("cropAspectRatioModeKey"), s2t("cropAspectRatioModeClass"), s2t("pureAspectRatio"));
descriptor.putBoolean(s2t("constrainProportions"), false);
executeAction(s2t("crop"), descriptor, DialogModes.ALL);
https://prepression.blogspot.com/2017/11/downloading-and-installing-adobe-scripts.html
Copy link to clipboard
Copied
And when the Script is installed at the default location it can be assigned a Keyboard Shortcut.
Copy link to clipboard
Copied
And when the Script is installed at the default location it can be assigned a Keyboard Shortcut.
By @c.pfaffenbichler
100%!
And it can also be recorded into an action and a modifier F-key shortcut can also be used.
Get ready! An upgraded Adobe Community experience is coming in January.
Learn more