Azzera filtri
Azzera filtri

How can I open a PDF in a standalone application?

48 visualizzazioni (ultimi 30 giorni)
Bruj_gv
Bruj_gv il 31 Lug 2024 alle 12:38
Commentato: Walter Roberson il 13 Ago 2024 alle 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 Commento
Walter Roberson
Walter Roberson il 13 Ago 2024 alle 20:46
My hypothesis is that FILE_TEST.pdf is not in the default directory that the standalone app runs under. See ctfroot

Accedi per commentare.

Risposte (2)

Steven Lord
Steven Lord il 31 Lug 2024 alle 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 Commento
Bruj_gv
Bruj_gv il 12 Ago 2024 alle 12:38
Thank you very much for your proposed solution. Unfortunately, it is also not working for Mac.

Accedi per commentare.


Image Analyst
Image Analyst il 31 Lug 2024 alle 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 Commenti
Bruj_gv
Bruj_gv il 12 Ago 2024 alle 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 il 13 Ago 2024 alle 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?

Accedi per commentare.

Categorie

Scopri di più su Application Deployment in Help Center e File Exchange

Prodotti

Community Treasure Hunt

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

Start Hunting!

Translated by