Bessemer
Members-
Content count
25 -
Joined
-
Last visited
About Bessemer
-
Rank
Forum Member
-
To be frank, I don't use Fusion chart annotation tool to add annotation tag to chart images, but with a third party image annotation add-on, which allows to combine the annotation application with chart image and draw and add annotation tag to chart image easily.
-
Yes, at present, fusion charts only supports saving multiple charts images into a whole single file. If you really need to save the image into several seperate files, you can search for a certain third party image saving plugin to finish the task before fusion charts works out the required chart image exporting and saving tool.
-
Annotation Do Not Appear On Spark Column Chart
Bessemer replied to airik's topic in Using FusionWidgets XT
Your solution is a good example for me to solve my annoation creation and annotation object displaying problems, hope i am lucky enough to fix the problem. -
Try integrating and implementing an image saving add-on to the chart exporting application.
-
Yes, we can refer to the exportAction attribute to save the chart as usually used image formats, such as jpeg, bmp, png, gif or tiff. As the image saving and image downloading functions are two seperate options, you can only save image first and then downloading it.
-
Context Menu To Download Chart to Png
Bessemer replied to senthily88's topic in FusionCharts and PHP
I only know how to I convert Fusionchart SVG to image format, such as png, gif, or jpeg, but I don't know how to convert Fusionchart SVG tO DataUrl. SVG is a vector image format, and png, gif, bmp or jpeg is raste image files, it is quite easy to convert vector image to raster image as long as you refer to a mature image converter, then load and click the convert button, you can get raste image formats. -
I agree with following steps to save to pdf document: 1. Batch export the charts and save them as images. 2. When the export callback function is raised call the PDF generator to convert the entire page into PDF. 3. Now use PHP library functions to overlay the exported chart images at the required positions in the generated PDF file. Or you may try to use a pdf converting tool to directly convert the chart as image.
-
ASP.NET / C # with FusionMaps - Automatic conversion picture.
Bessemer replied to mr443's topic in Suggestions & Requests
To be honest, I know a little on how to convert FusionMaps to image, but if the FusionMaps is in daily used image or document formats, you can refer to an image converting library to convert the FusionMaps and the contained card into any raster and vector image files, for example, jpeg, bmp, gif, png, tiff, svg or even psd. -
Yes, here is another presumption, can I implement the chart into a pdf saving plugin that can directly export and save as pdf document instead of using the button or right clicking on the chart and saving it to pdf?
-
Save Chart As Image/pdf Automatically Without Clicking On Save Button
Bessemer replied to Rama Rao's topic in General usage
I am using a pdf saving pro, which is desinged to run within .net framework. Each time I need to save the loaded file into pdf document, I just need to run and debug the pdf getting started application, the file will be automatically stored and exported in pdf document. -
If you are going to export and save the charts directly as images, such as JPG/JPEG/PNG/PDF directly without rendering it in the browser, you may integrate an image saving plugin within your ipage loading application. Of course, you need to be sure that the image saving add-on should be compatible with your currently used application.
-
Pdf Conversion Giving Error Java.lang.outofmemoryerror: Java Heap Space
Bessemer replied to mt25's topic in Bug Reports
I program my pdf saving or creating application with vb code but not java, if you think my solution may help you, you can check the corresponding pdf saving methods. -
Problem: Save Image As Png In C# - Offline
Bessemer replied to aurelio_arg's topic in FusionCharts and ASP.NET
Please try this image saving methods to program a simple image saving application, which supports saving image file using different image encoders, including tif encoder, jpg encoder, png encoder, bmp encoder and gif encoder. Shared Sub SaveImageFile(image As REImage, filePath As String) End Sub Public Shared Sub SaveImageFile(image As REImage, filePath As String, enc As BaseEncoder) End Sub -
The programming concept of adding and showing line annotation on linear gauge is similar with line annnotation add-on to raster image file: Private Sub button1_Click(sender As Object, e As EventArgs) Dim obj As LineAnnotation = AnnotationGenerator.CreateLineAnnotation(60F, 45F, 560F, 228F) 'create a new LineAnnotation with start and end point obj.LinePen = PenGenerator.CreateLinePen(Color.Blue, 5F) 'set line color and width 'set line startcap obj.LinePen.StartCap = New RasterEdge.Imaging.Annotation.Basic.LineCap() obj.LinePen.StartCap.Cap_Width = 2F 'set startcap width obj.LinePen.StartCap.CapStyle = RasterEdge.Imaging.Annotation.LineCapStyle.Diamond 'set startcap style 'set line endcap obj.LinePen.EndCap = New RasterEdge.Imaging.Annotation.Basic.LineCap() obj.LinePen.EndCap.Cap_Width = 10F obj.LinePen.EndCap.CapStyle = RasterEdge.Imaging.Annotation.LineCapStyle.Rectangle Dim folderName As String = "C:/" Dim img As Bitmap = obj.CreateAnnotation() img.Save(folderName & "LineAnnotation.png") End Sub
-
Saving Batch Exported Images In Pdf Document Instead Of Directly Inserting Them In Pdf
Bessemer replied to fusion_freak_'s topic in FusionCharts and ASP.NET
Did you mean that you want to save the image from pdf document independently but not save the whole pdf file? Well, to this issue, how about exporting all the image files out from the pdf by using an ocr reader to extract the text and image. After extracting the image out, then you can use an image saving plugtin to save the images as your needs.