How can I open a PDF in a standalone application?
11 次查看(过去 30 天)
显示 更早的评论
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 个评论
Walter Roberson
2024-8-13
My hypothesis is that FILE_TEST.pdf is not in the default directory that the standalone app runs under. See ctfroot
回答(2 个)
Steven Lord
2024-7-31
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.]
Image Analyst
2024-7-31
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 个评论
Image Analyst
2024-8-13
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?
另请参阅
类别
在 Help Center 和 File Exchange 中查找有关 Introduction to Installation and Licensing 的更多信息
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!