Image | ![]() |
EAN-13 | 5037115023933 ![]() |
Product Name | Caesar and Cleopatra [Region 2] |
Category | Electronics / Photography: A/V Media: Movie / TV |
Amazon.com | ![]() |
Price New | 7.57 US Dollars (curriencies) |
Price Used | 6.45 US Dollars (curriencies) |
Aspect Ratio | 1.33:1 |
Cast | Claude Rains, Vivien Leigh, Stewart Granger, Flora Robson, Francis L. Sullivan |
Binding | Dvd |
Format | Import, PAL |
Run Time | 123 minutes |
Features | Caesar and Cleopatra (UK) |
Long Description | United Kingdom released, PAL/Region 2 DVD: it WILL NOT play on standard US DVD player. You need multi-region PAL/NTSC DVD player to view it in USA/Canada: LANGUAGES: English ( Dolby Digital Stereo ), English ( Subtitles ), WIDESCREEN (1.78:1), SPECIAL FEATURES: Biographies, Black & White, Interactive Menu, Photo Gallery, Scene Access, Trailer(s), SYNOPSIS: Cleopatra hasn't been on the throne of the pharoahs of Egypt very long when Julius Caesar pays a visit. Caesar finds the prospect of romance more tempting than he expected, since Cleopatra is a rare woman who is bright as well as beautiful. And for Cleopatra, a friendly relationship with the most powerful man in the world may pay dividends in the future. SCREENED/AWARDED AT: Oscar Academy Awards, ...Caesar and Cleopatra (UK) |
Similar Items | 0012569795082: Warner Home Video PRISONER OF ZENDA (1937/1952) (DVD MOVIE) 0012569659186: Julius Caesar 0025192090998: Sign of the Cross 0883929174133: Antony and Cleopatra 0024543774594: Cleopatra 0883629536019: Queen Of The Nile 0025193236722: Heiress 0025192948725: Cecil B. DeMille Collection 0024543864400: Cleopatra: 50th Anniversary 0715515048811: That Hamilton Woman 0025195051002: Cleopatra 75th Anniversary Edition 0883929036295: Waterloo Bridge 0024543425717: Anna Karenina |
Created | 02-04-2016 4:58:44pm |
Modified | 10-09-2017 6:19:00pm |
MD5 | c3d83e6fd26251bebf81b9879e760141 |
SHA256 | 72712a11b97d433b3bebd893e75dde58c8059719c140bd90d6c26a8e1d083d7b |
Search Google | by EAN or by Title |
Query Time | 0.0244029 |
Article of interest
With version 3.2 comes a new way to handle product images. This should give you more control over the images you display.
Prior to version 3.2, you simply had to check for the existance of the product>image property. If it existed and was not blank, you could safely display the image.
Starting with version 3.2, you may want to check one more field before you display the product image. Many API users wanted access to the pending images. The only reasonable way to do this was to add a new property named product>hasImage which can be one of four values.
- Unknown (should never actually appear in the API)
- Yes (a production image exists)
- No (there is no image)
- Pending (a pending image exists)
If you are displaying the product images to your users and you DO NOT want to display pending images that have not been checked, you should only display the image if product>hasImage=Yes. If you want to show production and pending images, you can simply check the product>image property if you like. We suggest using product>hasImage as your main check and only display the image if it meets your needs. Here are samples of the JSON structure.
The property product>hasImage will always be regurned even if you specified a list of properties in the "get" string that does not include the image property. The main reason for this is that it is possible to calculate the image path on your side thereby saving the bandwidth of returning the image path.
If you want to calculate the path to the image on your end instead of requesting it from us, you can do this in two ways.
- If product>hasImage=Pending then simply use the path https://eandata.com/image/pending/{13_digit_EAN}.jpg
- If product>hasImage=Yes then it gets a little more tricky. We split the images into subfolders because there are so many of them. To calculate the path start with the 13 digit EAN and split it up like this: https://eandata.com/image/product/{1st_3_digits}/{2nd_3_digits}/{3rd_3_digits}/{13_digit_EAN}.jpg
This should make interacting with product and pending images much easier for you. Look at the example JSON shown above for working exmples of image paths.