image doesn`t fit to screen
-
hello, I have an image with properties: Size: 1520 x 2234 pixels DPI = 200; size in centimetres: 19.3 x 28.4 cm When I open that image, it doesn`t fit to my 17' screen:( That image fits with size in centimetres. Is it possible to open that picture with size in centimetres, but not in pixels? Arnas
-
hello, I have an image with properties: Size: 1520 x 2234 pixels DPI = 200; size in centimetres: 19.3 x 28.4 cm When I open that image, it doesn`t fit to my 17' screen:( That image fits with size in centimetres. Is it possible to open that picture with size in centimetres, but not in pixels? Arnas
-
string kelias; Bitmap image1; kelias = OpenFile(); image1 = new Bitmap(@kelias, true); // how to set the size in centimetres? } //----------------------------------------------------------------- private string OpenFile() { OpenFileDialog dlgOpenFile = new OpenFileDialog(); dlgOpenFile.ShowReadOnly = true; if (dlgOpenFile.ShowDialog() == DialogResult.OK) { string path = dlgOpenFile.FileName; return path; } return null; }
-
string kelias; Bitmap image1; kelias = OpenFile(); image1 = new Bitmap(@kelias, true); // how to set the size in centimetres? } //----------------------------------------------------------------- private string OpenFile() { OpenFileDialog dlgOpenFile = new OpenFileDialog(); dlgOpenFile.ShowReadOnly = true; if (dlgOpenFile.ShowDialog() == DialogResult.OK) { string path = dlgOpenFile.FileName; return path; } return null; }
-
The size in centimeters is hardly relevant unless you display the image in some way. How do you do that? --- b { font-weight: normal; }
I display image in usual way, so I do have a big problem:( unless there is, maybe some way to shrink that image or something... Or what should I do? Maybe there is something I can do while scaning image, setting some properties...? I just don`t know what to do, I need to open image in real size. Maybe you can suggest something? Thanks:)
-
I display image in usual way, so I do have a big problem:( unless there is, maybe some way to shrink that image or something... Or what should I do? Maybe there is something I can do while scaning image, setting some properties...? I just don`t know what to do, I need to open image in real size. Maybe you can suggest something? Thanks:)
Which way do you consider to be the usual way, then? There are many different ways of displaying an image. Most ways of displaying images are pixel based, though. If you use a pixel based method, it doesn't use the resoltion settings in the image. Then you have calculate the size in pixels that you want the image to have, and resize it. --- b { font-weight: normal; }