Ask a Question related to Macromedia Director 3D, Design and Development.
-
John_Everist #1
sprite to jpeg export
Hello,
I've made an application where users can position 3D objects on a background.
Does anybody how to export the 3D sprite (not the stage) as a jpeg (or other
image file)? All the xtras I look at only export the cast member or the stage.
Thanks
John
John_Everist Guest
-
Can't Export To Jpeg Format
Help!!!!!!!!!! When I try to export files to jpeg format, a dialog box indicates that "due to insufficient memory it cannot be completed". I work... -
programmatically set Acrobat Export JPEGoptions (JPEG maximum, 600 dpi, RGB)
I am trying to create jpegs from a PDF file with 600 dpi and 300 dpi sometimes. Issue is I have to do it manually Edit Preferences - Convert from... -
Export As JPEG
In CS2 - i have a flat colour: C0/M100/Y79/K20 After exporting as jpeg and coverting in Photoshop i get no black value so the red is quite... -
Export to 200 dpi jpeg?
What would be a good way to approach this problem: I have some bumper sticker designs that are layed out as 60p3 wide by 18p3 high. I need to export... -
Can Flash Player export jpeg (ie screenshot of Animation)?
Hi folks, It was suggested to me by a fellow Flasher that MX movies can be made to export a screenshot of the animation, ie 'Build Your Own... -
Agustín María Rodríguez #2
Re: sprite to jpeg export
John_Everist wrote:
Use the Sharp Image Export Xtra ([url]http://www.sharp-software.com/[/url]) and if> Hello,
>
> I've made an application where users can position 3D objects on a background.
> Does anybody how to export the 3D sprite (not the stage) as a jpeg (or other
> image file)? All the xtras I look at only export the cast member or the stage.
ony exports to JPG from a member, then assing the image of the 3D sprite
to a member:
sprite3Dimg= (the stage).image.crop(sprite(1).rect).duplicate()
member("image dummy").image = sprite3Dimg
Good luck,
--
Agustín María Rodríguez | Partner
Methanoia Studio | [url]http://www.methanoia.com[/url]
---------------------------------------------------
[url]www.onwine.com.ar[/url] > Macromedia Director demos & code
Agustín María Rodríguez Guest
-
John_Everist #3
Re: sprite to jpeg export
Ah - this is good!
A further question - is it possible to improve the image size of the image?
Obviously as the sprite is 3D I could (in theory) made am image any pixel size
I wanted. My stage size is 800x600 - is it possible to create an exported image
with a size of 2000x1500? Perhaps by increasing the stage and 3D window at the
moment of export. Has any body tried this?
Thanks.
John_Everist Guest
-
Agustín María Rodríguez #4
Re: sprite to jpeg export
John_Everist wrote:
Yes, I did. You can increase the size of the stage and 3D sprite on the> Ah - this is good!
>
> A further question - is it possible to improve the image size of the image?
> Obviously as the sprite is 3D I could (in theory) made am image any pixel size
> I wanted. My stage size is 800x600 - is it possible to create an exported image
> with a size of 2000x1500? Perhaps by increasing the stage and 3D window at the
> moment of export. Has any body tried this?
>
> Thanks.
fly and get its image. Or you can also set the defaultRect property of
the 3D member to rect(0,0,2000,1500) and then get the image property of
the 3D member. Take into account that there´s a bug in Win98 that
produces a memory leak if you repeatedly get the 3D member´s image.
member("3D").defaultRect = rect(0,0,2000,1500)
member("image Dummy").image = member("3D").image
Good luck,
--
Agustín María Rodríguez | Partner
Methanoia Studio | [url]http://www.methanoia.com[/url]
---------------------------------------------------
[url]www.onwine.com.ar[/url] > Macromedia Director demos & code
Agustín María Rodríguez Guest
-



Reply With Quote

