Welcome to the MacNN Forums.

If this is your first visit, be sure to check out the FAQ by clicking the link above. You may have to register before you can post: click the register link above to proceed. To start viewing messages, select the forum that you want to visit from the selection below.

You are here: MacNN Forums > Software - Troubleshooting and Discussion > Applications > Simple free .pdf to .jpg converter?

Simple free .pdf to .jpg converter?
Thread Tools
Professional Poster
Join Date: Oct 2000
Location: France
Status: Offline
Reply With Quote
Feb 22, 2005, 04:37 PM
 
Whenever I post a screenshot online or e-mail one, I have to convert it to .jpg to be sure that it will work easily. At the moment this involves me firing up Photoshop in Classic, which takes a while. Is there a piece of freeware that can do this simple task? I guess Graphic Converter can do it, but isn't that Shareware? If there's $$$ to pay, I can live with the system I currently use!
     
Addicted to MacNN
Join Date: Aug 2004
Location: FFM
Status: Offline
Reply With Quote
Feb 22, 2005, 04:39 PM
 
Preview

File->Export…->Format: JPEG
     
willed  (op)
Professional Poster
Join Date: Oct 2000
Location: France
Status: Offline
Reply With Quote
Feb 22, 2005, 04:47 PM
 
Originally posted by TETENAL:
Preview

File->Export…->Format: JPEG
Ah....!!!

I'd only looked at 'Save As', which in Preview does nearly nothing.

Cheers!
     
Posting Junkie
Join Date: Dec 2000
Status: Offline
Reply With Quote
Feb 22, 2005, 05:28 PM
 
Here's an even easier way to do it: Just hold down the Control key when you take the screenshot, so for example instead of Command-Shift-3 or Command-Shift-4, you'd use Command-Control-Shift-3 or Command-Control-Shift-4. This saves the picture on the clipboard instead of in a PDF file on the Desktop, so you can just paste it into your e-mail message instead of having to convert a PDF file.

Ticking sound coming from a .pkg package? Don't let the .bom go off! Inspect it first with Pacifist. Macworld - five mice!
     
Posting Junkie
Join Date: May 2001
Location: Brisbane, Australia
Status: Offline
Reply With Quote
Feb 22, 2005, 05:40 PM
 
What you are looking for is Kunvert

[ fb ] [ flickr ] [♬] [scl] [ last ] [ plaxo ]
     
Mac Elite
Join Date: May 2001
Location: Manchester, UK
Status: Offline
Reply With Quote
Feb 22, 2005, 06:28 PM
 
Originally posted by CharlesS:
Here's an even easier way to do it: Just hold down the Control key when you take the screenshot, so for example instead of Command-Shift-3 or Command-Shift-4, you'd use Command-Control-Shift-3 or Command-Control-Shift-4. This saves the picture on the clipboard instead of in a PDF file on the Desktop, so you can just paste it into your e-mail message instead of having to convert a PDF file.
I agree that this is the best solution. I believe the image is sent as a .TIFF attachment, FYI.
     
Posting Junkie
Join Date: Dec 2000
Status: Offline
Reply With Quote
Feb 22, 2005, 08:42 PM
 
Originally posted by philm:
I agree that this is the best solution. I believe the image is sent as a .TIFF attachment, FYI.
Oh, forgot to mention that. If you really need to save the graphic in a particular format (.jpg, .tiff, .png, or whatever you like), you can use Command-Control-Shift-(3 or 4) to put the image on the clipboard, then go to Preview, and choose "New from Clipboard" from the File menu (command-N). Then you can export to your preferred format just as you would when converting from PDF, but you'll have one less garbage file to throw away later.

I rarely ever use Command-Shift-(3 or 4) without the Control key.

Ticking sound coming from a .pkg package? Don't let the .bom go off! Inspect it first with Pacifist. Macworld - five mice!
     
Professional Poster
Join Date: Jan 2001
Location: brooklyn ny
Status: Offline
Reply With Quote
Feb 22, 2005, 09:32 PM
 
Originally posted by - - e r i k - -:
What you are looking for is Kunvert


i used to use kunvert, but i found that this made higher quality jpegs (so i switched!)
"At first, there was Nothing. Then Nothing inverted itself and became Something.
And that is what you all are: inverted Nothings...with potential" (Sun Ra)
     
Professional Poster
Join Date: Oct 2001
Location: London
Status: Offline
Reply With Quote
Feb 23, 2005, 04:09 AM
 
I stick this applescript droplet into the finder's toolbar.

they're not the smallest JPEGs, but it works
[php]
-- Makes this script a droplet:
on open theFiles
convertToJPEG(theFiles)
end open

-- Allow Folder Action Scripting:
on adding folder items to this_folder after receiving added_items
convertToJPEG(added_items)
end adding folder items to


to convertToJPEG(added_items)
repeat with this_file in added_items
try
tell application "Image Events"
launch
-- get the parent folder of the image file
set the parent_folder to the container of this_file
-- derive new name for the new image file
set the new_name to my add_extension(this_file, "jpg")
-- look for an existing file
if (exists file new_name of the parent_folder) then
error "A file named \"" & new_name & "\" already exists."
end if
-- open the image file
set this_image to open this_file
-- save in new file. The result is a file ref to the new file
set the new_image to save this_image as JPEG in file new_name of the parent_folder with icon
-- purge the open image data
close this_image
end tell
tell application "Finder"
-- delete the original file
delete this_file
end tell
on error error_message
display dialog error_message
end try
end repeat
end convertToJPEG

on add_extension(this_file, new_extension)
set this_info to the info for this_file
set this_name to the name of this_info
set this_extension to the name extension of this_info
if this_extension is missing value then
set the default_name to this_name
else
set the default_name to text 1 thru -((length of this_extension) + 2) of this_name
end if
return (the default_name & "." & the new_extension)
end add_extension
[/php]
You know it makes sense. ☼ ☼ ☼ Growl.
     
Dedicated MacNNer
Join Date: Jun 2002
Status: Offline
Reply With Quote
Feb 23, 2005, 11:12 AM
 
The best - and free - solution in my opinion is "QuickImage CM", which gives you a lot of nifty features accessible via the finder's contextual menu.

Like "Convert to" PSD/TIFF/PNG/PICT/BMP/JPEG (which is what you are looking for).
Or "Add/Remove Thumbnail Icon"
Or "Batch rename"

Highly recommended.
     
   
Thread Tools
Forum Links
Forum Rules
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts
BB code is On
Smilies are On
[IMG] code is On
HTML code is Off
Trackbacks are On
Pingbacks are On
Refbacks are On
Top
Privacy Policy
All times are GMT -5. The time now is 04:43 PM.
All contents of these forums © 1995-2011 MacNN. All rights reserved.
Branding + Design: www.gesamtbild.com
vBulletin v.3.8.7 © 2000-2011, Jelsoft Enterprises Ltd., Content Relevant URLs by vBSEO 3.3.2