Quantcast
Channel: magick Issue Tracker Rss Feed
Viewing all 1011 articles
Browse latest View live

Commented Unassigned: Trying to convert svg content into pdf [1391]

$
0
0
I am trying to convert SVG content into pdf, svg content has one png base 64 content which is not being visible after converting to pdf.

Please help me sort it out this issue. The svg content is attached. I am using Magick.NET-x64 7.0.0.0.

Comments: File Version is 7.0.0.8. Product Version is 7.0.0.0008

Commented Unassigned: Trying to convert svg content into pdf [1391]

$
0
0
I am trying to convert SVG content into pdf, svg content has one png base 64 content which is not being visible after converting to pdf.

Please help me sort it out this issue. The svg content is attached. I am using Magick.NET-x64 7.0.0.0.

Comments: Can you upgrade to the latest version and try again?

Commented Unassigned: Issues converting image [1392]

$
0
0
Hi,

I was using ImageMagick for quite a long time. I thought of using Magic.Net latest version for my .net project. However, the image conversion is not so good. I am trying to convert the EMF format file to JPG format.

[Source image in emf format](https://onedrive.live.com/redir?resid=B10A379CA3C7C4BA!2235&authkey=!AB5LUZzqZefFSSY&ithint=file%2cemf)

[Converted using V7.0.1](http://postimg.org/image/u6dj8f5up/)

Please fix.

Thanks
Comments: Ok thanks :)

Commented Unassigned: Crashes my disply driver [1393]

$
0
0
Hi,

I am trying to resize an image. Below is my code. It takes huge time and crashes my display driver.

Let me know how to fix the problem.

Thanks

```
private static void ConvertImgUsingMagickDotnet(string sourceImg, string targetImg)
{
MagickReadSettings settings = new MagickReadSettings();
// Settings the density to 600 dpi will create an image with a better quality
settings.Density = new Density(600);

// Read first frame of gif image
using (MagickImage image = new MagickImage(sourceImg, settings))
{
//When zero is specified for the height, the height will be calculated with the aspect ratio.
image.Resize(479, 0);
// Save frame as jpg
image.Write(targetImg);
}
}
```
Comments: Thanks for your reply. How to set OpenCL.IsEnabled?

Commented Unassigned: Trying to convert svg content into pdf [1391]

$
0
0
I am trying to convert SVG content into pdf, svg content has one png base 64 content which is not being visible after converting to pdf.

Please help me sort it out this issue. The svg content is attached. I am using Magick.NET-x64 7.0.0.0.

Comments: What's the latest version? Could you please try me the link to download?

Commented Unassigned: Trying to convert svg content into pdf [1391]

$
0
0
I am trying to convert SVG content into pdf, svg content has one png base 64 content which is not being visible after converting to pdf.

Please help me sort it out this issue. The svg content is attached. I am using Magick.NET-x64 7.0.0.0.

Comments: I tested with 7.0.1.0, still facing same issue.

Commented Unassigned: Trying to convert svg content into pdf [1391]

$
0
0
I am trying to convert SVG content into pdf, svg content has one png base 64 content which is not being visible after converting to pdf.

Please help me sort it out this issue. The svg content is attached. I am using Magick.NET-x64 7.0.0.0.

Comments: I cannot reproduce your problem I get the output image that I just attached.

Commented Unassigned: Crashes my disply driver [1393]

$
0
0
Hi,

I am trying to resize an image. Below is my code. It takes huge time and crashes my display driver.

Let me know how to fix the problem.

Thanks

```
private static void ConvertImgUsingMagickDotnet(string sourceImg, string targetImg)
{
MagickReadSettings settings = new MagickReadSettings();
// Settings the density to 600 dpi will create an image with a better quality
settings.Density = new Density(600);

// Read first frame of gif image
using (MagickImage image = new MagickImage(sourceImg, settings))
{
//When zero is specified for the height, the height will be calculated with the aspect ratio.
image.Resize(479, 0);
// Save frame as jpg
image.Write(targetImg);
}
}
```
Comments: There is a class called OpenCL that has a static property called IsEnabled? This does require the latest version of Maick.NET. It is also possible that you can use OpenCL when you upgrade to the latest version.

Commented Unassigned: Trying to convert svg content into pdf [1391]

$
0
0
I am trying to convert SVG content into pdf, svg content has one png base 64 content which is not being visible after converting to pdf.

Please help me sort it out this issue. The svg content is attached. I am using Magick.NET-x64 7.0.0.0.

Comments: I have attached expected out from svg in Expected.png. Your output doesn't have green check sing png image. That is only the issue.

Created Unassigned: Error 'The type initializer for 'X86' threw an exception.' [1395]

$
0
0
We are trying to create a Windows Service which deals with Adobe image files and converts them to Thumbnails.

The service runs fine on our test machines which run Windows 7 but when we run the same service on our utils box which runs unders Windows Server 2012 it throws an error 'The type initializer for 'X86' threw an exception.'

We are using the multi CPU DLL in our project but we are unable to install Magick as we did in our test machines by running Configure.sln under Visual Studio 2013 and compiling to produce an install process.

Is there another way to install Magick on our server which doesn't have Visual Studio or are we missing some other process?

Commented Unassigned: Error 'The type initializer for 'X86' threw an exception.' [1395]

$
0
0
We are trying to create a Windows Service which deals with Adobe image files and converts them to Thumbnails.

The service runs fine on our test machines which run Windows 7 but when we run the same service on our utils box which runs unders Windows Server 2012 it throws an error 'The type initializer for 'X86' threw an exception.'

We are using the multi CPU DLL in our project but we are unable to install Magick as we did in our test machines by running Configure.sln under Visual Studio 2013 and compiling to produce an install process.

Is there another way to install Magick on our server which doesn't have Visual Studio or are we missing some other process?
Comments: I don't understand what you mean by the configure.sln part. Magick.NET is just a library that needs no extra installation. Are you using the latest version of Magick.NET.

Commented Unassigned: Error 'The type initializer for 'X86' threw an exception.' [1395]

$
0
0
We are trying to create a Windows Service which deals with Adobe image files and converts them to Thumbnails.

The service runs fine on our test machines which run Windows 7 but when we run the same service on our utils box which runs unders Windows Server 2012 it throws an error 'The type initializer for 'X86' threw an exception.'

We are using the multi CPU DLL in our project but we are unable to install Magick as we did in our test machines by running Configure.sln under Visual Studio 2013 and compiling to produce an install process.

Is there another way to install Magick on our server which doesn't have Visual Studio or are we missing some other process?
Comments: I don't understand what you mean by the configure.sln part. Magick.NET is just a library that needs no extra installation. Are you using the latest version of Magick.NET?

Commented Unassigned: Trying to convert svg content into pdf [1391]

$
0
0
I am trying to convert SVG content into pdf, svg content has one png base 64 content which is not being visible after converting to pdf.

Please help me sort it out this issue. The svg content is attached. I am using Magick.NET-x64 7.0.0.0.

Comments: Hi Dlemstra, Could you please give comment on my comment.

Created Unassigned: MagickImage function not executed on server... [1396]

$
0
0
Hi,
i have this issue:

1) I've downloaded Magick.NET-Q16-AnyCPU throught NUGET in VS2010.
2) I've created this function for read remote svg and convert it into itextSharp.text.Image object as below:

