- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Get Direct Link
- Report Inappropriate Content
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
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Get Direct Link
- Report Inappropriate Content
Re: combine all JPEG into one PDF
Use append to combine. Question closed. Thanks.
1 REPLY 1
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Get Direct Link
- Report Inappropriate Content
Re: combine all JPEG into one PDF
Use append to combine. Question closed. Thanks.