Fitness.com
Advertisement

Go Back   Sports Forum > Community > Graphics > General Photoshop Board

General Photoshop Board

Topics cover anything to do with Photoshop outside of those forums below.


» Site Navigation
 > Shop
» Current Poll
Best 5 club teams in history of Football:
Liverpool 1977-1978 - 100.00%
1 Vote
Real Madrid 1956-1960 - 0%
0 Votes
Juventus 1985 - 0%
0 Votes
Milan 1989-1990 - 100.00%
1 Vote
Ajax 1971-1973 - 0%
0 Votes
Santos 1962-1963 - 0%
0 Votes
Torinho 1940's - 100.00%
1 Vote
Ajax 1995 - 0%
0 Votes
Flamengo 1981 - 100.00%
1 Vote
Benfica 1961-1962 - 100.00%
1 Vote
Total Votes: 1
You may not vote on this poll.
» Stats
Members: 103,356
Threads: 84,986
Posts: 1,031,253
Top Poster: Karky (9,545)
Welcome to our newest member, ankkaewrae
» Fitness Shop
If you register for free, you will be able to post threads, vote on polls and lots more. If you have problems with the registration or logging in, please contact the administrator.

Reply
 
LinkBack Thread Tools Display Modes
Old 10-05-2007, 02:04 PM   Please help, need to convert 1200 images Post #1
Guest
 
Posts: n/a
Default Please help, need to convert 1200 images

Hi,

I need to convert 1220 jpg images to black & white, a size of 36x12 mm and 240dpi.
I understand how to make an action and a droplet but the issues are;

1, How can I get Photoshop to resize the images to a width of 36 mm OR a height of 12 mm and then stretch the canvas size to the right width or height? Some images width are higher than their height (of course) and vice versa (but the converted images needs to be exactly 36x12 mm)

2, When I tried to make an action and a droplet I got dialogs all the time with questions about jpg quality or something about feather.. How can I get the droplet to just do it without asking about some of the images?

Thanks!
  Reply With Quote
Old 10-05-2007, 03:52 PM   Please help, need to convert 1200 images Post #2
Joe Blow
 
Join Date: Sep 2004
Posts: 2
Rep Power: 0
guitarslinger is an unknown quantity at this point
Default Re: Please help, need to convert 1200 images

You could add a script to part of your action to do the re-sizing and canvas size.

Paul.

Code:
var startRulerUnits = preferences.rulerUnits;
preferences.rulerUnits = Units.PIXELS;
doc = activeDocument;
fitImage(340);
CanvasResize();
preferences.rulerUnits = startRulerUnits;

function CanvasResize(){
	if (doc.width < doc.height) {
activeDocument.resizeCanvas(113, 340, AnchorPosition.MIDDLECENTER);
} else
{
activeDocument.resizeCanvas(340, 113, AnchorPosition.MIDDLECENTER);	
	}
}
function fitImage(newImgSize) { 
   if (doc.width > doc.height) { 
     doc.resizeImage(newImgSize, undefined, undefined, ResampleMethod.BICUBICSHARPER);
     } 
   if (doc.width < doc.height) { 
     doc.resizeImage(undefined, newImgSize, undefined, ResampleMethod.BICUBICSHARPER);
     } 
   if (doc.width == doc.height) { 
     doc.resizeImage(newImgSize, newImgSize, undefined, ResampleMethod.BICUBICSHARPER); 
     } 
   }
guitarslinger is offline   Reply With Quote
Old 10-05-2007, 03:59 PM   Please help, need to convert 1200 images Post #3
Joe Blow
 
Join Date: Sep 2004
Posts: 2
Rep Power: 0
guitarslinger is an unknown quantity at this point
Default Re: Please help, need to convert 1200 images

Sorry I did not set the resolution.
This should work now.
Paul.

Code:
var startRulerUnits = preferences.rulerUnits;
preferences.rulerUnits = Units.PIXELS;
doc = activeDocument;
fitImage(340);
CanvasResize();
preferences.rulerUnits = startRulerUnits;

function CanvasResize(){
	if (doc.width < doc.height) {
activeDocument.resizeCanvas(113, 340, AnchorPosition.MIDDLECENTER);
} else
{
activeDocument.resizeCanvas(340, 113, AnchorPosition.MIDDLECENTER);	
	}
}
function fitImage(newImgSize) { 
   if (doc.width > doc.height) { 
     doc.resizeImage(newImgSize, undefined, 240, ResampleMethod.BICUBICSHARPER);
     } 
   if (doc.width < doc.height) { 
     doc.resizeImage(undefined, newImgSize, 240, ResampleMethod.BICUBICSHARPER);
     } 
   if (doc.width == doc.height) { 
     doc.resizeImage(newImgSize, newImgSize, 240, ResampleMethod.BICUBICSHARPER); 
     } 
   }
