Itextsharp: Getting Coordinates Of Image?
Dec 15, 2009in vb.net is it possible to get the coordinates of an image like if i do a
document.add (jpeg_image)
x_coordinate = jpeg_image.xcoordinate???????
in vb.net is it possible to get the coordinates of an image like if i do a
document.add (jpeg_image)
x_coordinate = jpeg_image.xcoordinate???????
I have created a PNG image that is 200 DPI, and perfectly sized for a landscape A4 page size. I needed to convert this to a PDF document, so I've used the iTextSharp library with the code below.This all works, however the image quality has degraded.
Public Sub ConvertPNGtoPDF(ByVal inputFile As String, ByVal outputFile As String)
Using fs As New FileStream(outputFile, FileMode.Create, FileAccess.ReadWrite, FileShare.None)
Dim document As New Document(PageSize.A4.Rotate, 0, 0, 0, 0)
[code]....
I have an instance where I have a logo image as part of some artwork..If a user uploads a new logo I have a form field which is larger than the default logo.I then use that form field to position the new image.
The problem is I need to set the background colour of that form field to white so that it covers the old logo in the event that the new image is smaller than the old logo..
what I have done is:foreach (var imageField in imageReplacements)
{
fields.SetFieldProperty(imageField.Key, "bgcolor", iTextSharp.text.Color.WHITE, null);
fields.RegenerateField(imageField.Key);
PdfContentByte overContent = stamper.GetOverContent(imageField.Value.PageNumber);
float[] logoArea = fields.GetFieldPositions(imageField.Key);
[Code]...
The problem with this is that the background colour of the field is set to white and the image then doesn't appear.. i remove the SetFieldProperty and RegenerateField commands and the image replacement works fine.is there a way to set a stacking order on layers?
i need to add a data table right after an image on a PDF in vb.net
[Code]...
i highlighted broccoli, buckwheat, butter, cabbage. these are all part of a data table that is supposed to go after the bottom SEVERE word because the entire thing that you see is one image called jpg2
I'm currently trying to extract an image from a pdf file using iTextSharp.
The pdf is made from a scanner: it has a single page that contains one big image.
When looking at the file I find the following:
<< /Type /XObject /Subtype /Image /Name /Obj3 /Width 2480 /Height 3507 /ColorSpace /DeviceGray /BlackIs1 true /BitsPerComponent 1 /Length 5 0 R /Filter /CCITTFaxDecode /DecodeParms << /K -1 /Columns 2480 >> >> stream
[Code].....
But, that doesn't work as I get one big black tiff file with different shades of gray on top.
Does anyone know a way how I can decode those CCITTFaxDecode images?
i have an image that i just want to place all the way at the bottom of the page. how do i do this?
View 2 Repliesthe user will pick an image on their hardrive and i will put it on a pdf file using itextsharp with vb.net. how do i manually set the dimensions of the picture?
View 1 RepliesI have iTextSharp creating a pdf for me in VB.net. Everything was working famously, except now I want to embed an image. I tried this:
Dim test = My.Resources.MyImage
Dim logo = Image.GetInstance(test)
This an error though:
'GetInstance' cannot be called with these arguments
It appears as though it expects a path, and is getting a System.Drawing.Bitmap type.
Is there any way that I can add a project resource image to my PDF?
I'm using iTextSharp to print a PDF document. Everything goes ok until I have to print the company logo in it. First I noticed that the logo had poor quality, but after testing with several images, I realize that was the iTextSharp rendering it poorly.The test I did to say this was to print the PDF using my code and then edit the document with Acrobat 8.0 and I drew an image. Then printed the two documents and saw the noticeable difference.My question is that if anyone know if this can be due to a scaling problem where I'm failing to tell iTextSharp how it must render the image or is an iTextSharp limitation.
[Code]...
I have an image resembling a chessboard inside a picturebox displayed on the screen at runtime. I am using Visual Basic in Visual Studio 2008. I need to determine when a user clicks on a particular part of the image. I am able to do this without a problem when debugging on my computer, where I can experiment with trial-and-error clicking to get the screen coordinates of the portion of the image of interest. Everything changes, however, when the program is run on a screen with a different resolution and coordinates.
I can easily get the coordinates for the picturebox that contains the image using PointToScreen. However, there seems to be no such property for the image within the picturebox, which is what I need.
Does anyone know how to set the x and y coordinates of the image inside a picturebox.
View 7 RepliesI have 2 images. One image is a large image and the second one is a small one. The small image has a copy of itself within the large image. I am wanting to find the coordinates of where the second image is located within the large image, a 'find feature' in other words. e.g, I might have an image with the word "Test" in it. And I want to find the coordinates of the letter 'e'...
View 8 RepliesI am placing and image using this [code]It works perfectly however when my document is extended to second or third page.. it does not stays on the first page.. it stays on same position however moves to the last page
View 1 RepliesI'm trying to automate using a remote ASP.NET website using the .NET WebBrowser control to simulate user input. I'm trying to call InvokeMember("click") on an image button on the remote site but it doesn't appear to be working and I suspect it is because the X,Y click coordinates that are submitted are both 0,0 (rather than representing real click coordinates). Is there any way I can programmatically set the submitted x,y coordinates to emulate a real click? (BTW I know I'm selecting the correct HTML element on the page so I've exhausted all other possible reasons why this is not working other than the x,y coords!)
View 1 RepliesI am trying to build a coordinates system but am having trouble with how to.. What I have sofar is a textbox that allows the user to enter a length. This length is user defined but never smaller then 610 in length since this is the minimum unit size we use to build timber frames. The overall length of a timber frame is infinite (well not really, but it is for what I want) the timber frame has beams every 610mm set apart from each other (this is a legal requirement) so I want my vb.net to set coordinates for each beam at intervals of 610 then write that coordinates system to a text based *.SCR file
[Code]...
I want to translate MouseArgEvent.Location (x,y) coordinates into my custom graph coordinates. Mouse Y coordinates increase from top to bottom while my grid's y value increase from bottom to top. Given my following code, I would need to create 21,500 separate conditional expression for 100(y) x 215(x) possible coordinate locations for my grid.
Sub OnMouseMove(ByVal e As System.Windows.Forms.MouseEventArgs)
If e.X > 48 AndAlso e.X < 50 AndAlso e.Y > 397 AndAlso e.Y < 399 Then
MessageBox.Show("about 0,0")
[code]....
I am using Stanav's PdfManipulation2.AddImageToPage(..., Pages) for iTextSharp library (v5.1.3) and was not able to add the image to specific pages: e.g. to add to only page 1 and 3 of a five pages PDF
Dim Pages() As Integer
Pages = New Integer() {1, 3}
PdfManipulation2.AddImageToPage(..., Pages)
Calling AddImageToPage() with the the optional Pages parameter will add the image to all pages though.
Develop a Company Logo application that allows users to draw shapes. The application should provide the user with RadioButtons to allow the selection of the next shape to be drawn. TextBoxes should be provided to allow the user to enter coordinates (X and Y coordinates) of the shape, the width and the height of the shapes. Users should also be able to change the shape�s colour.my question is how to allow the user to enter coordinates (X and Y coordinates) of the shape, the width and the height of the shapes and change the shape�s color from combo box. pro help
below is my code:
Public Class Form1
Dim mycolor As Color
Dim mypen As Pen
Dim mygraphics As Graphics
[code]....
I have a Geo-tagged snapshot (photo) captured with a my digital cam.
I want to read world coordinates (real coordinates) upon click on any pixel on this photo.
Is it possible to add a password protected pdf using itextsharp?
View 2 RepliesI have a bunch of PDFs that I'm just trying to open, resize the page, and then save. I'm also hoping that the file sizes will shrink significantly doing so. I am using iTextSharp and the resizing works just fine, but the file size is nearly identical, ever so slightly larger in fact. Here's the function I have now:
[Code]...
Is there a way to extract the value for APPEARANCE_NORMAL from each stamp in a PDF using iTextSharp? I know how to find all the Stamp annotations, but I am unsure how to get APPEARANCE_NORMAL.
View 6 Repliesin my document i am creating 3-4 pdfptables. at design time i dont know the size of the tables. i need to place the 2nd table right after the first, but i dont know the position of the first (i cant calculate it because i dont know how big it is). how do i know where to place the second table?
View 2 Replieswhy my tables are lapping over each other?
Dim datatable As PdfPTable = New PdfPTable(4)
Dim page As Rectangle = document.PageSize
datatable.TotalWidth = page.Width - document.LeftMargin - document.RightMargin
[code]....
even though im decrementing last_pos by the height of the previous table, they still lap over in a weird way like this:
for this line: c.WidthPercentage = 100F
i am getting this error:Error 1'WidthPercentage' is not a member of 'iTextSharp.text.Table'.
here's the entire code. it's taken directly from the tutorial
Imports System
Imports System.Drawing
Imports System.IO
Imports iTextSharp.text
Imports iTextSharp.text.pdf
[Code]...
I need to convert fdf files to pdf in asp.net using vb. I found some code that I'm trying to learn from. What I would like to do is upload the fdf file and then output a pdf to a directory and email it out. The fdf files are coming from a shared linux/php host (using the php fdf functions is all I can do here on this host) that are emailed to a central inbox. I'm going to pick up the files from the inbox and upload them to a win/asp.net box to convert to pdf.The code i found is below.
* Dim pdfFlat As New MemoryStream() * Dim pdfReader As New PdfReader(context.Request.MapPath(pdfFormFileName)) * Dim pdfStamper As New PdfStamper(pdfReader, pdfFlat) * ' bind fields from fdf... * Dim fdfReader As New FdfReader(context.Request.InputStream) * Dim pdfForm As AcroFields = pdfStamper.AcroFields *
[code]...
I want to display the data in the 2 column of PDF using iTextsharp. Like this way e.g.
Q.1 aaaaaa Q.5 eeeeeeeeeee
Q.2 bbbbbb Q.6 fffffffffff
Q.3 cccccc Q.7 ggggggggggg
[code]....
I can done it by using count but it's not working if the question length is min/max . how i can done it manually.
Does anybody know how to create a pdf from a web page using iTextSharp? I've already added the reference to my program, but i'm not clear on how to create a pdf from a web page.
View 1 RepliesI have created a simple table and i need to position. does anyone have experience with tables in itextsharp? [code] the first table works but the second does not
View 2 RepliesHow to find the text in pdf using itextsharp.
View 1 Replies