在好例子网,分享、交流、成长!
您当前所在位置:首页Others 开发实例一般编程问题 → C#处理PDF的.NET库PDFsharp源码

C#处理PDF的.NET库PDFsharp源码

一般编程问题

下载此实例
  • 开发语言:Others
  • 实例大小:1.23M
  • 下载次数:6
  • 浏览次数:64
  • 发布时间:2024-05-15
  • 实例类别:一般编程问题
  • 发 布 人:chenxiaolan
  • 文件格式:.zip
  • 所需积分:2
 相关标签:

实例介绍

【实例简介】

PDFsharp是一个用于处理PDF的.NET库。

【实例截图】
【核心代码】
文件清单
└── PDFsharp-1.5-3205bd933b464d150c0f42e8bcdff3314b6c6164
    ├── LICENSE
    ├── README.md
    └── src
        ├── BuildAll-PdfSharp.sln
        ├── PdfSharp
        │   ├── Drawing
        │   │   ├── CoreGraphicsPath.cs
        │   │   ├── enums
        │   │   │   ├── PathStart.cs
        │   │   │   ├── XColorSpace.cs
        │   │   │   ├── XCombineMode.cs
        │   │   │   ├── XDashStyle.cs
        │   │   │   ├── XFillMode.cs
        │   │   │   ├── XFontStyle.cs
        │   │   │   ├── XGdiFontStyle.cs
        │   │   │   ├── XGraphicRenderTarget.cs
        │   │   │   ├── XGraphicsPathItemType.cs
        │   │   │   ├── XGraphicsPdfPageOptions.cs
        │   │   │   ├── XGraphicsUnit.cs
        │   │   │   ├── XKnownColor.cs
        │   │   │   ├── XLineAlignment.cs
        │   │   │   ├── XLinearGradientMode.cs
        │   │   │   ├── XLineCap.cs
        │   │   │   ├── XLineJoin.cs
        │   │   │   ├── XMatrixOrder.cs
        │   │   │   ├── XPageDirection.cs
        │   │   │   ├── XSmoothingMode.cs
        │   │   │   ├── XStringAlignment.cs
        │   │   │   ├── XStyleSimulations.cs
        │   │   │   └── XSweepDirection.cs
        │   │   ├── FontFamilyCache.cs
        │   │   ├── FontFamilyInternal.cs
        │   │   ├── FontHelper.cs
        │   │   ├── GeometryHelper.cs
        │   │   ├── GraphicsStateStack.cs
        │   │   ├── ImageHelper.cs
        │   │   ├── InternalGraphicsState.cs
        │   │   ├── IXGraphicsRenderer.cs
        │   │   ├── PdfFontOptions.cs
        │   │   ├── XBitmapDecoder.cs
        │   │   ├── XBitmapEncoder.cs
        │   │   ├── XBitmapImage.cs
        │   │   ├── XBitmapSource.cs
        │   │   ├── XBrush.cs
        │   │   ├── XBrushes.cs
        │   │   ├── XColor.cs
        │   │   ├── XColorResourceManager.cs
        │   │   ├── XColors.cs
        │   │   ├── XConvert.cs
        │   │   ├── XFont.cs
        │   │   ├── XFontFamily.cs
        │   │   ├── XFontMetrics.cs
        │   │   ├── XFontSource.cs
        │   │   ├── XFontStretch.cs
        │   │   ├── XFontWeight.cs
        │   │   ├── XFontWeights.cs
        │   │   ├── XForm.cs
        │   │   ├── XGlyphTypeface.cs
        │   │   ├── XGradientBrush.cs
        │   │   ├── XGraphicsContainer.cs
        │   │   ├── XGraphics.cs
        │   │   ├── XGraphicsPath.cs
        │   │   ├── XGraphicsPathInternals.cs
        │   │   ├── XGraphicsPathItem.cs
        │   │   ├── XGraphicsState.cs
        │   │   ├── XImage.cs
        │   │   ├── XImageFormat.cs
        │   │   ├── XKnownColorTable.cs
        │   │   ├── XLinearGradientBrush.cs
        │   │   ├── XMatrix.cs
        │   │   ├── XPdfForm.cs
        │   │   ├── XPen.cs
        │   │   ├── XPens.cs
        │   │   ├── XPoint.cs
        │   │   ├── XPrivateFontCollection.cs
        │   │   ├── XRadialGradientBrush.cs
        │   │   ├── XRect.cs
        │   │   ├── XSize.cs
        │   │   ├── XSolidBrush.cs
        │   │   ├── XStringFormat.cs
        │   │   ├── XStringFormats.cs
        │   │   ├── XTypeface.cs
        │   │   ├── XUnit.cs
        │   │   └── XVector.cs
        │   ├── Drawing.BarCodes
        │   │   ├── BarCode.cs
        │   │   ├── BarCodeRenderInfo.cs
        │   │   ├── BcgSR.cs
        │   │   ├── Code2of5Interleaved.cs
        │   │   ├── Code3of9Standard.cs
        │   │   ├── CodeBase.cs
        │   │   ├── CodeDataMatrix.cs
        │   │   ├── CodeOmr.cs
        │   │   ├── DataMatrixImage.cs
        │   │   ├── DataMatrixImage.opensource.cs
        │   │   ├── enums
        │   │   │   ├── AnchorType.cs
        │   │   │   ├── CodeDirection.cs
        │   │   │   ├── CodeType.cs
        │   │   │   ├── DataMatrixEncoding.cs
        │   │   │   ├── MarkDistance.cs
        │   │   │   └── TextLocation.cs
        │   │   ├── MatrixCode.cs
        │   │   ├── OmrData.cs
        │   │   └── ThickThinBarcodeRenderer.cs
        │   ├── Drawing.Internal
        │   │   ├── IImageImporter.cs
        │   │   ├── ImageImporterBmp.cs
        │   │   ├── ImageImporter.cs
        │   │   ├── ImageImporterJpeg.cs
        │   │   └── ImageImporterRoot.cs
        │   ├── Drawing.Layout
        │   │   ├── enums
        │   │   │   └── XParagraphAlignment.cs
        │   │   └── XTextFormatter.cs
        │   ├── Drawing.Pdf
        │   │   ├── enums
        │   │   │   ├── DirtyFlags.cs
        │   │   │   └── StreamMode.cs
        │   │   ├── PdfGraphicsState.cs
        │   │   └── XGraphicsPdfRenderer.cs
        │   ├── Events
        │   │   └── DocumentEvents.cs
        │   ├── Fonts
        │   │   ├── AdobeGlyphList20.cs
        │   │   ├── AdobeGlyphListForNewFonts.cs
        │   │   ├── CMapInfo.cs
        │   │   ├── FontDescriptorCache.cs
        │   │   ├── FontFactory.cs
        │   │   ├── FontResolverInfo.cs
        │   │   ├── FontResolvingOptions.cs
        │   │   ├── FontWriter.cs
        │   │   ├── GlobalFontSettings.cs
        │   │   ├── IFontResolver.cs
        │   │   ├── PlatformFontResolver.cs
        │   │   └── PlatformFontResolverInfo.cs
        │   ├── Fonts.OpenType
        │   │   ├── enums
        │   │   │   ├── FontTechnology.cs
        │   │   │   └── TableTagNames.cs
        │   │   ├── FontDescriptor.cs
        │   │   ├── GenericFontTable.cs
        │   │   ├── GlyphDataTable.cs
        │   │   ├── GlyphTypefaceCache.cs
        │   │   ├── IndexToLocationTable.cs
        │   │   ├── IRefFontTable.cs
        │   │   ├── OpenTypeDescriptor.cs
        │   │   ├── OpenTypeFontfaceCache.cs
        │   │   ├── OpenTypeFontface.cs
        │   │   ├── OpenTypeFontTable.cs
        │   │   ├── OpenTypeFontTables.cs
        │   │   ├── OpenTypeFontWriter.cs
        │   │   └── TableDirectoryEntry.cs
        │   ├── Forms
        │   │   ├── ColorComboBox.cs
        │   │   ├── DeviceInfos.cs
        │   │   ├── enums
        │   │   │   ├── RenderMode.cs
        │   │   │   └── Zoom.cs
        │   │   ├── PagePreviewCanvas.cs
        │   │   ├── PagePreviewCanvas.resx
        │   │   ├── PagePreview.cs
        │   │   └── PagePreview.resx
        │   ├── !internal
        │   │   ├── Configuration.cs
        │   │   ├── Directives.cs
        │   │   └── TargetContext.cs
        │   ├── Internal
        │   │   ├── Calc.cs
        │   │   ├── ColorHelper.cs
        │   │   ├── Diagnostics.cs
        │   │   ├── DiagnosticsHelper.cs
        │   │   ├── DoubleUtil.cs
        │   │   ├── Lock.cs
        │   │   ├── NativeMethods.cs
        │   │   └── TokenizerHelper.cs
        │   ├── !JetBrains
        │   │   └── Annotations.cs
        │   ├── Pdf
        │   │   ├── EntryInfoAttribute.cs
        │   │   ├── enums
        │   │   │   ├── DocumentState.cs
        │   │   │   ├── PdfColorMode.cs
        │   │   │   ├── PdfCustomValueCompression.cs
        │   │   │   ├── PdfFlateEncodeMode.cs
        │   │   │   ├── PdfFontEmbedding.cs
        │   │   │   ├── PdfFontEncoding.cs
        │   │   │   ├── PdfOutlineStyle.cs
        │   │   │   ├── PdfPageDestinationType.cs
        │   │   │   ├── PdfPageLayout.cs
        │   │   │   ├── PdfPageMode.cs
        │   │   │   ├── PdfReadingDirection.cs
        │   │   │   ├── PdfTextStringEncoding.cs
        │   │   │   └── PdfUseFlateDecoderForJpegImages.cs
        │   │   ├── KeysBase.cs
        │   │   ├── KeysMeta.cs
        │   │   ├── PdfArray.cs
        │   │   ├── PdfBoolean.cs
        │   │   ├── PdfBooleanObject.cs
        │   │   ├── PdfCustomValue.cs
        │   │   ├── PdfCustomValues.cs
        │   │   ├── PdfDate.cs
        │   │   ├── PdfDictionary.cs
        │   │   ├── PdfDocument.cs
        │   │   ├── PdfDocumentInformation.cs
        │   │   ├── PdfDocumentOptions.cs
        │   │   ├── PdfDocumentSettings.cs
        │   │   ├── PdfInteger.cs
        │   │   ├── PdfIntegerObject.cs
        │   │   ├── PdfItem.cs
        │   │   ├── PdfLiteral.cs
        │   │   ├── PdfMetadata.cs
        │   │   ├── PdfName.cs
        │   │   ├── PdfNameObject.cs
        │   │   ├── PdfNameTreeNode.cs
        │   │   ├── PdfNull.cs
        │   │   ├── PdfNullObject.cs
        │   │   ├── PdfNumber.cs
        │   │   ├── PdfNumberObject.cs
        │   │   ├── PdfNumberTreeNode.cs
        │   │   ├── PdfObject.cs
        │   │   ├── PdfObjectID.cs
        │   │   ├── PdfOutlineCollection.cs
        │   │   ├── PdfOutline.cs
        │   │   ├── PdfPage.cs
        │   │   ├── PdfPages.cs
        │   │   ├── PdfReal.cs
        │   │   ├── PdfRealObject.cs
        │   │   ├── PdfRectangle.cs
        │   │   ├── PdfReferenceTable.cs
        │   │   ├── PdfString.cs
        │   │   ├── PdfStringObject.cs
        │   │   ├── PdfUInteger.cs
        │   │   ├── PdfUIntegerObject.cs
        │   │   ├── PdfViewerPreferences.cs
        │   │   └── TrimMargins.cs
        │   ├── Pdf.AcroForms
        │   │   ├── enums
        │   │   │   └── PdfAcroFieldFlags.cs
        │   │   ├── PdfAcroField.cs
        │   │   ├── PdfAcroForm.cs
        │   │   ├── PdfButtonField.cs
        │   │   ├── PdfCheckBoxField.cs
        │   │   ├── PdfChoiceField.cs
        │   │   ├── PdfComboBoxField.cs
        │   │   ├── PdfGenericField.cs
        │   │   ├── PdfListBoxField.cs
        │   │   ├── PdfPushButtonField.cs
        │   │   ├── PdfRadioButtonField.cs
        │   │   ├── PdfSignatureField.cs
        │   │   └── PdfTextField.cs
        │   ├── Pdf.Actions
        │   │   ├── enums
        │   │   │   └── PdfNamedActionNames.cs
        │   │   ├── PdfAction.cs
        │   │   ├── PdfEmbeddedGoToAction.cs
        │   │   ├── PdfGoToAction.cs
        │   │   └── PdfRemoteGoToAction.cs
        │   ├── Pdf.Advanced
        │   │   ├── IContentStream.cs
        │   │   ├── PdfCatalog.cs
        │   │   ├── PdfCIDFont.cs
        │   │   ├── PdfContent.cs
        │   │   ├── PdfContents.cs
        │   │   ├── PdfCrossReferenceStream.cs
        │   │   ├── PdfCrossReferenceTable.cs
        │   │   ├── PdfDictionaryWithContentStream.cs
        │   │   ├── PdfEmbeddedFileStream.cs
        │   │   ├── PdfExtGState.cs
        │   │   ├── PdfExtGStateTable.cs
        │   │   ├── PdfFileSpecification.cs
        │   │   ├── PdfFont.cs
        │   │   ├── PdfFontDescriptor.cs
        │   │   ├── PdfFontTable.cs
        │   │   ├── PdfFormXObject.cs
        │   │   ├── PdfFormXObjectTable.cs
        │   │   ├── PdfGroupAttributes.cs
        │   │   ├── PdfImage.cs
        │   │   ├── PdfImage.FaxEncode.cs
        │   │   ├── PdfImageTable.cs
        │   │   ├── PdfImportedObjectTable.cs
        │   │   ├── PdfInternals.cs
        │   │   ├── PdfNamedDestinationParameters.cs
        │   │   ├── PdfNameDictionary.cs
        │   │   ├── PdfObjectInternals.cs
        │   │   ├── PdfObjectStream.cs
        │   │   ├── PdfPageInheritableObjects.cs
        │   │   ├── PdfPageInterals.cs
        │   │   ├── PdfReference.cs
        │   │   ├── PdfResourceMap.cs
        │   │   ├── PdfResources.cs
        │   │   ├── PdfResourceTable.cs
        │   │   ├── PdfShading.cs
        │   │   ├── PdfShadingPattern.cs
        │   │   ├── PdfSoftMask.cs
        │   │   ├── PdfTilingPattern.cs
        │   │   ├── PdfToUnicodeMap.cs
        │   │   ├── PdfTrailer.cs
        │   │   ├── PdfTransparencyGroupAttributes.cs
        │   │   ├── PdfTrueTypeFont.cs
        │   │   ├── PdfType0Font.cs
        │   │   ├── PdfType1Font.cs
        │   │   └── PdfXObject.cs
        │   ├── Pdf.Annotations
        │   │   ├── enums
        │   │   │   ├── PdfAnnotationFlags.cs
        │   │   │   ├── PdfRubberStampAnnotationIcon.cs
        │   │   │   └── PdfTextAnnotationIcon.cs
        │   │   ├── PdfAnnotation.cs
        │   │   ├── PdfAnnotations.cs
        │   │   ├── PdfGenericAnnotation.cs
        │   │   ├── PdfLinkAnnotation.cs
        │   │   ├── PdfRubberStampAnnotation.cs
        │   │   ├── PdfTextAnnotation.cs
        │   │   └── PdfWidgetAnnotation.cs
        │   ├── Pdf.Content
        │   │   ├── Chars.cs
        │   │   ├── CLexer.cs
        │   │   ├── ContentReader.cs
        │   │   ├── ContentReaderException.cs
        │   │   ├── ContentWriter.cs
        │   │   ├── CParser.cs
        │   │   └── enums
        │   │       └── Symbol.cs
        │   ├── Pdf.Content.Objects
        │   │   ├── CObjects.cs
        │   │   ├── enum
        │   │   │   ├── OpCodeFlags.cs
        │   │   │   └── OpCodeName.cs
        │   │   └── Operators.cs
        │   ├── Pdf.Filters
        │   │   ├── Ascii85Decode.cs
        │   │   ├── AsciiHexDecode.cs
        │   │   ├── Filter.cs
        │   │   ├── Filtering.cs
        │   │   ├── FlateDecode.cs
        │   │   └── LzwDecode.cs
        │   ├── Pdf.Internal
        │   │   ├── AnsiEncoding.cs
        │   │   ├── ColorSpaceHelper.cs
        │   │   ├── DocEncoding.cs
        │   │   ├── GlobalObjectTable.cs
        │   │   ├── PdfDiagnostics.cs
        │   │   ├── PdfEncoders.cs
        │   │   ├── RawEncoding.cs
        │   │   ├── RawUnicodeEncoding.cs
        │   │   └── ThreadLocalStorage.cs
        │   ├── Pdf.IO
        │   │   ├── Chars.cs
        │   │   ├── enums
        │   │   │   ├── PasswordValidity.cs
        │   │   │   ├── PdfDocumentOpenMode.cs
        │   │   │   ├── PdfWriterLayout.cs
        │   │   │   ├── PdfWriterOptions.cs
        │   │   │   └── Symbol.cs
        │   │   ├── Lexer.cs
        │   │   ├── Parser.cs
        │   │   ├── PdfReader.cs
        │   │   ├── PdfReaderException.cs
        │   │   ├── PdfWriter.cs
        │   │   └── ShiftStack.cs
        │   ├── Pdf.Printing
        │   │   └── PdfFilePrinter.cs
        │   ├── Pdf.Security
        │   │   ├── enums
        │   │   │   ├── PdfDocumentSecurity.cs
        │   │   │   └── PdfUserAccessPermission.cs
        │   │   ├── MD5Managed.cs
        │   │   ├── PdfSecurityHandler.cs
        │   │   ├── PdfSecuritySettings.cs
        │   │   └── PdfStandardSecurityHandler.cs
        │   ├── PdfSharp.csproj
        │   ├── Pdf.Structure
        │   │   ├── PdfAttributesBase.cs
        │   │   ├── PdfLayoutAttributes.cs
        │   │   ├── PdfMarkedContentReference.cs
        │   │   ├── PdfMarkInformation.cs
        │   │   ├── PdfObjectReference.cs
        │   │   ├── PdfStructureElement.cs
        │   │   ├── PdfStructureTreeRoot.cs
        │   │   └── PdfTableAttributes.cs
        │   ├── Properties
        │   │   └── AssemblyInfo.cs
        │   ├── Resources
        │   │   ├── Messages.de.restext
        │   │   └── Messages.restext
        │   ├── root
        │   │   ├── enums
        │   │   │   ├── PageOrientation.cs
        │   │   │   ├── PageSize.cs
        │   │   │   └── PSMsgID.cs
        │   │   ├── PageSizeConverter.cs
        │   │   ├── PdfSharpException.cs
        │   │   ├── ProductVersionInfo.cs
        │   │   ├── PSSR.cs
        │   │   └── VersionInfo.cs
        │   ├── SharpZipLib
        │   │   ├── Checksums
        │   │   │   ├── Adler32.cs
        │   │   │   ├── CRC32.cs
        │   │   │   └── IChecksum.cs
        │   │   ├── ReadMe.txt
        │   │   ├── SharpZipBaseException.cs
        │   │   └── Zip
        │   │       ├── Compression
        │   │       │   ├── DeflaterConstants.cs
        │   │       │   ├── Deflater.cs
        │   │       │   ├── DeflaterEngine.cs
        │   │       │   ├── DeflaterHuffman.cs
        │   │       │   ├── DeflaterPending.cs
        │   │       │   ├── Inflater.cs
        │   │       │   ├── InflaterDynHeader.cs
        │   │       │   ├── InflaterHuffmanTree.cs
        │   │       │   ├── PendingBuffer.cs
        │   │       │   └── Streams
        │   │       │       ├── DeflaterOutputStream.cs
        │   │       │       ├── InflaterInputStream.cs
        │   │       │       ├── OutputWindow.cs
        │   │       │       └── StreamManipulator.cs
        │   │       ├── ZipConstants.cs
        │   │       └── ZipException.cs
        │   ├── Silverlight
        │   │   └── SilverlightHelper.cs
        │   ├── SilverlightInternals
        │   │   ├── AgDrawingContext.cs
        │   │   ├── AgExtensions.cs
        │   │   ├── AgHacks.cs
        │   │   ├── Pen.cs
        │   │   └── WpHacks.cs
        │   ├── StrongnameKey.snk
        │   └── Windows
        │       ├── enums
        │       │   ├── RenderMode.cs
        │       │   └── Zoom.cs
        │       ├── PagePreview-ag.xaml
        │       ├── PagePreview-ag.xaml.cs
        │       ├── PagePreviewDesignTimeData.cs
        │       ├── PagePreview-wpf.xaml
        │       ├── PagePreview-wpf.xaml.cs
        │       └── VisualPresenter.cs
        ├── PdfSharp.Charting
        │   ├── Charting
        │   │   ├── Axis.cs
        │   │   ├── AxisTitle.cs
        │   │   ├── Chart.cs
        │   │   ├── ChartFrame.cs
        │   │   ├── ChartObject.cs
        │   │   ├── DataLabel.cs
        │   │   ├── DocumentObjectCollection.cs
        │   │   ├── DocumentObject.cs
        │   │   ├── enums
        │   │   │   ├── BlankType.cs
        │   │   │   ├── ChartType.cs
        │   │   │   ├── DataLabelPosition.cs
        │   │   │   ├── DataLabelType.cs
        │   │   │   ├── DockingType.cs
        │   │   │   ├── FontProperties.cs
        │   │   │   ├── HorizontalAlignment.cs
        │   │   │   ├── LineStyle.cs
        │   │   │   ├── MarkerStyle.cs
        │   │   │   ├── TickMarkType.cs
        │   │   │   ├── Underline.cs
        │   │   │   └── VerticalAlignment.cs
        │   │   ├── FillFormat.cs
        │   │   ├── Font.cs
        │   │   ├── Gridlines.cs
        │   │   ├── Legend.cs
        │   │   ├── LineFormat.cs
        │   │   ├── PlotArea.cs
        │   │   ├── Point.cs
        │   │   ├── PSCSR.cs
        │   │   ├── SeriesCollection.cs
        │   │   ├── Series.cs
        │   │   ├── SeriesElements.cs
        │   │   ├── TickLabels.cs
        │   │   ├── XSeries.cs
        │   │   ├── XSeriesElements.cs
        │   │   ├── XValue.cs
        │   │   └── XValues.cs
        │   ├── Charting.Renderers
        │   │   ├── AreaChartRenderer.cs
        │   │   ├── AreaPlotAreaRenderer.cs
        │   │   ├── AxisRenderer.cs
        │   │   ├── AxisTitleRenderer.cs
        │   │   ├── BarChartRenderer.cs
        │   │   ├── BarClusteredLegendRenderer.cs
        │   │   ├── BarClusteredPlotAreaRenderer.cs
        │   │   ├── BarDataLabelRenderer.cs
        │   │   ├── BarGridlinesRenderer.cs
        │   │   ├── BarPlotAreaRenderer.cs
        │   │   ├── BarStackedPlotAreaRenderer.cs
        │   │   ├── ChartRenderer.cs
        │   │   ├── Colors.cs
        │   │   ├── ColumnChartRenderer.cs
        │   │   ├── ColumnClusteredPlotAreaRenderer.cs
        │   │   ├── ColumnDataLabelRenderer.cs
        │   │   ├── ColumnLikeChartRenderer.cs
        │   │   ├── ColumnLikeGridlinesRenderer.cs
        │   │   ├── ColumnLikeLegendRenderer.cs
        │   │   ├── ColumnLikePlotAreaRenderer.cs
        │   │   ├── ColumnPlotAreaRenderer.cs
        │   │   ├── ColumnStackedPlotAreaRenderer.cs
        │   │   ├── CombinationChartRenderer.cs
        │   │   ├── Converter.cs
        │   │   ├── DataLabelRenderer.cs
        │   │   ├── GridlinesRenderer.cs
        │   │   ├── HorizontalStackedYAxisRenderer.cs
        │   │   ├── HorizontalXAxisRenderer.cs
        │   │   ├── HorizontalYAxisRenderer.cs
        │   │   ├── LegendEntryRenderer.cs
        │   │   ├── LegendRenderer.cs
        │   │   ├── LineChartRenderer.cs
        │   │   ├── LineFormatRenderer.cs
        │   │   ├── LinePlotAreaRenderer.cs
        │   │   ├── MarkerRenderer.cs
        │   │   ├── PieChartRenderer.cs
        │   │   ├── PieClosedPlotAreaRenderer.cs
        │   │   ├── PieDataLabelRenderer.cs
        │   │   ├── PieExplodedPlotAreaRenderer.cs
        │   │   ├── PieLegendRenderer.cs
        │   │   ├── PiePlotAreaRenderer.cs
        │   │   ├── PlotAreaBorderRenderer.cs
        │   │   ├── PlotAreaRenderer.cs
        │   │   ├── Renderer.cs
        │   │   ├── RendererInfo.cs
        │   │   ├── RendererParameters.cs
        │   │   ├── VerticalStackedYAxisRenderer.cs
        │   │   ├── VerticalXAxisRenderer.cs
        │   │   ├── VerticalYAxisRenderer.cs
        │   │   ├── WallRenderer.cs
        │   │   ├── XAxisRenderer.cs
        │   │   └── YAxisRenderer.cs
        │   ├── PdfSharp.Charting.csproj
        │   ├── Properties
        │   │   └── AssemblyInfo.cs
        │   ├── Resources
        │   │   ├── Messages.de.restext
        │   │   └── Messages.restext
        │   └── StrongnameKey.snk
        ├── PdfSharp.Charting-gdi
        │   ├── PdfSharp.Charting-gdi.csproj
        │   └── StrongnameKey.snk
        ├── PdfSharp.Charting-wpf
        │   ├── PdfSharp.Charting-wpf.csproj
        │   └── StrongnameKey.snk
        ├── PdfSharp-gdi
        │   ├── PdfSharp-gdi.csproj
        │   └── StrongnameKey.snk
        └── PdfSharp-wpf
            ├── PdfSharp-wpf.csproj
            ├── StrongnameKey.snk
            └── Windows
                ├── PagePreviewDesignTimeData.cs
                ├── PagePreview.xaml
                └── PagePreview.xaml.cs

