Sign Up

Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.

Have an account? Sign In

Have an account? Sign In Now

Sign In

Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.

Sign Up Here

Forgot Password?

Don't have account, Sign Up Here

Forgot Password

Lost your password? Please enter your email address. You will receive a link and will create a new password via email.

Have an account? Sign In Now

You must login to ask a question.

Forgot Password?

Need An Account, Sign Up Here

Please briefly explain why you feel this question should be reported.

Please briefly explain why you feel this answer should be reported.

Please briefly explain why you feel this user should be reported.

Sign InSign Up

The Archive Base

The Archive Base Logo The Archive Base Logo

The Archive Base Navigation

  • SEARCH
  • Home
  • About Us
  • Blog
  • Contact Us
Search
Ask A Question

Mobile menu

Close
Ask a Question
  • Home
  • Add group
  • Groups page
  • Feed
  • User Profile
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Buy Points
  • Users
  • Help
  • Buy Theme
  • SEARCH
Home/ Questions/Q 334013
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 12, 20262026-05-12T10:00:54+00:00 2026-05-12T10:00:54+00:00

I did this: Imports iTextSharp.text.rtf and then this: Dim grx As graphic = New

  • 0

I did this:

Imports iTextSharp.text.rtf

and then this:

Dim grx As graphic = New graphic

and on the first “graphic” I am getting a “type expected”

graphic is a member of iTextSharp.text.rtf

Here’s the surrounding code:

Public Sub New1()
    Console.WriteLine("Chapter 4 example 4: Simple Graphic")
    Dim document As Document = New Document
    Try
        PdfWriter.GetInstance(document, New FileStream("Chap0404.pdf", FileMode.Create))
        document.Open()
        Dim grx As graphic = New graphic
        grx.Rectangle(100, 700, 100, 100)
        grx.MoveTo(100, 700)
        grx.LineTo(200, 800)
        grx.Stroke()
        document.Add(grx)
    Catch de As DocumentException
        Console.Error.WriteLine(de.Message)
    Catch ioe As IOException
        Console.Error.WriteLine(ioe.Message)
    End Try
    document.Close()
End Sub

Here’s the entire tutorial: (sorry its not a tutorial but thats what they call it)

Imports System
Imports System.IO
Imports iTextSharp.text
Imports iTextSharp.text.pdf
Namespace iTextSharp.tutorial.Chap04

Public Class Chap0404

    Public Sub New()
        Console.WriteLine("Chapter 4 example 4: Simple Graphic")
        Dim document As Document = New Document
        Try
            PdfWriter.GetInstance(document, New FileStream("Chap0404.pdf", FileMode.Create))
            document.Open
            Dim grx As Graphic = New Graphic
            grx.Rectangle(100, 700, 100, 100)
            grx.MoveTo(100, 700)
            grx.LineTo(200, 800)
            grx.Stroke
            document.Add(grx)
        Catch de As DocumentException
            Console.Error.WriteLine(de.Message)
        Catch ioe As IOException
            Console.Error.WriteLine(ioe.Message)
        End Try
        document.Close
    End Sub
End Class 

End Namespace

  • 1 1 Answer
  • 0 Views
  • 0 Followers
  • 0
Share
  • Facebook
  • Report

Leave an answer
Cancel reply

You must login to add an answer.

Forgot Password?

Need An Account, Sign Up Here

1 Answer

  • Voted
  • Oldest
  • Recent
  • Random
  1. Editorial Team
    Editorial Team
    2026-05-12T10:00:54+00:00Added an answer on May 12, 2026 at 10:00 am

    After playing with this for a while I think the conclusion is that the tutorial you’re following applies to an out-of-date version of iText / iTextSharp.

    Their sourceforge site links to a matching example from January of 2006, and your translation to VB.NET looks accurate–the problem is that the current version of iTextSharp doesn’t contain a Graphic type, and after some searching it doesn’t appear to have been just renamed–it’s more likely that the full graphics API has been significantly altered.

    The sourceforge page has a disclaimer (last line) that the linked examples might not work anymore,

    Note that some of the example won’t work with the most recent version of iTextSharp.

    With the given evidence, and the use of Reflector, I found that the expected Graphic.Stroke() method only exists within the PdfContentByte class; however Document.Add() expects a class that implements IElement, which PdfContentByte doesn’t do.

    That change is the smallest I could make to get close to compiling, but it significantly alters the intent of the code and probably won’t function as expected. Here’s my updated version for your reference though:

    Public Class Chap0404
    
        Public Sub New()
            Console.WriteLine("Chapter 4 example 4: Simple Graphic")
            Dim document As Document = New Document
            Try
                Dim writer As PdfWriter = PdfWriter.GetInstance(document, New FileStream("Chap0404.pdf", FileMode.Create))
                document.Open()
                Dim grx As PdfContentByte = New PdfContentByte(writer)
                grx.Rectangle(100, 700, 100, 100)
                grx.MoveTo(100, 700)
                grx.LineTo(200, 800)
                grx.Stroke()
                'document.Add(grx)
            Catch de As DocumentException
                Console.Error.WriteLine(de.Message)
            Catch ioe As IOException
                Console.Error.WriteLine(ioe.Message)
            End Try
            document.Close()
        End Sub
    End Class
    
    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

I did this: [User.first, User.last].to_xml and got this: <users type=array> <user> <created-at type=datetime>2010-03-16T06:40:51Z</created-at> <id
I did this tests and the results seems the count function scale linearly. I
I did this in the past, and can't remember the correct command (I think
i did this in msvc 2005. typedef void (*cleanup_t)(); void func(cleanup_t clean) { cleanup_t();
i did this: this.combobox.ItemsSource = Common.Component.ModuleManager.Instance.Modules; to bind the combobox to a collection, which
I did this in Perl, but how do you the same in python? Example:
I did this: git branch --track stats_page to create a separate branch to try
i did this to get the result from parse.com curl -X GET \ -H
HI i did this code with help of Marc Gravell in Why can't I
My coworker did this experiment: public class DoubleDemo { public static void main(String[] args)

Explore

  • Home
  • Add group
  • Groups page
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Users
  • Help
  • SEARCH

Footer

© 2021 The Archive Base. All Rights Reserved
With Love by The Archive Base

Insert/edit link

Enter the destination URL

Or link to existing content

    No search term specified. Showing recent items. Search or use up and down arrow keys to select an item.