Re: Can I translate a layer in fractions of a pixel?
Just in case anyone else with a similar problem stumbles on this thread, here's what transpired: After deciding on the scale-up/scale-down method to get 0.2 pixel accuracy on translation, I needed to...
View ArticleRe: Is it possible to script a Pause, allowing brushing etc
hey JJMack can you provide an example..
View ArticleRe: Actions/scripts for image analysis
What kind of Scripts do you want? Maybe Scripts fall short of your needs anyway compared to proper plugins.
View ArticlePelin noise aka Render > Clouds
When you use Render > Clouds it fills a layer with .. random clouds (Looks like perlin noise to me!). If you were to repeat the process, you would get slightly different looking clouds. I'm guessing...
View ArticleRe: Opening files one by one
Does this help? #target photoshopvar theFolder = Folder.selectDialog ("select folder");if (theFolder) {var theFiles = theFolder.getFiles(/\.(jpg|tif|eps|psd)$/i);for (var m = 0; m < theFiles.length;...
View ArticleRe: Pelin noise aka Render > Clouds
I guess you should look into creating proper Photoshop plugins, but that takes C or C++ knowledge if I understand correctly.
View ArticleRe: Pelin noise aka Render > Clouds
This works in Photoshop CS4 on Mac OS X (but the randomSeed parameter is just ignored in CS): function clouds (randomSeed) { var desc = new ActionDescriptor (); desc.putInteger (charIDToTypeID...
View ArticleRe: Pelin noise aka Render > Clouds
Ghoulfool wrote: Sadly the images are not the same. Yes, calling the clouds function with two different random seed values will obviously produce two different images, but calling the fonction with the...
View ArticleRe: Pelin noise aka Render > Clouds
Sorry, I should have made that clear.In CS2, generating clouds from the script with the same seed does not produce the same results. However, I've just run it on a collegue's machine and in CS5, it's...
View ArticleRe: Is it possible to script a Pause, allowing brushing etc
It more important to understand that it is not possible to pause an action or a script. That you can program both to simulate a pause. What is good about that is everything is programmed into a...
View ArticleRe: Actions/scripts for image analysis
For now, a good set of binary image morphology functions would be useful (erode, dilate, open, close, etc.). And yes, maybe plug-ins is the better term. The only ones I know of, from Reindeer Graphics,...
View ArticleRe: Re: Opening files one by one
Wow. You're a hero - this worked perfectly. Just one more thing! I want to open these pdfs with certain settings so I'll add the below, but if you could just show me where to add the pdfOptions in the...
View ArticleBatch save old files in new documents with same name but with one addition.
Hi, sorry for the confusing headline.. I'm trying to write a script and I'm really having a struggle. Problem: I want to batch save files as new documents, with the old name but with the addition...
View ArticleRe: Batch save old files in new documents with same name but with one addition.
With CS5 or newer you can download the Image Processor Pro automate plug-in script it can name the output files the way you want. Once installed into Photoshop you will fid it under menu...
View ArticleRe: Selecting the brightest pixels
So i guess before i ask for any script i must come up with a way of doing it manually that works fast... How long would your offered method take, if it was scripted?
View ArticleRe: Batch save old files in new documents with same name but with one addition.
I know about this, the thing is this though: I don't want to output a just a copy of the file but with a new name. I specificly needs the content of one file to be paste into another document and then...
View ArticleRe: Batch save old files in new documents with same name but with one addition.
Taruz wrote: I know about this, the thing is this though: I don't want to output a just a copy of the file but with a new name. I specificly needs the content of one file to be paste into another...
View ArticleWhen using the Save Layer Comps to PDF Script, can you change the PDF...
When using the Save Layer Comps to PDF Script, can you change the PDF settings. I need both Smallest File Size and Press Quality? Thanks in advance to the group for assisting with this matter. — John
View Article