Closed. This question needs details or clarity. It is not currently accepting answers.
Want to improve this question? Add details and clarify the problem by editing this post.
Closed 9 years ago.
Improve this question
I was wondering if anyone knew how to add text to an existing pdf document using iTextSharp. I know this question has been asked before but I am trying to add a footer to certain pages in the bottom right hand corner of the document, none of the other posts have helped me and I cannot find any solid info on it elsewhere.
Adding a footer is done using PdfStamper and the GetOverContent() method. See TwoPasses.cs for an example. For more info on this example, please read chapter 6 of my book.
Note that the example assumes that the pages are of size A4 and that the lower-left corner has the coordinate x=0,y=0. You say you have found other answers (tell us where), but that they didn't help (tell us why not). A common mistake you may have found while searching for an answer is to make the wrong assumptions about the MediaBox and the CropBox of the existing PDFs. Unfortunately, you're not telling us what you've tried (and as a result you risk that your question will be closed).
Related
Closed. This question needs to be more focused. It is not currently accepting answers.
Want to improve this question? Update the question so it focuses on one problem only by editing this post.
Closed 4 years ago.
Improve this question
I have a requirement where i need to get all possible typos(if not all most) that can occur for a possible word. For example (word : user). User can type "usre" or "yser" something like that.
Currently i don't have anything in mind as to where i start. If anybody has already faced the similar situation and came with the solution, it would be helpful if you can help get kick start
Thanks in Advance.
Here is a wild idea.
Create a graph using the layout of a QWERTY keyboard (assuming that is the layout the user will be using), where every key will be a node and every node will be connected to the adjacent keys/nodes. For instance, the the node s will be connected with q,w,e,a,d,z,x and c.
Now, for a given word, substitute one or more letter with all neighboring nodes from the graph. So, the word user can produce uwer, uaer, uder and so on.
I hope this will help you.
Closed. This question needs details or clarity. It is not currently accepting answers.
Want to improve this question? Add details and clarify the problem by editing this post.
Closed 5 years ago.
Improve this question
Okay, so hopefully the issue was explained properly in the title, but if not then basically in my program I have an array which is loaded with a ton of data straight off a .csv file when the program is launched and so I need to make it so that when the set up is run the file destination of the .csv in the code is correct.
Otherwise it won't load the array with anything and so ultimately my question is how do I do that? Here are some screenshots of what I've already tried, and some snippets of code, if anyone could even point me in the direction of a YT video that may even be helpful enough, thanks StackOverflow users. https://pastebin.com/cEmZxujx
Maybe check the reference with
System.IO.File.Exists("filename")
Closed. This question needs details or clarity. It is not currently accepting answers.
Want to improve this question? Add details and clarify the problem by editing this post.
Closed 8 years ago.
Improve this question
I have one blank document say 'A' and one skeleton document say 'B'. In document B i added my custom header and footer for example: Footer contains one logo and address. And my requirement is during my document A generation, I need to copy the B's header and footer contents to the A's header and footer area. B's header and footer may contain the combination of text and image. How can I accomplish this using Microsoft.Office.Interop.Word. If any one need further clarification please let me know.
So finally i found the answer to my question. I am posting the code here so in future someone will benefit with this piece of code.
B.Sections[1].Headers[WdHeaderFooterIndex.wdHeaderFooterFirstPage].Range.CopyAsPicture();
A.Sections[1].Headers[WdHeaderFooterIndex.wdHeaderFooterFirstPage].Range.Paste();
B.Sections[1].Footers[WdHeaderFooterIndex.wdHeaderFooterFirstPage].Range.CopyAsPicture();
A.Sections[1].Footers[WdHeaderFooterIndex.wdHeaderFooterFirstPage].Range.Paste();
Closed. This question needs details or clarity. It is not currently accepting answers.
Want to improve this question? Add details and clarify the problem by editing this post.
Closed 9 years ago.
Improve this question
I want to generate a report by the Console Application to DOC and PDF how can I do this?
Use:Itextsharp
ITextSharp is a library used to create PDF documents. It provides all of the primitive functions necessary to create a PDF document. However, since all of the methods are based on primitive operations, it is easy to confuse the look and feel of a document without enforcing certain standards. This helper class provides two key benefits. First, it simplifies the creation of PDF documents. Second, it helps enforce standards in terms of the look and feel of a document.
Closed. This question needs details or clarity. It is not currently accepting answers.
Want to improve this question? Add details and clarify the problem by editing this post.
Closed 9 years ago.
Improve this question
Hi sirs I'm just wondering if is it possible for me to measure the height or width of an object using canny edge?
and if there's other way?
As #BartoszKP correctly stated, there are numerous ways on how to solve your problem. If, however, you want to go ahead and solve it with the help of the Canny edge detection you could do something like this:
Create Canny edge image
Do Hough line detection (here is an example in Emgu) to get geometrical information on where the lines in your image are - they might now represent your clothing article outline in a much more usable way
Use the geometrical information to rule out the non-shoulder lines - normally you should have all the information you need on all the lines (like where they are exactly in the image). That information might just enable you to throw away, let's say, the bottom end of the clothing article.
Use the geometrical information of the remaining lines to calculate your shoulder width or whatever you want to calculate.