66 directories, 490 files

标签:

实例下载地址

C#处理PDF的.NET库PDFsharp源码

不能下载?内容有错? 点击这里报错 + 投诉 + 提问

好例子网口号:伸出你的我的手 — 分享

网友评论

发表评论

(您的评论需要经过审核才能显示)

查看所有0条评论>>

小贴士

感谢您为本站写下的评论,您的评论对其它用户来说具有重要的参考价值,所以请认真填写。

  • 类似“顶”、“沙发”之类没有营养的文字,对勤劳贡献的楼主来说是令人沮丧的反馈信息。
  • 相信您也不想看到一排文字/表情墙,所以请不要反馈意义不大的重复字符,也请尽量不要纯表情的回复。
  • 提问之前请再仔细看一遍楼主的说明,或许是您遗漏了。
  • 请勿到处挖坑绊人、招贴广告。既占空间让人厌烦,又没人会搭理,于人于己都无利。

关于好例子网

本站旨在为广大IT学习爱好者提供一个非营利性互相学习交流分享平台。本站所有资源都可以被免费获取学习研究。本站资源来自网友分享,对搜索内容的合法性不具有预见性、识别性、控制性,仅供学习研究,请务必在下载后24小时内给予删除,不得用于其他任何用途,否则后果自负。基于互联网的特殊性,平台无法对用户传输的作品、信息、内容的权属或合法性、安全性、合规性、真实性、科学性、完整权、有效性等进行实质审查;无论平台是否已进行审查,用户均应自行承担因其传输的作品、信息、内容而可能或已经产生的侵权或权属纠纷等法律责任。本站所有资源不代表本站的观点或立场,基于网友分享,根据中国法律《信息网络传播权保护条例》第二十二与二十三条之规定,若资源存在侵权或相关问题请联系本站客服人员,点此联系我们。关于更多版权及免责申明参见 版权及免责申明

;
报警