cancel
Showing results for 
Show  only  | Search instead for 
Did you mean: 
The Discovery Summit 2025 Call for Content is open! Submit an abstract today to present at our premier analytics conference.
Get the free JMP Student Edition for qualified students and instructors at degree granting institutions.
Choose Language Hide Translation Bar
View Original Published Thread

combine all JPEG into one PDF

sam_t
Level III

 

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.