- Messages
- 19,708
- Name
- Darren
- Edit My Images
- Yes
on the wish list
Could it give the option to alter the profile of the picture - thinking I often have the pic in RBG and like it in SRgB for web or photobox.
sRGB like stuff............................
on the wish list
Could it give the option to alter the profile of the picture - thinking I often have the pic in RBG and like it in SRgB for web or photobox.
Just thinking - might it be worth having some version control in the program. Im getting lost with all the brilliant changes
Allan
Also I tried using the copyright text line to put text on the picture, It put the text on but not in the middle. This was at 800 x800 - infact very little change to the script that gets downloaded
Files saves well
With the copyright text, perhaps as well as having the X and Y co-ords I wonder if there might be a way where I could just say middle and it puts the middle of the text into the middle of the pic. At the moment I have tried 50, 50 but the copyright shows over to the right. Just a thought![]()
The location is the top left of the text, do you want an option to center your text at the point? It shouldn't be difficult and would make sense. Let me know. All these examples add to the script.
If you did a full install with CS3 you'll find 4 scripting guides at
C:\Program Files\Adobe\Adobe Photoshop CS3\Scripting Guide
assuming you didn't change any of the paths
Hmmm having some trouble with the copyright image overlay.
If I set the values of IM_X and IM_Y to 10 each, the logo appears top left... but if I set them to something like 90 each it appears smack bang in middle and not bottom right where I would expect (and desire)
What have I done wrong? I've been staring at this code for ages trying to figure it out!
Thanks very much!
Its been rather too long since I stared at code for hours! Was driving me batty!
I've hacked even that version around as I want my logo to be an exact offset position from the bottom right hand corner and not derived from a percentage of the image size as this will vary on portrait vs landscape (or, god forbid, if I start using whacky non 2:3 aspect ratio crops!)
Perhaps if you are looking for other suggestions, then perhaps a way of setting such a hard pixel offset from each of the corners, all selectable with variables.
If I hadn't gone so code blind, I'd offer to code it myself, but my bodged version is too nasty to share![]()
Oh its always fun to find a coder who just loves another suggestion for an extra feature
Thanks in advance!
Right new version 1.02
So if you want to place your icon at a size of 80x80 pixels 140 pixels from the right hand side and 120 pixels from the bottom (note this includes the border) you would use the following code:
// Displaying copyright IMAGE
var DisplayCopyrightImage = true;
var IM_Name = "~/Documents/Signature.png";
var IM_XY_Units = abs_br; // percentage, abs_tl, abs_tr, abs_bl, abs_br
var IM_X = 140; // X location by percentage or absolute as per above
var IM_Y = 120; // Y location by percentage or absolute as per above
var IM_size = 80; // Height as a Percentage or absolute depending on above
var IM_Transparency = 85;
IM_XY_Units is set to abs_br because we want this fixed to the bottom right corner.
IM_size is in pixels because IM_XY_Units is based on an absolute value.
Hi, Having problem getting my head around the absolute image size, my copyrigt image is 150 X 59 Pixels if I set it to 150 it distorts, I take it this is to do with it not being square, any idea how I can get this to work.
Thanks for your files, I have fixed the bug. It was re-sizing in both directions the same (and my test image was square!!).
Version 1.03 now uploaded
Thanks for that seems to work for me now, only one small nigle though (sorry) in the script when you go to the bit to set the logo size, it says in your promts to set height, have found it is width it is looking for, just a small one and nothing drastic.
Thanks for all your hard work and effort on this script![]()
......Uploaded version 1.03b (not changing the version number for a comment!)
I have been using this script and love it very much.... But i am wondering is there a way to use the script without it resizing the image?
.........