New Post: Create a grayscale png image from a byte buffer
Doing this should be enough: settings.PixelStorage = new PixelStorageSettings(StorageType.Char, "R");Are you using the Q8 version of Magick.NET? Do you receive an exception? Can you put the byte array...
View ArticleNew Post: Convert PDF Bytes to PNG Bytes
Hello Is it possible to convert the bytes from a pdf file to a png? And how can i manage this? I tried an example with the memorystream. The png get created. But when i want to open the png file, the...
View ArticleNew Post: Convert PDF Bytes to PNG Bytes
I don't want to ruin the surprise but your file gets saved on disk first. Magick.NET uses Ghostscript to convert PDF files to other image formats and Ghostscript requires a file on disk. But reading it...
View ArticleNew Post: Convert PDF Bytes to PNG Bytes
Thanks for your answer. But I found the problem and also the solution. The problem was the writing section. You have to set the Format from the MagickImage to PNG before calling the...
View ArticleNew Post: Defining the Seed value
Is there a way to set the SEED value through the current wrapper? For example, so the Read("plasma:---") would be consistent. I could not find a way to do it so far. Additionally, I'm assuming that for...
View ArticleNew Post: Defining the Seed value
It seems that you found something that I missed. I just pushed a patch to make this available in the next version of Magick.NET that will be published this weekend. Below is an example....
View ArticleNew Post: The type or namespace name "MagickImageCollection" could not be...
I can't use the Convert PDF to multiple images the VS show this message: The type or namespace name "MagickImageCollection" could not be found (are you missing a using directive or an assembly...
View ArticleNew Post: The type or namespace name "MagickImageCollection" could not be...
Did you add a 'using ImageMagick'?
View ArticleNew Post: The type or namespace name "MagickImageCollection" could not be...
Hi,Yes I did.Enviado do meu smartphone Samsung Galaxy.-------- Mensagem original --------De: dlemstra <[email removed]> Data: 20/11/2015 05:56 (GMT-03:00) Para: [email removed] Assunto: Re: The...
View ArticleNew Post: The type or namespace name "MagickImageCollection" could not be...
Do you see the Magick.NET assemblies in the references of your project? Maybe you need to uninstall and install the package again?
View ArticleNew Post: The type or namespace name "MagickImageCollection" could not be...
I did Uninstall and installed again and did work.Thanks Enviado do meu smartphone Samsung Galaxy.-------- Mensagem original --------De: dlemstra <[email removed]> Data: 20/11/2015 09:24...
View ArticleNew Post: Crop failing on image
[TEXT](http://kitt.us/photo.png Crop has been working perfectly for a long time. But on this image, it resets the image to 1x1 pixel. I can't figure out why this is not working. I suspect it's...
View ArticleNew Post: Crop failing on image
The problem is most likely a mistake in the x,y width,height arguments. I think you are cropping the image to an area larger than the image is.
View ArticleNew Post: Crop failing on image
No, sorry, it’s not. Take the image I attached to the problem ticket. Try this code. Resulting image is 1x1string strFileName =@"C:\Temp\Photo.png";string strCrop =Path.GetDirectoryName(strFileName)...
View ArticleNew Post: Crop failing on image
It seems that your input image has a really strange Page value: 2021x2373+690+816. Doing a RePage before the crop seems to fix this issue.
View ArticleNew Post: Defining the Seed value
Thanks! Downloading the new one now. I'll try to help with QA as much as I can.
View ArticleNew Post: Getting error/pdf.c/ReadPDFImage/788 From Example Code
stranger57 wrote: I did, indeed, install Ghostscript. An interesting development, though, is that I can get it working fine with the x64 libraries. If I create a new project, target x64 in the Build...
View ArticleNew Post: Getting error/pdf.c/ReadPDFImage/788 From Example Code
The latest release includes a multi-threading fix for Ghostscript. Can you upgrade to 7.0.0.0022 and test if you can reproduce the issue?
View Article