image-formats Questions
2
Solved
After loading an image file with PIL.Image, how can I determine whether the image file is a PNG/JPG/BMP/GIF? I understand very little about these file formats, can PIL get the format metadata from ...
Arginine asked 20/9, 2015 at 12:49
8
Solved
Is it possible to find out the type of an image encoded as a base64 String in PHP?
I have no method of accessing the original image file, just the encoded string. From what I've seen, imagecreate...
Upsetting asked 19/5, 2011 at 16:3
3
Here is a list of all image formats that Pillow supports. Since I want to check formats in my application without opening the image and the list of formats will probably change in the future, I won...
Pretor asked 14/2, 2022 at 13:53
3
Solved
In the C++ interface to OpenCV, it seems easy enough to check the type of an image. If you have an image cv::Mat img = cv::imread("someImage.xyz"), you just do int theType = img.type().
However, ...
Zorazorah asked 9/9, 2012 at 0:48
6
Solved
I get a byte stream from some web service. This byte stream contains the binary data of an image and I'm using the method in C# below to convert it to an Image instance.
I need to know what kind of...
Doig asked 6/3, 2011 at 8:38
2
Solved
HI,
what does this mean, and how to resolve it?
error RC2175 : resource file res\icon3.bmp is not in 3.00 format
Offence asked 2/8, 2010 at 1:13
6
I’m currently researching the possibility to use Google’s WebP image format in our iOS software.
I found it’s not hard to decode the WebP into RGBA8888 as needed using the Google’s C-library.
How...
Hic asked 29/12, 2011 at 19:19
5
Solved
I am trying to add a image to a RTF document which I am creating. I would prefer to not use 'copy/paste' methods (that involve pasting the image within a RichTextBox and then accessing the .RTF pro...
Impasse asked 29/9, 2009 at 5:38
4
Solved
I was wondering what image formats (aside from the basic JPEG, GIF, PNG) the major browsers would support, especially Chrome, Firefox, and Webkit. If anyone can provide a link to a list somewhere (...
Axle asked 7/8, 2012 at 19:16
6
Solved
I often use JPEG images, and I have noticed that there are two very similar file extensions: .jpg, which my mobile's camera and the Preview application use, and .jpeg, with which Image Capture save...
Phonon asked 2/5, 2014 at 9:0
2
Solved
I would be able to create an EMF image (programmatically or from a software) having the background color 50% transparent and the other elements completely opaques.
I'm already be able to create a ...
Treasure asked 2/4, 2014 at 13:40
5
Solved
When designing a website, what do you consider the best image format to use for a particular task?
I always find myself in a dilemma when trying to figure out what format to use for a specific tas...
Pontianak asked 25/12, 2008 at 8:36
2
i want to get the buffered image format or type of image using java,
InputStream stream = request.getResponseStream();
BufferedImage image= ImageIO.read(stream);
LOGGER.info(image);
Injector asked 11/7, 2012 at 4:23
1
Solved
I am totally understand about the size of the NV12 format as described in question
NV12 format and UV plane
Now I am reading from two sources about the storage of UV plane in this format:
one is ...
Weatherford asked 15/7, 2015 at 9:27
3
Solved
I'm trying to figure out a way to create a zero-width, zero-height image which would conform to the standard of whichever format works.
I've already tried the Windows Bitmap (BMP) format (54-byte ...
Conceptionconceptual asked 26/10, 2011 at 21:34
1
Referring to the answer to this question, I tried to save my own JPG image files, after some basic image processing. I've only applied a rotation and a shear. This is my code:
import numpy as np...
Spatial asked 17/6, 2014 at 14:8
1
Solved
I am looking for a list of Image Types (latest) JavaFX supports, e.g. PNG, JPEG, TIFF. Different search engines did not help ... any idea where to start?
More particulary I am interested in 16 Bit...
Friable asked 13/6, 2014 at 12:32
2
Solved
I'm using Delphi XE2 (Update 3) and GR32. I am unable to use TBitmap32.LoadFromStream() to load the image data. It raises the following exception:
Project MyApp.exe raised exception class EInvalid...
Ouidaouija asked 20/6, 2013 at 8:27
6
Solved
How can I access/remove PNG metadata?
I'm looking for a Mac application or a PHP snippet.
Erin asked 6/9, 2009 at 22:6
1
Solved
As per the title, what's the preferred image format (or formats) for use in WPF?
My company will hire a designer to design some logos, images, toolbar icons, etc. for use in a WPF application. I w...
Debtor asked 19/11, 2010 at 7:23
2
Solved
I am getting an RGB matrix from a microprocessor that outputs an image in RGB565 format. I want to read this into MATLAB, convert it to RGB24 format, and output the image. How do I do this?
Rocaille asked 26/8, 2010 at 18:28
3
Solved
JPEG, GIF and PNG can be displayed with the img tag and will work in all browsers, the object element can be use for displaying images specifying its MIME type, but what other graphic formats are s...
Radborne asked 8/10, 2008 at 17:10
1
© 2022 - 2024 — McMap. All rights reserved.