A:
One of those will get the original content back on the images. The one that I'm more familiar with is an "enlarger" - you'll find an icon (a piece of paper) next to each file in the finder. Click on that, and you can do some things, including "re-name" the file.
/*
* Licensed to the Apache Software Foundation (ASF) under one or more
* contributor license agreements. See the NOTICE file distributed with
* this work for additional information regarding copyright ownership.
* The ASF licenses this file to You under the Apache License, Version 2.0
* (the "License"); you may not use this file except in compliance with
* the License. You may obtain a copy of the License at
*
*
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
*/
package org.apache.camel.component.jmeter;
import org.apache.camel.Component;
import org.apache.camel.spi.Registry;
import org.apache.camel.spi.RegistryAware;
import org.apache.camel.spi.RegistryFactory;
import org.apache.camel.spi.RegistryFactoryAware;
/**
* A {@link org.apache.camel.spi.RegistryFactory} that supports ApacheJMeter {@link org.apache.camel.spi.Registry}
*/
public class CamelJmeterRegistryFactory extends RegistryFactory implements RegistryFactoryAware {
private RegistryFactory delegateFactory;
public CamelJmeterRegistryFactory(RegistryFactory delegateFactory) {
this.delegateFactory = delegateFactory;
}
public Registry getRegistry(Component component) {
return delegateFactory.getRegistry(component);
} ac619d1d87
Related links:
Comments