```
iTextSharp.text.Image headeImage = null;

using (MagickImage image= new MagickImage(linksvgremote))
{
Percentage percent = new Percentage(55);
image.Resize(percent);
headeImage = iTextSharp.text.Image.GetInstance(image.ToByteArray(MagickFormat.Png));

}
```
It's work fine local but when i have uploaded on iis server the javascript function return this string:

__failed to load resource the server responded with a status of 500 (internal server error)__

It's would say that the problem is in function descripted above.... i know it because if i comment it it works but not generate the svg-converted-image .

How can i resolve it on my server?

Thanks

Cristian

Edited Unassigned: MagickImage function not executed on server... [1396]

$
0
0
Hi,
i have this issue:

1) I've downloaded Magick.NET-Q16-AnyCPU throught NUGET in VS2010.
2) I've created this function for read remote svg and convert it into itextSharp.text.Image object as below:

```
iTextSharp.text.Image headeImage = null;

using (MagickImage image= new MagickImage(linksvgremote))
{
Percentage percent = new Percentage(55);
image.Resize(percent);
headeImage = iTextSharp.text.Image.GetInstance(image.ToByteArray(MagickFormat.Png));

}
```

Javascript function is:

```
ApriDialogCaricamento();

var datiInput = {};

datiInput.idTipo = idtipo;
datiInput.clearEngine = clearengine;
datiInput.nomeFileSvg = numfile;

var jsonData = JSON.stringify(datiInput);

$.ajax({
type: "POST",
url: "handlers/generaDatiTecniciPDF.ashx",
data: jsonData,
contentType: "application/json; charset=utf-8",
dataType: "blob",
success: function (data) {
ChiudiDialogCaricamento();
var url = window.URL || window.webkitURL;
window.open(url.createObjectURL(data));
},
error: function (XMLHttpRequest, textStatus, errorThrown) {
ChiudiDialogCaricamento();
alert("Ci sono stati problemi durante la ricezione dei dati");
}
});
```