guitarslinger is offline   Reply With Quote
Old 10-05-2007, 05:00 PM   Please help, need to convert 1200 images Post #4
Guest
 
Posts: n/a
Default Re: Please help, need to convert 1200 images

Thanks a lot! I will try this.
  Reply With Quote
Old 10-08-2007, 10:42 AM   Please help, need to convert 1200 images Post #5
Guest
 
Posts: n/a
Default Re: Please help, need to convert 1200 images

I'm sorry, I am not sure how to use this :/
  Reply With Quote
Old 10-08-2007, 07:49 PM   Please help, need to convert 1200 images Post #6
Joe Blow
 
Join Date: Sep 2004
Posts: 2
Rep Power: 0
guitarslinger is an unknown quantity at this point
Default Re: Please help, need to convert 1200 images

Save the file with a .jsx extention IE: resize.jsx
then open one of the documents, start recording a new action, the first steps being.
File - Scripts -Browse (to where you have saved the script)
(The script will run and do the re-sizing etc)
Then do your save and stop recording.
This action can now be batched using File - Automate - Batch ..
Hope that helps.

Paul.
guitarslinger is offline   Reply With Quote
Reply

Go Back   Sports Forum > Community > Graphics > General Photoshop Board

Bookmarks

Thread Tools
Display Modes


Similar threads to Please help, need to convert 1200 images
Thread Thread Starter Forum Replies Last Post
I need a car... £1200 - £1500, help me.!
I need a car... £1200 - £1500, help me.!: I need a car by x-mas, and have around £1500 to...
NepentheZ The Pub 9 12-01-2007 10:58 AM
Convert 06 saves to 07?
Convert 06 saves to 07?: Hi, I was just wondering if there were any ways...
Deano554 Skinning Hideout 1 02-08-2007 02:12 PM
Can someone please convert this picture
Can someone please convert this picture: i dont have a clue how, but if someone could...
Lozja Skinning Hideout 1 02-28-2005 10:04 AM
Convert to Profile
Convert to Profile: Problem: Have put new icc profiles into ...
Mitchcan General Photoshop Board 2 04-18-2004 06:33 PM
Hi All, a LLM convert.
Hi All, a LLM convert.: Hi Folks, No bragging just thought I'd say...
John Wards Scout Report 28 02-10-2004 05:58 PM

More threads of Fredrik.r
Thread Date Forum Replies Last Post
Please help, need to convert 1200 images
Please help, need to convert 1200 images: Hi, I need to convert 1220 jpg images to...
10-05-2007 General Photoshop Board 5 10-08-2007 07:49 PM

Other threads in forum General Photoshop Board
Thread Date Thread Starter Replies Last Post
Which font is used in the Manchester City logo?
Which font is used in the Manchester City logo?: Click here to see the logo See the "Superbia...
11-05-2006 The Yank 2 11-06-2006 04:57 PM
Graphic Designer(s) Wanted!!
Graphic Designer(s) Wanted!!: I run an Online Football Management Site, similar...
09-11-2006 Tryan 8 10-01-2006 04:03 AM
2 circles from one pic
2 circles from one pic: I've got a glam model image that I want to make...
11-14-2004 mitchellgrant 1 11-14-2004 08:41 PM
spot color question
spot color question: I am having a time with a Newsletter design. For...
09-07-2004 wilmsab 2 09-08-2004 10:37 AM
Can somebody help transparent type text
Can somebody help transparent type text: Hello to all, I need to know how I can get the...
04-24-2003 rhunt 9 04-25-2003 10:34 PM

» Online Users: 17
0 members and 17 guests
No Members online
Most users ever online was 2,128, 07-21-2008 at 08:27 PM.

All times are GMT +1. The time now is 05:32 AM.


Powered by vBulletin® Version 3.8.3
Copyright ©2000 - 2009, Jelsoft Enterprises Ltd.
Search Engine Optimization by vBSEO 3.2.0
Fitness.com | Weight Loss | Training & Fitness | BodyBuilding | Chinese | Spanish | French | Germany | Italian | Friend Codes |
You are viewing Please help, need to convert 1200 images.