Top "Image-conversion" questions

Use this tag for questions about conversion from one image format to another.

Convert A Byte[] Array to Image in Xamarin Forms

Before asking this question I googled a lot but couldn't find a solution that suits mine. In Xamarin.Forms I …

arrays image xamarin.forms image-conversion
Easy way to convert a Bitmap and Png Image to text and vice versa

what is the easiest way to translate a Bitmap & Png to string AND BACK AGAIN. Ive been trying to …

c# png bitmap image-conversion
JPG vs compressed JPG vs WEBP - why WEBP isn't the smallest one?

I have this image (photo taken by me on SGS 9 plus): Uncompressed JPG image. Its size is 4032 x 3024 and its …

image jpeg image-compression image-conversion webp
YUV420 to RGB conversion

I converted an RGB matrix to YUV matrix using this formula: Y = (0.257 * R) + (0.504 * G) + (0.098 * B) + 16 Cr = V = (0.439 * R) - (0.368 * G) …

opencv rgb yuv image-conversion subsampling
How to convert a pdf to an image?

Using pdfbox displays an error: import java.awt import javax` Based on the following code: imageType = BufferedImage.TYPE_INT_ARGB; //…

android pdf image-conversion
How can I display an image in the terminal?

Is there any sort of utility I can use to convert an image to ASCII and then print it in …

image terminal image-conversion ascii-art
Convert RGB image to YUV and convert back in matlab

I am very new to Matlab. I am trying to convert an RGB image to YUV, and convert it back …

image matlab image-processing image-conversion
Convert Bitmap to WebP Image?

Anyone know if it's possible to convert a Bitmap to a WebP image using C#? Been Google-ing around but wasn't …

c# bitmap image-conversion webp
convert byte[] of jp2 to jpg file

I have a byte array of jp2, how can I convert that to JPG file? Thank you Thank all the …

c# .net jpeg image-conversion
How to convert PNG to BMP at runtime?

I need to convert PNG file to BMP file on runtime. I can't do it like Image dummy = Image.FromFile("…

c# .net .net-4.0 image-conversion