mresann
Registered User.
- Local time
- Today, 08:20
- Joined
- Jan 11, 2005
- Messages
- 357
This is a problem I've been wrangling with for over two weeks. I have very high resolution images that I need to import into a Microsoft Access Report. The dataset (query) source for the report contains the following information:
The process will only need to convert seven sets of sizes (all at 96 DPI), as follows:
The image types correspond to days of week (Sunday, Monday, Tuesday, etc), and will repeat on down the report. There should be exactly three images on each page with a reasonable separation of space between them, centered on the pages horizontally. I am not worried about the size of the database file as everything will be created for local use, and I have enough local storage.
For some reason, this shouldn't be that difficult for me to do, and I feel that I'm missing something. I've used the Detail and Format section of the report but still not getting a result, particularly in my TWIP/pixel conversions most likely. I can post my (currently non-working) DB if it helps.
(For what it's worth, I cannot reduce the size of the images without losing acceptable quality with any of my programs like Photoshop or image applications, which frankly was my first option as I could easily import images already sized for the report.)
Field | Datatype | Description |
ImageID | Text | Unique ID image no. (Primary Key; use for sort asc) |
ImagePath | Text | Full path to the hi-res image |
SourcePixelWidth | Long Number | Pixel width of source image |
SourcePixelHeight | Long Number | Pixel height of source image |
TargetPixelWidth | Long Number | Pixel width of target image |
TargetPixelHeight | Long Number | Pixel heightof target image |
The process will only need to convert seven sets of sizes (all at 96 DPI), as follows:
Image Type | Source Pixel Size | Target Pixel Size |
1 | 5408 x 3216 | 487 x 289 |
2 | 4328 x 2944 | 390 x 265 |
3 | 4872 x 2944 | 438 x 265 |
4 | 4600 x 3216 | 414 x 289 |
5 | 5136 x 2944 | 462 x 265 |
6 | 4600 x 2944 | 414 x 265 |
7 | 4328 x 3216 | 390 x 289 |
The image types correspond to days of week (Sunday, Monday, Tuesday, etc), and will repeat on down the report. There should be exactly three images on each page with a reasonable separation of space between them, centered on the pages horizontally. I am not worried about the size of the database file as everything will be created for local use, and I have enough local storage.
For some reason, this shouldn't be that difficult for me to do, and I feel that I'm missing something. I've used the Detail and Format section of the report but still not getting a result, particularly in my TWIP/pixel conversions most likely. I can post my (currently non-working) DB if it helps.
(For what it's worth, I cannot reduce the size of the images without losing acceptable quality with any of my programs like Photoshop or image applications, which frankly was my first option as I could easily import images already sized for the report.)