• Global community
    • Language:
      • Deutsch
      • English
      • Español
      • Français
      • Português
  • 日本語コミュニティ
    Dedicated community for Japanese speakers
  • 한국 커뮤니티
    Dedicated community for Korean speakers
Exit
0

Image View

Participant ,
Oct 03, 2019 Oct 03, 2019

Copy link to clipboard

Copied

Is there a way when I have the image/photo open in photoshop to change the view size setting. it's at 16.3% I would like to keep it at 25%, especially when I crop.

Thank you!

 

Views

1.4K

Translate

Translate

Report

Report
Community guidelines
Be kind and respectful, give credit to the original source of content, and search for duplicates before posting. Learn more
community guidelines

correct answers 1 Correct answer

Advocate , Oct 03, 2019 Oct 03, 2019

You can use the Script Event-Manager and this script...

setZoom( 25);

function setZoom( zoom ) {// as percent
   cTID = function(s) { return app.charIDToTypeID(s); }; // from xbytor
   var docRes = activeDocument.resolution;
   activeDocument.resizeImage( undefined, undefined, 72/(zoom/100), ResampleMethod.NONE );
   var desc = new ActionDescriptor();
   var ref = new ActionReference();
   ref.putEnumerated( cTID( "Mn  " ), cTID( "MnIt" ), cTID( 'PrnS' ) );
   desc.putReference( cTID( "null" ), 
...

Votes

Translate

Translate
Adobe
Community Expert ,
Oct 03, 2019 Oct 03, 2019

Copy link to clipboard

Copied

Votes

Translate

Translate

Report

Report
Community guidelines
Be kind and respectful, give credit to the original source of content, and search for duplicates before posting. Learn more
community guidelines
Community Expert ,
Oct 03, 2019 Oct 03, 2019

Copy link to clipboard

Copied

There isn't option in Preferences for percentage view settings or magnification level when opening/cropping images. You can not record action for this purpose either. You can record step in action to fit on screen but not to set magnification level to any particular percent beside hundreed 100% and two hundreds 200% what is available from View menu

Votes

Translate

Translate

Report

Report
Community guidelines
Be kind and respectful, give credit to the original source of content, and search for duplicates before posting. Learn more
community guidelines
Community Expert ,
Oct 04, 2019 Oct 04, 2019

Copy link to clipboard

Copied

LATEST

Agreed, however, it is possible to chain together available zoom levels to create an action that can reach 25% by starting at 100% then zooming out 4 times. Sure it’s clunky, but it works:

 

zoom25.pngexpand image

Votes

Translate

Translate

Report

Report
Community guidelines
Be kind and respectful, give credit to the original source of content, and search for duplicates before posting. Learn more
community guidelines
Advocate ,
Oct 03, 2019 Oct 03, 2019

Copy link to clipboard

Copied

You can use the Script Event-Manager and this script...

setZoom( 25);

function setZoom( zoom ) {// as percent
   cTID = function(s) { return app.charIDToTypeID(s); }; // from xbytor
   var docRes = activeDocument.resolution;
   activeDocument.resizeImage( undefined, undefined, 72/(zoom/100), ResampleMethod.NONE );
   var desc = new ActionDescriptor();
   var ref = new ActionReference();
   ref.putEnumerated( cTID( "Mn  " ), cTID( "MnIt" ), cTID( 'PrnS' ) );
   desc.putReference( cTID( "null" ), ref );
   executeAction( cTID( "slct" ), desc, DialogModes.NO );
   activeDocument.resizeImage( undefined, undefined, docRes, ResampleMethod.NONE );
}

Votes

Translate

Translate

Report

Report
Community guidelines
Be kind and respectful, give credit to the original source of content, and search for duplicates before posting. Learn more
community guidelines
Community Expert ,
Oct 04, 2019 Oct 04, 2019

Copy link to clipboard

Copied

Here is my tutorial on how to use Script Events Manager https://www.designeasy.co/2011/06/automate-photoshop-with-script-events.html and  https://www.designeasy.co/2018/06/how-to-automate-boring-tasks-using.html Feel free to ask any additional question if you need more help.

Votes

Translate

Translate

Report

Report
Community guidelines
Be kind and respectful, give credit to the original source of content, and search for duplicates before posting. Learn more
community guidelines
Participant ,
Oct 04, 2019 Oct 04, 2019

Copy link to clipboard

Copied

I know the zoom in and out.. I was just wondering if there was a preferred setting so when you open images in photoshop the image would be at 25% or 33% instead of 16.3%, especially after cropping.

Votes

Translate

Translate

Report

Report
Community guidelines
Be kind and respectful, give credit to the original source of content, and search for duplicates before posting. Learn more
community guidelines
Advocate ,
Oct 04, 2019 Oct 04, 2019

Copy link to clipboard

Copied

If you don't wanna use the Script Events Manager, use a shortcut to start the script (script must be in your scripts folder of PS)...

Votes

Translate

Translate

Report

Report
Community guidelines
Be kind and respectful, give credit to the original source of content, and search for duplicates before posting. Learn more
community guidelines
Participant ,
Oct 04, 2019 Oct 04, 2019

Copy link to clipboard

Copied

Gotcha.. Thank you!

Votes

Translate

Translate

Report

Report
Community guidelines
Be kind and respectful, give credit to the original source of content, and search for duplicates before posting. Learn more
community guidelines