What's new
Photoshop Gurus Forum

Welcome to Photoshop Gurus forum. Register a free account today to become a member! It's completely free. Once signed in, you'll enjoy an ad-free experience and be able to participate on this site by adding your own topics and posts, as well as connect with other members through your own private inbox!

Search results

  1. P

    Scripting Measurement Scale script

    If you want to resize the document, the code would be... var doc = activeDocument; var Width = doc.width.as('cm'); doc.resizeImage(new UnitValue(Width,'cm'), undefined, 72, ResampleMethod.BICUBIC);
  2. P

    Scripting Measurement Scale script

    There should be no difference between your code and mine. I am using DOM and you are using AM. The only difference is I am checking it is not 72PPI before changing it.
  3. P

    Scripting Measurement Scale script

    There are times when only documents of 72PPI will work. But this seems as part of analysis. The code I provided will change the document to 72PPI if was anything else then change it back to what it was originaly. In your case, I think you just need. #target photoshop; var doc = activeDocument...
  4. P

    Scripting Measurement Scale script

    #target photoshop; var doc = activeDocument; var res = doc.resolution; //change to 72 PPI if(doc.resolution != 72) doc.resizeImage(undefined, undefined, 72, ResampleMethod.NONE); //Your code here //restore resolution to original if(res != 72) doc.resizeImage(undefined, undefined, res...
  5. P

    Can you find the mistake

    < 1 second, I have seen this one before :cheesygrin:
  6. P

    Baselining Images

    The Trim is doing what you were asking for in a script and no there is no tolerance. Sometimes it is quicker doing things manually, if they are not white then that is what you have to do. Checking each pixel would take hours, again making a selection of a row then checking the histogram would...
  7. P

    Baselining Images

    Have you tried using an action using Image - Trim ?
  8. P

    Batch Automation How to Batch Create New Files Combining Two Layers

    Here is a script and a short video on one way to do this. First you create the template by selecting the area where the picture goes, creating a new layer, fill the selection, add a layer mask. At this stage you can save your template for further use. Next. Open Bridge and select the documents...
  9. P

    Is it possible to copy Guides from one psd to other psd?

    Cameron McEfee wrote a Photoshop panel for guides that might be useful. The free versions on his site are here:- http://guideguide.me/versions/
  10. P

    Is it possible to copy Guides from one psd to other psd?

    Looks like he pinched my code. https://forums.adobe.com/thread/1018216?tstart=0 You can't trust anyone :wink:
  11. P

    How to make image fill screen to maximum as default

    Yes I can confirm this is not possible via action or script. Adobe has been ask for this for at least 5 years to my knowledge but they haven't responded.
  12. P

    Importing Variable data sets with UTF 8 BOM japanese characters

    It works for me if the csv file is saved as UTF8. Make sure when importing the dataset that you are importing as UTF8 as well. I tested using フィールド1 as the field name
  13. P

    Variable Troubles - Relative Path not importing

    Here is a Photoshop script that should clean your CSV file, it will prompt for the CSV file then write out a cleaned version with a suffix of Fixed
  14. P

    Patterns are blurry when reduced?

    This might be useful... https://bjango.com/articles/scalepatternsto100/
  15. P

    Duplicate layer multiple times at once?

    Here is a script that will let you run an action X times.
  16. P

    Scripting Photoshop Script to Paste Multiple Items

    If you want dots on the path you can run the script below. Make sure you have the "Map Overlay" layer selected before running the script. The script uses the same coordinates file.
  17. P

    Scripting Photoshop Script to Paste Multiple Items

    Ok here is an example: Create a text file with your coordinates as:- 1000,2100 1000,2200 1000,2300 1050,2350 1100,2400 1100,2500 1200,2500 1300,2500 1400,2500 1500,2500 1600,2700 1700,2800 Download the zip file, unzip and place the script in the relevant folder. PC:- C:/Program Files/Adobe/Adobe...
  18. P

    Scripting Photoshop Script to Paste Multiple Items

    Its posible to create a path with the xy coordinates then stroke the path. The text could also be added. The big question is how do you have this information? is it in a speadsheet? if so it could be saved to a CSV file and that used to populate your jpg. Also the size of the jpg would be...
  19. P

    Template Creation

    The three new layers should be the quadrants that are added. I wonder if you have a graphics refesh problem? Have you tried turning the visibility on/off on one of the layers? If this works you could try turning open GL off in the preferences to see if that helps. Also check you have the latest...
  20. P

    Template Creation

    Download the zip file, unzip and place the script in the relevant folder. PC:- C:/Program Files/Adobe/Adobe Photoshop CS#/Presets/Scripts/ Mac:- [hard drive]/Applications/Adobe Photoshop CS#/Presets/Scripts/ If Photoshop was open close and restart it. To run the script:- File - Scripts and...
Back
Top