您最多选择25个主题 主题必须以字母或数字开头,可以包含连字符 (-),并且长度不得超过35个字符

ImageLoader.java 1.8KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364
  1. /*
  2. * Licensed to the Apache Software Foundation (ASF) under one or more
  3. * contributor license agreements. See the NOTICE file distributed with
  4. * this work for additional information regarding copyright ownership.
  5. * The ASF licenses this file to You under the Apache License, Version 2.0
  6. * (the "License"); you may not use this file except in compliance with
  7. * the License. You may obtain a copy of the License at
  8. *
  9. * http://www.apache.org/licenses/LICENSE-2.0
  10. *
  11. * Unless required by applicable law or agreed to in writing, software
  12. * distributed under the License is distributed on an "AS IS" BASIS,
  13. * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
  14. * See the License for the specific language governing permissions and
  15. * limitations under the License.
  16. */
  17. /* $Id$ */
  18. package org.apache.fop.image;
  19. import org.apache.fop.apps.FOUserAgent;
  20. /**
  21. * Class to load images.
  22. */
  23. class ImageLoader {
  24. private String url;
  25. private ImageCache cache;
  26. private boolean valid = true;
  27. private FOUserAgent userAgent;
  28. private FopImage image = null;
  29. /**
  30. * Main constructor.
  31. * @param url URL to the image
  32. * @param cache Image cache
  33. * @param ua User agent
  34. */
  35. public ImageLoader(String url, ImageCache cache, FOUserAgent ua) {
  36. this.url = url;
  37. this.cache = cache;
  38. this.userAgent = ua;
  39. }
  40. /**
  41. * Loads the image.
  42. * @return the loaded image
  43. */
  44. public synchronized FopImage loadImage() {
  45. if (!valid || image != null) {
  46. return image;
  47. }
  48. ImageFactory imageFactory = userAgent.getFactory().getImageFactory();
  49. image = imageFactory.loadImage(url, userAgent);
  50. if (image == null) {
  51. cache.invalidateImage(url, userAgent);
  52. valid = false;
  53. }
  54. return image;
  55. }
  56. }