0

I need to be able to print ID cards out of a rails club membership app I am creating. Is there anything available that does something like this? If there is no such thing available, does anyone have any general suggestions on how to implement card printing from scratch?

4

1 回答 1

1

我认为打印身份证与在 Web 应用程序中打印任何其他页面没有什么不同。那么您是否可以创建一个看起来像您想要的 ID 卡的视图,然后:

  1. 使用特殊的“打印版本”链接打开没有布局的 ID 模板,您可以简单地打印,或者
  2. 使用 CSS 媒体查询仅打印 ID 卡的容器元素,或
  3. 只需打印整个布局并将身份证从中间剪下即可。

还是您有更具体的需求?

于 2013-09-01T23:47:25.763 回答