cancel
Showing results for 
Show  only  | Search instead for 
Did you mean: 
  • Learn how to build custom Python data connectors and further customize JMP’s Data Connector Framework with the Python Data Connector Demo, available now in the JMP Marketplace!
  • See how to create experiments to support product design and ID useful product features. Register for June 12 webinar, 2pm US Eastern Time.

Discussions

Solve problems, and share tips and tricks with other JMP users.
Choose Language Hide Translation Bar
sam_t
Level III

combine all JPEG into one PDF

 

Hi,

 

I am able to save indivual JPEG & PDF file.

How can save all JPEG files into one PDF file?

 

Thanks.

 



Names Default To Here( 1 ); Open( "$SAMPLE_DATA/Big Class.jmp" ); biv = bivariate( y( :weight ), x( :height ) ); rbiv = biv << report; framebox = rbiv[Frame Box( 1 )]; framebox << Set Background Fill( 0 ); rbiv << save picture( "C:/" || "Big.JPG", JPEG ); rbiv << save picture( "C:/" || "Big2.JPG", JPEG ); rbiv << Close Window; Names Default To Here( 1 ); Open( "$SAMPLE_DATA/Big Class.jmp" ); biv = bivariate( y( :weight ), x( :height ) ); rbiv = biv << report; rbiv << save pdf( "C:/test.pdf" )
1 ACCEPTED SOLUTION

Accepted Solutions
sam_t
Level III

Re: combine all JPEG into one PDF

Use append to combine. Question closed. Thanks.

View solution in original post

1 REPLY 1
sam_t
Level III

Re: combine all JPEG into one PDF

Use append to combine. Question closed. Thanks.

Recommended Articles