Ranchero's Big Cat Scripts plugin lets you run Applescripts and shell scripts from a contextual (right-click) menu on a selected file or folder. Scripts are stored in ~/Library/Application Support/Big Cat Scripts/Files. Here's a script to convert any image file to PNG:
on main(filelist)
repeat with this_file in filelist
set the target_path to (choosefilenamedefaultname"newimage.png") asstring
try
tell application "Image Events"
launch
-- open the image fileset this_image toopen this_file
-- save in new filesave this_image as PNG infile target_path with icon
-- purge the open image dataclose this_image
end tell
onerror error_message
display dialog error_message
end try
endrepeatendmain