Clear Filters
Clear Filters

How can I open a PDF in a standalone application?

48 views (last 30 days)
Bruj_gv
Bruj_gv on 31 Jul 2024 at 12:38
Commented: Walter Roberson on 13 Aug 2024 at 20:46
I want to create a standalone using App Designer in Mac. I manage for instance to create a simple app with a single push button that opens a pdf file:
% Callbacks that handle component events
methods (Access = private)
% Button pushed function: Button
function ButtonPushed(app, event)
system('open FILE_TEST.pdf');
end
It works perfectly fine but when I do the compilation (after ensuring FILE_TEST.pdf is included in the MATLAB Compiler's "Files required for your application to run") the program does not open the pdf.
Has anyone some idea on how the above code can be modified to open the pdf in the application? This only happens for Mac, doing the same to get a .exe file using winopen seems to work.
Many thanks.
  1 Comment
Walter Roberson
Walter Roberson on 13 Aug 2024 at 20:46
My hypothesis is that FILE_TEST.pdf is not in the default directory that the standalone app runs under. See ctfroot

Sign in to comment.

Answers (2)

Steven Lord
Steven Lord on 31 Jul 2024 at 15:22
I would probably try calling the open function rather than using system.
You might need to explicitly add the openpdf function to the standalone application using the %#function pragma in the code you compile to create the application. [You can't call openpdf directly; it will be called by open when it sees you're trying to open a PDF file.]
  1 Comment
Bruj_gv
Bruj_gv on 12 Aug 2024 at 12:38
Thank you very much for your proposed solution. Unfortunately, it is also not working for Mac.

Sign in to comment.


Image Analyst
Image Analyst on 31 Jul 2024 at 14:56
I don't have a mac, nor a compiler anymore, but maybe try getting rid of open and letting the operating system figure it out just by the name of the file:
system('FILE_TEST.pdf');
Also, try putting the full path prepended to the base file name so it knows what folder to find it in. Like
folder = '\my stuff';
fullFileName = fullfile(folder, 'FILE_TEST.pdf');
commandString = sprintf('open "%s", fullFileName);
system(commandString);
I put double quotes around the filename because if the filename has any spaces in it, it will only pass the first "word" (up until the space) instead of the whole thing. The double quotes make it take the whole thing.
Does your compiled app bring up a console window? If not, don't use the -e option. See if there are any informative messages in the console window.
Lastly, see the FAQ:
If all that fails, call tech support.
  2 Comments
Bruj_gv
Bruj_gv on 12 Aug 2024 at 12:39
Thank you very much for your proposed solution. Unfortunately, it is still not working. I have contacted tech support but the the standalone compiled application does not open the pdf file.
Image Analyst
Image Analyst on 13 Aug 2024 at 20:31
Is that what they said? That Macs just simply can't open PDF files from compiled MATLAB programs?
I no longer have a compiler so I can't test anything for you. Are you sure you tried with a super simple 4 line program like I gave you? Or did you try it from within your original, massive, main program?

Sign in to comment.

Categories

Find more on Application Deployment in Help Center and File Exchange

Products

Community Treasure Hunt

Find the treasures in MATLAB Central and discover how the community can help you!

Start Hunting!