HI,
I developed a system that allow user to upload PNG file to keep in a server, then when user need it, they can retrieve it back. The problem that i facing now is when a user want to print a PNG image(2500*3300), IE5.x will print it in a few pages. But if i using MS-PhotoEditor to print it, it is OK---fit in one page.
So, i have tried to call PhotoEditor by using PHP like this:
<a href="file://C:/Program Files/Common Files/Microsoft Shared/PhotoEd/PHOTOED.EXE">
it work, but now i cannot pass the filename to PhotoEditor.
But this command work if i run it in windows, not in HTML:
"file://C:/Program Files/Common Files/Microsoft Shared/PhotoEd/PHOTOED.EXE" /p C:/Ivy.gif
After i tested few times, i found that the double-quote(") in the command affect the whole thing. If i put the " in the html link command, the <a> function that called PhotoEditor will not work, but if i remove the ", it work---BUT i cannot pass the filename.
Anyone has faced the same problem b4? Can u share with me how u overcome this problem?
Please feel free to suggest solution for me?
Thankz.