It's work fine local but when i have uploaded on iis server the javascript function return this string:

__failed to load resource the server responded with a status of 500 (internal server error)__

It's would say that the problem is in function descripted above.... i know it because if i comment it it works but not generate the svg-converted-image .

How can i resolve it on my server?

Thanks

Cristian

Commented Unassigned: Error 'The type initializer for 'X86' threw an exception.' [1395]

$
0
0
We are trying to create a Windows Service which deals with Adobe image files and converts them to Thumbnails.

The service runs fine on our test machines which run Windows 7 but when we run the same service on our utils box which runs unders Windows Server 2012 it throws an error 'The type initializer for 'X86' threw an exception.'

We are using the multi CPU DLL in our project but we are unable to install Magick as we did in our test machines by running Configure.sln under Visual Studio 2013 and compiling to produce an install process.

Is there another way to install Magick on our server which doesn't have Visual Studio or are we missing some other process?
Comments: any answer for this problem??!

Created Unassigned: NEF (Nikon raw) files support [1397]

$
0
0
I tried to read exif metadata from NEF files to no avail. If I create an instance of MagickImage and load it with a NEF file stream, it interprets it as TIFF with wrong width/height dimensions and GetExifProfile() returns null.

Should I do anything differently? I tried copying dcraw.exe and it did not have any effect.

Let me know if you need a NEF file?

Commented Unassigned: NEF (Nikon raw) files support [1397]

$
0
0
I tried to read exif metadata from NEF files to no avail. If I create an instance of MagickImage and load it with a NEF file stream, it interprets it as TIFF with wrong width/height dimensions and GetExifProfile() returns null.

Should I do anything differently? I tried copying dcraw.exe and it did not have any effect.

Let me know if you need a NEF file?
Comments: Putting dcraw.exe in the same folder as the Magick.NET dll should be enough. I am not sure if dcraw.exe supports NEF files. Can you share the file so I can try to figure out what is going on? Feel free to contact me through CodePlex if you don't want to share it publicly.

Commented Unassigned: Trying to convert svg content into pdf [1391]

$
0
0
I am trying to convert SVG content into pdf, svg content has one png base 64 content which is not being visible after converting to pdf.

Please help me sort it out this issue. The svg content is attached. I am using Magick.NET-x64 7.0.0.0.

Comments: I haven't had the time to look at this. This looks like a bug in librsvg but I haven't had the time to confirm this.

Commented Unassigned: NEF (Nikon raw) files support [1397]

$
0
0
I tried to read exif metadata from NEF files to no avail. If I create an instance of MagickImage and load it with a NEF file stream, it interprets it as TIFF with wrong width/height dimensions and GetExifProfile() returns null.

Should I do anything differently? I tried copying dcraw.exe and it did not have any effect.

Let me know if you need a NEF file?
Comments: Thanks for replying. A quick google search shows a lot of evidence that NEFs are supported by dcraw, but no definite answer. I have uploaded a shared image to https://drive.google.com/open?id=0B9ly1Yx93QzgbEJTRXk1XzdMclU.
Viewing all 1011 articles
Browse latest View live


<script src="https://jsc.adskeeper.com/r/s/rssing.com.1596347.js" async> </script>