-
-
Notifications
You must be signed in to change notification settings - Fork 2.7k
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
[feat] Provide print API #4917
Comments
It turns out that there is a JS event called |
@alimehasin how this event how this event will tell how may printers are connected to the system? |
Hello @rizwan92, the
As quoted in my previous comment |
I do not know why this issue's priority is medium. It is a very essential part of building a desktop application. I really want to launch my application using Tauri |
@rizwan92 Tauri is an open source project depending on it's contributors. For example by finding out the cross platform support by the underlying webviews for printing, and seeing what the common ground is? Referencing https://tauri.app/v1/references/webview-versions/ if you need more insight in the webviews. |
I am looking forward to the silent printing API, because my app needs this API to print small tickets and price tags |
@Beanow I could not find any cross-platform solution for webviews. I tried writing my own solution in rust but it is way too hard for me I think I need to practice more rust first to get it done. i will open the source code so other can get help and contirbute |
Now it's stable: MicrosoftEdge/WebView2Feedback#1331 |
Let me understand, is this functionality not yet available in Tauri? Is the problem currently unresolved? |
Correct, it's still unresolved. This is also why this GitHub issue is still open :) |
I opened a tracking issue in our plugin repo where this feature will be implemented at some point: tauri-apps/plugins-workspace#293. Please do not take this as a "We'll implement this feature now", this is just me trying to get the ball rolling. |
To perform a silent print, you can use plugin Tauri Plugin Printer. However, currently, it only supports Windows. |
However, it must send files in PDF format, and its printing function is not as good as "electron". |
Is there a good solution now? I need to silently print an entire long webpage. |
The only thing keeping my team away from Tauri is this issue, is there any ETA, attempt or desire to actually implement this? |
No.
Nothing recently that i know of.
Yes, otherwise we would close this issue. |
Is there any solution for this now , Any plugins ? I think Webview2 actually have Methods For this : webviewPrint |
Ok I think I'm kinda stucked by this lol. Please, is it at least possible to use native window.print() with a html visible content ? |
As far as i know window.print() should work. |
Ok I think that would be a workaround for now. Thank you for the good work there. Glad I bet on Tauri when it started back in the days xD. |
any progress on this guy? this seem to be critical problem already? |
This is really important, I can't use tauri until this is developed |
I'm concerned about this issue as well. For now, where I need to use silent printing, I use Electron. As far as I know, you can print using |
There is an issue generating PDF on webkitgtk, it seems not really possible given the upstream bug https://bugs.webkit.org/show_bug.cgi?id=212814 I started an implementation of print options, but PDF generation might be difficult to get where webkitgtk is used. |
I need this api its really important, I hope this gets resolved as soon as possible. |
For now I workaround this by including node and puppeteer as a sidecar executable, but increases the binary size a lot See:
|
There is perhaps a way to make WebKitGtk print using the PDF print printer, but this virtual printer might not be programmable as well as the others. |
This plugin (tauri-plugin-printer) is just a hack it doesn't actually print the current webview instead it uses a library called html2pdf which is not that good unfortunately for many use cases. Nothing beats the browser at rendering and producing high fidelity pdf files. So this feature is really essential. |
Just use electron instead of tauri+puppeteer, plus electron has multi window feature, child window, silent printing and a lot more. But if tauri can catch up to it, it will be a better solution. |
I think I'll stop there at my attempts at PDF generation, I updated the PR to keep the ability to define options for printing, but I will find another way for generating PDF. Most probably I'll spawn a local web server and open the user browser to it and let the user use the system print dialog for PDF generation or real printing. |
jspdf works as a substitute until tauri catches up |
Describe the problem
Tauri lacks a print API and this make it very difficult for electron based apps that perform lots of work with printers to migrate to Tauri, there are many use cases
visible: false
(window.print()
triggered automatically after page load)Describe the solution you'd like
Provide print API
Alternatives considered
At least I hope to see an event the get fired when the printing dialog closed
Additional context
I have seen
Print to Printer and related options
checked in this issueBut electron has rich API regarding to printing comparing to Tauri
The text was updated successfully, but these errors were encountered: