• Apfeltalk ändert einen Teil seiner Allgemeinen Geschäftsbedingungen (AGB), das Löschen von Useraccounts betreffend.
    Näheres könnt Ihr hier nachlesen: AGB-Änderung
  • Das neue Jahr beginnt wie das alte - natürlich mit einem neuen Fotowettbewerb! Auch im Monat Januar freuen wir uns auf Eure Einsendungen. Wie es weitergeht, wisst Ihr ja - Hier geht es lang --> Klick

JPEG aus Indesign?

Thaddäus

Golden Noble
Registriert
27.03.08
Beiträge
18.569
Hi Leute

Habe mir in InDesign eine Visitenkarte gestaltet. Nun möchte ich diese als JPEG exportieren, habe aber keine Möglichkeit dazu gefunden.

Mit diesem Apple Script geht es teilweise:

Code:
tell application "Adobe InDesign CS5" 
	set ad to active document 
	set did_something to false 
	if (number of items in selection) > 0 then 
		set did_something to true 
		copy 
		set nuDoc to make document 
		tell document preferences of nuDoc 
			set page height to page height of document preferences of ad 
			set page width to page width of document preferences of ad 
		end tell 
		paste in place 
		export nuDoc format PDF type to file "Macintosh HD:temp.pdf" 
		close nuDoc saving no 
	end if 
end tell 
 
if did_something then 
	tell application "Adobe Photoshop CS5" 
		activate 
		open file "Macintosh HD:temp.pdf" as PDF with options ¬ 
			{class:PDF open options, resolution:300.0} 
	end tell 
end if

Allerdings wird dort nur der Textblock mit den Kontaktdaten an Photoshop exportiert. Kann mir da jemand weiterhelfen, sodass das gesamte Dokument als JPEG exportiert wird?