similar to: PDF Format

Displaying 20 results from an estimated 100000 matches similar to: "PDF Format"

2008 Oct 02
0
Re: How to export data in pdf and excel format ?
PDF generation Prawn http://github.com/sandal/prawn/tree/master pdf writer http://ruby-pdf.rubyforge.org/pdf-writer/ ruby fpdf http://zeropluszero.com/software/fpdf/ Prawn is very good and well maintained in terms of development and new features added regards Senthil http://blog.railsfactory.com -- Posted via http://www.ruby-forum.com/.
2007 Mar 27
4
Gruff with PDF::Writer
Hello all Has anyone managed to embed gruff graphs into a PDF document using pdf::writer? The easy way (as far as I can see) would be to just save the gruff graph as a temporary file then read that file in pdf::writer. I was wondering if anyone had managed to get them working together directly? RJ -- Posted via http://www.ruby-forum.com/. --~--~---------~--~----~------------~-------~--~----~
2006 Mar 10
5
PDF::Writer Simpletable Iteration
Hello All: I have been working with <a href="http://ruby-pdf.rubyforge.org/pdf-writer/index.html">Austin Ziegler''s PDF::Writer</a> as a means to produce PDF documents from my Rails app. I am stumped on how to iterate through a collection of items and output them in a table format. The way I have tried it so far only returns the last item in the collection -
2006 Sep 29
1
building a pdf with an existing pdf as watermark/background
I''m starting on a small rails app and i need to generate a report in pdf format. i''ve generated pdfs before using pdf::writer without much problems, but for this project the company sent me a pdf ''watermark'' (or background template) that they want the report to be printed on.. instead of having them stock a bunch of the template stationary and have that paper
2007 Apr 16
7
pdf-file tot desktop with pdf/writer problem
Hi, I''m using pdf/Writer to generate a pdf-file, but whatever I do, it gets saved in folder of my app, and not on the users desktop. I''ve used pdf = PDF::Writer.new pdf.select_font "Times-Roman" pdf.text "Hello.pdf", :font_size => 12, :justification => :left File.open("hello.pdf", "wb") { |f|
2007 Oct 11
0
pdf-writer - SimpleTable - change font betweent columns
The client wants the top of the pdf laid out like this: From: John Smith To: Jane Doe 999-999-9999 888-333-3333 555 W. 55th Street 222 W. 55th Street Somewhere, Somestate 999999 Somewhere else, State 444555 They also want "From" and "To" to be bold, and the rest of the information to be normal font
2008 Mar 13
0
Template being ignored when attaching pdf in e-mail
The following code attaches my pdf with success. However, my e-mail template is not being rendered in the e-mail. Any idea''s why my template is ignored? require ''pdf/writer'' class NotifierRequest < ActionMailer::Base def inforequest(name, email, notice_request, message) @subject = ''Notice'' @body = {:name => name, :email
2007 Jun 14
3
Are there any HTML+CSS to PDF converters in ruby
Hi, I tried PDF writer , but it doesn''t have HTML to PDF Converter. Infact it is a PDF writer itself not a converter.. I''ve HTML pages with rich css or Strings with html+css such that they are converted to PDF. The idea is that web is all about RGB color model and when it comes to Digital Printing its all CMYK color model. My html page with rich css in
2006 Jun 01
8
[Pdf::Witer]
Is anyone using Pdf::Writer? I don know how to insert html tags in a pdf using Pdf::Writer, except <b> and <i> I think an idea is with Pdf::TechBook but i hadn''t seen any example till now. -- Cheers, ioana k&a http://boulangerie.wordpress.com/ -------------- next part -------------- An HTML attachment was scrubbed... URL:
2006 Sep 11
0
Print action to send body content to pdf-writer , which stra
I would like to give the user to execute an :action => ''print'' to get a pdf version of the current content in the displayed page (rendered by an :action =>''list'' I installed pdf-writer and played with it, but I don''t know how to give him the @content he needs... shoudl I re-execute all the list action before rendering ? or use Ajax to get
2008 Apr 09
0
PDF::Writer add_text_wrap
Wondering if anyone else had problems with the add_text_wrap of the pdf-writer gem? I have something that looks like the following below, but it does not wrap down to the next line, it just either runs off the page or stops before the page, depending on the width of the text_wrap. Anyone have any ideas? @additional_items = @user.additional_items pdf.add_text_wrap(310, 605, 300, @additional_items,
2007 Sep 14
2
how to use options in radio botton
Hi I am using radio botton,I am struggling to use options..following is my code.. <%= radio_button(''community'',''default'',0,options={:checked,:onClick=>"javascript:set_default(this);"})%> If i am using without checked option its working fine.If i use that its throwing error.... Please help me -- Posted via http://www.ruby-forum.com/.
2008 Sep 01
4
Generating Images/PDF Server-Side
Hi, I am working on a project where I need to generate a chart (a bit like a pie chart, but very customised) and insert this into a PDF document. Does anybody have any advice on ruby libraries (or other techniques) for doing this? Open to suggestions? The resulting PDF will be designed for printing and so ideally should be vector throughout (or any raster images 300dpi). I was thinking of some
2005 Dec 04
1
PDF Shipping Order Document Creation - Help, willing to pay...
ROR Community, I have to create a PDF document. I have looked at the various tools and I think PDF::Writer is the way I want to go. However, in looking through the demo''s, etc... I don''t see how to easily create the type of documents that I need without specifying every single coordinate along the way!!! I''ll do my best to describe: It is a pretty
2006 Aug 22
0
Re: Prag Programmers style PDF personalization
On 8/21/06, Julian ''Julik'' Tarkhanov <listbox-RY+snkucC20@public.gmane.org> wrote: > On 20-aug-2006, at 2:22, Austin Ziegler wrote: >> PDF::Writer doesn''t solve the Unicode problem yet. > Which brings our Unicode discussion that once happened into new > light :-) > thanks for the statement Not really. The Unicode problem for PDF support is wholly
2006 Aug 26
0
Re: Prag Programmers style PDF personalization
On 22-aug-2006, at 22:26, Austin Ziegler wrote: > Not really. The Unicode problem for PDF support is wholly unrelated to > my stance on Unicode vs. m17n Strings. The Unicode problem for PDF > support is mostly that the PDF standards doc is a stinking pile that > is almost impossible to understand without your eyes bleeding and even > harder to implement. ;) I just
2011 Nov 17
1
White lines on persp plots in pdf format
Hi, I am using the persp function to plot 3D surfaces, but the plots have "little white lines" when I print them to a pdf file (visible in Acrobat, Foxit, Evince, Xpdf and Gimp). This does not happen when I create png or tiff images. Here is some sample code: pdf("test.pdf") x <- seq(0,1,length=101) f <- dnorm(x, 0, 0.25) z <- c() for(i in 1:100) z <-
2007 Sep 04
0
Problem IN PDF generation
Hi, I am trying to explore the pdf generation using PDF:Writer. Is There any way to give the font style only for table text??.We can give text style for whole pdf document text but i want only inside table text?? Is there any way??/ -- Posted via http://www.ruby-forum.com/. --~--~---------~--~----~------------~-------~--~----~ You received this message because you are subscribed to the
2009 Mar 23
0
export to pdf, txt and the utf8-problem.
Hi, can''t seem to figure it out. I have text saved as UTF8 in my MySQL database, and it shows up fine in the browser. However, I want to export to pdf (pdf;writer) and csv-text. When I do that the accented foreign characters do not show up. I''ve tried to convert them before exporting, but I don''t seem to be able to get it right. (Iconv etc. do not seem to convert it.)
2008 Jan 13
0
Help with special characters in PDF Writer
How can I put these (á,é,í,ó,ú,ñ,€) in PDF Writer? -- Posted via http://www.ruby-forum.com/. --~--~---------~--~----~------------~-------~--~----~ You received this message because you are subscribed to the Google Groups "Ruby on Rails: Talk" group. To post to this group, send email to rubyonrails-talk-/JYPxA39Uh5TLH3MbocFFw@public.gmane.org To unsubscribe from this group, send email